terradactyl-terraform 1.4.0 → 1.5.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: 113fcef2e929fb3499947658097b1c848913a59d9db50b7b62f00ab269d6738b
4
- data.tar.gz: 352d27610119dd5489a9cdce1cdcb2155c0b9bbe83e205eadc2744e5ec285b09
3
+ metadata.gz: 0c526499fa533c4aa0c3f59712b429738492d4a27b036e45bcf9bb6bc78792c3
4
+ data.tar.gz: 25ea68a837280ed92a84a0935d9bc102061995a4e9bea59e1d4610a2b71dbfc4
5
5
  SHA512:
6
- metadata.gz: e9cce443f4ea98367856ec17f7e4d461790fb4f7761d68da7516fb3a78e07f0ae12e072905157b12f03ae24d0e77c9ed5fd295b031aba7b725a4660297ca13c6
7
- data.tar.gz: ef8c8e0e69901e5fecd6fac3d45fbbb2f3f6f23f8ee7c6176422866679d0270b1421fef7a45843bb6316354e42ca7be9900c2d40bd1613e3810dad8bdc4cc463
6
+ metadata.gz: 0f161bb77e345c35c3a886e8becf6f668e1f0ce15cfa28b1dd726cd8a95ff67158e69b73d950882f7ed82d26d5f5831d6d081bfd48dce0fedda68a09dab0d60e
7
+ data.tar.gz: 87513d7a35042ab1138ba44773c075a3a46b00b81e0b842bef2ae8ae336b0949fea5ec1f8248c72b8f352b4b90875754fffe35b74b032f11764c427a8acf494f
data/CHANGELOG.md CHANGED
@@ -1,10 +1,26 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.5.0 (2023-06-12)
4
+
5
+ NEW FEATURES:
6
+
7
+ * add support for Terraform version `~> 1.5.0`
8
+ * exclude `timestamp` from PlanFileParser to maintain consistent checksums
9
+ * update init, planfile, and destroy commands (add Rev1_05)
10
+ * add Rev1_05 rspecs
11
+
12
+ ## 1.4.1 (2023-03-21)
13
+
14
+ BUG FIX:
15
+
16
+ * support `aarch64` architectures
17
+
3
18
  ## 1.4.0 (2023-03-13)
4
19
 
5
20
  NEW FEATURES:
6
21
 
7
22
  * add support for Terraform version `~> 1.4.0`
23
+ * set `TF_PLUGIN_CACHE_MAY_BREAK_DEPENDENCY_LOCK_FILE` to true
8
24
  * update init, planfile, and destroy commands (add Rev1_04)
9
25
  * add Rev1_04 rspecs
10
26
 
@@ -80,6 +80,12 @@ 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
+
83
89
  module Commands
84
90
  class Destroy < Base
85
91
  end
@@ -77,6 +77,12 @@ 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
+
80
86
  module Commands
81
87
  class Init < Base
82
88
  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,11 @@ module Terradactyl
123
128
  end
124
129
  end
125
130
 
131
+ module Rev1_05
132
+ class PlanFileParser < Rev012::PlanFileParser
133
+ end
134
+ end
135
+
126
136
  module Rev011
127
137
  class PlanFileParser < Rev012::PlanFileParser
128
138
  def checksum
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Terradactyl
4
4
  module Terraform
5
- VERSION = '1.4.0'
5
+ VERSION = '1.5.0'
6
6
  end
7
7
  end
@@ -12,7 +12,7 @@ module Terradactyl
12
12
  '386'
13
13
  when /^arm$/
14
14
  'arm'
15
- when /^arm64/
15
+ when /^arm64|aarch64/
16
16
  'arm64'
17
17
  else
18
18
  raise "FATAL: Unsupported CPU arch, #{value}"
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.0
4
+ version: 1.5.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-14 00:00:00.000000000 Z
11
+ date: 2023-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubyzip