terradactyl-terraform 1.4.1 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2ca4c29f190f309aeda4b501ad9ba4e7a4aac453c796a155ce49f138e212f2e6
4
- data.tar.gz: 8e338b03685bf1fc257f77189b67a185e63f06fd5fa0d8e8149da9f12478bcde
3
+ metadata.gz: f3f4844407060e7647caa915712b105b653855de6e52ded9abe31ac85cc63738
4
+ data.tar.gz: 0e1243a66bfa0f29ebdf421d067bc0b91e546b5d5bcbc36e02f4d017fa4c4847
5
5
  SHA512:
6
- metadata.gz: 649771cccfbdb2f3e1b8dae454102337ae06b3ac698c0764b01cd7d516019daa8125dd97612b29358ac4a403cc7a174bc38e2b29e497198f36f823918663d624
7
- data.tar.gz: 3b1ade8d49e0efff531d1b18e11e33aa4f7b02c031073a2a5874956b26d220339142ea45dc7d1c3f3f1813e8dc8a3e683b7899eedbb71d4e1b6b3b015e7c7803
6
+ metadata.gz: fca088af17ce89d2881ead9ab4afbe6e54c1695faff8bb2f6129e9091280deb82cb46a8b94f921741a6d8281deb9eb707027d88dcfa5e2e5530b4fef51eb0871
7
+ data.tar.gz: e52dccefa5c063fa15fd8c01b4a9fc62ee2d44ab60b1a1b829fe542651f81dd2a0d5f8b23b45ca40c99a918ef44f0b16dffc3feb8862061efc66ef1268b41198
@@ -21,7 +21,7 @@ jobs:
21
21
  runs-on: ubuntu-latest
22
22
  steps:
23
23
  - name: Checkout Code
24
- uses: actions/checkout@v2
24
+ uses: actions/checkout@v4
25
25
  - name: Setup Ruby
26
26
  uses: ruby/setup-ruby@v1
27
27
  with:
@@ -13,7 +13,7 @@ jobs:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
15
  - name: Git clone
16
- uses: actions/checkout@v2
16
+ uses: actions/checkout@v4
17
17
  with:
18
18
  fetch-depth: 2
19
19
  - name: Setup Ruby
@@ -13,7 +13,7 @@ jobs:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
15
  - name: Git clone
16
- uses: actions/checkout@v2
16
+ uses: actions/checkout@v4
17
17
  with:
18
18
  fetch-depth: 2
19
19
  - name: Setup Ruby
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.6.0 (2023-10-04)
4
+ * add support for Terraform version `~> 1.6.0`
5
+ * update init, planfile, and destroy commands (add Rev1_06)
6
+ * add Rev1_06 rspecs
7
+
8
+ ## 1.5.0 (2023-06-12)
9
+
10
+ NEW FEATURES:
11
+
12
+ * add support for Terraform version `~> 1.5.0`
13
+ * exclude `timestamp` from PlanFileParser to maintain consistent checksums
14
+ * update init, planfile, and destroy commands (add Rev1_05)
15
+ * add Rev1_05 rspecs
16
+
3
17
  ## 1.4.1 (2023-03-21)
4
18
 
5
19
  BUG FIX:
@@ -11,6 +25,7 @@ BUG FIX:
11
25
  NEW FEATURES:
12
26
 
13
27
  * add support for Terraform version `~> 1.4.0`
28
+ * set `TF_PLUGIN_CACHE_MAY_BREAK_DEPENDENCY_LOCK_FILE` to true
14
29
  * update init, planfile, and destroy commands (add Rev1_04)
15
30
  * add Rev1_04 rspecs
16
31
 
@@ -29,7 +44,7 @@ BUG FIX:
29
44
  * differentiate between `arm` and `arm64` architectures
30
45
  * fixes binary downloader on Apple silicon
31
46
 
32
- MISCELLANEOUS:
47
+ MISCELLANEOUS:
33
48
 
34
49
  * Add `.DS_Store` to `.gitignore`
35
50
 
@@ -80,6 +80,18 @@ module Terradactyl
80
80
  end
81
81
  end
82
82
 
83
+ module Rev1_05
84
+ module Destroy
85
+ include Terradactyl::Terraform::Rev015::Destroy
86
+ end
87
+ end
88
+
89
+ module Rev1_06
90
+ module Destroy
91
+ include Terradactyl::Terraform::Rev015::Destroy
92
+ end
93
+ end
94
+
83
95
  module Commands
84
96
  class Destroy < Base
85
97
  end
@@ -77,6 +77,18 @@ module Terradactyl
77
77
  end
78
78
  end
79
79
 
80
+ module Rev1_05
81
+ module Init
82
+ include Terradactyl::Terraform::Rev015::Init
83
+ end
84
+ end
85
+
86
+ module Rev1_06
87
+ module Init
88
+ include Terradactyl::Terraform::Rev015::Init
89
+ end
90
+ end
91
+
80
92
  module Commands
81
93
  class Init < Base
82
94
  end
@@ -58,7 +58,12 @@ module Terradactyl
58
58
  #
59
59
  # brian.warsing@visioncritical.com (2020-06-18)
60
60
 
61
+ # The same must be done to the `timestamp` node introduced in TF 1.5
62
+ #
63
+ # lisa.li@alida.com (2023-06-12)
64
+
61
65
  parsed.reject { |k| k == 'prior_state' }.to_json
66
+ parsed.reject { |k| k == 'timestamp' }.to_json
62
67
  ensure
63
68
  popd
64
69
  end
@@ -123,6 +128,16 @@ module Terradactyl
123
128
  end
124
129
  end
125
130
 
131
+ module Rev1_05
132
+ class PlanFileParser < Rev012::PlanFileParser
133
+ end
134
+ end
135
+
136
+ module Rev1_06
137
+ class PlanFileParser < Rev012::PlanFileParser
138
+ end
139
+ end
140
+
126
141
  module Rev011
127
142
  class PlanFileParser < Rev012::PlanFileParser
128
143
  def checksum
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Terradactyl
4
4
  module Terraform
5
- VERSION = '1.4.1'
5
+ VERSION = '1.6.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terradactyl-terraform
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Warsing
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-21 00:00:00.000000000 Z
11
+ date: 2023-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubyzip