Skip to content

Commit 6b5daf2

Browse files
authored
feat: Add Terraform versions 1.9.3 and 1.9.4 (#85)
* fix: Update inputs on vendor-hash * feat: Add Terraform versions 1.9.3 and 1.9.4
1 parent 2a78267 commit 6b5daf2

File tree

3 files changed

+23
-14
lines changed

3 files changed

+23
-14
lines changed

cli/devenv.lock

+10-10
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"devenv": {
44
"locked": {
55
"dir": "src/modules",
6-
"lastModified": 1719323427,
6+
"lastModified": 1723102610,
77
"owner": "cachix",
88
"repo": "devenv",
9-
"rev": "f810f8d8cb4e674d7e635107510bcbbabaa755a3",
10-
"treeHash": "165ad401b1788985cdaa07483f9ed110cc848958",
9+
"rev": "6e318854efa95c5e67a1152547f838754e8f0306",
10+
"treeHash": "6dadc5f8c13b1d27286128a4d910e3915cfc79d0",
1111
"type": "github"
1212
},
1313
"original": {
@@ -72,16 +72,16 @@
7272
},
7373
"nixpkgs-stable": {
7474
"locked": {
75-
"lastModified": 1719234068,
75+
"lastModified": 1722869614,
7676
"owner": "NixOS",
7777
"repo": "nixpkgs",
78-
"rev": "90bd1b26e23760742fdcb6152369919098f05417",
79-
"treeHash": "c87db871f241e42f31db9fb9936b61cb60f127ae",
78+
"rev": "883180e6550c1723395a3a342f830bfc5c371f6b",
79+
"treeHash": "e3ce01703c0d0324121e0d3ec6336275025b4ae6",
8080
"type": "github"
8181
},
8282
"original": {
8383
"owner": "NixOS",
84-
"ref": "nixos-23.11",
84+
"ref": "nixos-24.05",
8585
"repo": "nixpkgs",
8686
"type": "github"
8787
}
@@ -96,11 +96,11 @@
9696
"nixpkgs-stable": "nixpkgs-stable"
9797
},
9898
"locked": {
99-
"lastModified": 1719259945,
99+
"lastModified": 1723056346,
100100
"owner": "cachix",
101101
"repo": "pre-commit-hooks.nix",
102-
"rev": "0ff4381bbb8f7a52ca4a851660fc7a437a4c6e07",
103-
"treeHash": "1a76ff89a9d4017b48abbb1bad8837b35d604ffc",
102+
"rev": "3c977f1c9930f54066c085305b4b2291385e7a73",
103+
"treeHash": "d6f89338ffb2ca32c20bc0f8d50009e1894ab804",
104104
"type": "github"
105105
},
106106
"original": {

vendor-hash.nix

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ let
33
flake = builtins.getFlake (toString ./.);
44
system = builtins.currentSystem;
55

6-
pkgs = flake.inputs.nixpkgs.legacyPackages.${system};
7-
pkgs-unstable = flake.inputs.nixpkgs-unstable.legacyPackages.${system};
6+
pkgs-1_0 = flake.inputs.nixpkgs-1_0.legacyPackages.${system};
7+
pkgs-1_6 = flake.inputs.nixpkgs-1_6.legacyPackages.${system};
8+
pkgs-1_9 = flake.inputs.nixpkgs-1_9.legacyPackages.${system};
89

910
terraform = flake.lib.buildTerraform {
10-
inherit pkgs pkgs-unstable version hash;
11+
inherit pkgs-1_0 pkgs-1_6 pkgs-1_9 version hash;
1112
vendorHash = sha256;
1213
};
1314
in

versions.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,14 @@
323323
"1.9.2": {
324324
"hash": "sha256-g1CsDWjwjBVfSNFZ9PRGlPlJOrqXP2eMYk1P+ohtYNU=",
325325
"vendorHash": "sha256-cPWJtrGad8VsvyjJHQwpfDitsJY/Q0iCtp1MRyzGT+U="
326+
},
327+
"1.9.3": {
328+
"hash": "sha256-5xtTjT+AP7Db3bhzhHkzmRIJpJB3UFZs+4cTgDB7Ihc=",
329+
"vendorHash": "sha256-FnjCJilPuhYs/JTuEyb4Grn4t40Ox2uqwQf2h9B227Q="
330+
},
331+
"1.9.4": {
332+
"hash": "sha256-RCjeKdxrnCmOtUQfBC5/gM+FB6YHbc/V1cmVxNCVf20=",
333+
"vendorHash": "sha256-FnjCJilPuhYs/JTuEyb4Grn4t40Ox2uqwQf2h9B227Q="
326334
}
327335
},
328336
"latest": {
@@ -335,6 +343,6 @@
335343
"1.6": "1.6.6",
336344
"1.7": "1.7.5",
337345
"1.8": "1.8.5",
338-
"1.9": "1.9.2"
346+
"1.9": "1.9.4"
339347
}
340348
}

0 commit comments

Comments
 (0)