terradactyl-terraform 1.4.1 → 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: 2ca4c29f190f309aeda4b501ad9ba4e7a4aac453c796a155ce49f138e212f2e6
4
- data.tar.gz: 8e338b03685bf1fc257f77189b67a185e63f06fd5fa0d8e8149da9f12478bcde
3
+ metadata.gz: 0c526499fa533c4aa0c3f59712b429738492d4a27b036e45bcf9bb6bc78792c3
4
+ data.tar.gz: 25ea68a837280ed92a84a0935d9bc102061995a4e9bea59e1d4610a2b71dbfc4
5
5
  SHA512:
6
- metadata.gz: 649771cccfbdb2f3e1b8dae454102337ae06b3ac698c0764b01cd7d516019daa8125dd97612b29358ac4a403cc7a174bc38e2b29e497198f36f823918663d624
7
- data.tar.gz: 3b1ade8d49e0efff531d1b18e11e33aa4f7b02c031073a2a5874956b26d220339142ea45dc7d1c3f3f1813e8dc8a3e683b7899eedbb71d4e1b6b3b015e7c7803
6
+ metadata.gz: 0f161bb77e345c35c3a886e8becf6f668e1f0ce15cfa28b1dd726cd8a95ff67158e69b73d950882f7ed82d26d5f5831d6d081bfd48dce0fedda68a09dab0d60e
7
+ data.tar.gz: 87513d7a35042ab1138ba44773c075a3a46b00b81e0b842bef2ae8ae336b0949fea5ec1f8248c72b8f352b4b90875754fffe35b74b032f11764c427a8acf494f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
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
+
3
12
  ## 1.4.1 (2023-03-21)
4
13
 
5
14
  BUG FIX:
@@ -11,6 +20,7 @@ BUG FIX:
11
20
  NEW FEATURES:
12
21
 
13
22
  * add support for Terraform version `~> 1.4.0`
23
+ * set `TF_PLUGIN_CACHE_MAY_BREAK_DEPENDENCY_LOCK_FILE` to true
14
24
  * update init, planfile, and destroy commands (add Rev1_04)
15
25
  * add Rev1_04 rspecs
16
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.1'
5
+ VERSION = '1.5.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.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-21 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