dpl 2.0.0.beta.2 → 2.0.3.beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ef80f48b6069e83d15d9594a7ceb586e8ef72be08b618f5741372ec7f55238b5
4
- data.tar.gz: 8f049aecc50f6c36d150a1639bbdc5e17bf9fe5e8e1f29ff17d1bcfbc4d0a5be
3
+ metadata.gz: 8986144ffd8e2b01a258e50d348a92a548a7b5e8d6a4851c628dfb4daed713f4
4
+ data.tar.gz: ffcb50346cf2006a399567f6bb9891045656782386e4a8abc83fa53c633d0bd7
5
5
  SHA512:
6
- metadata.gz: 54e72d833082e9a5f23515cb8d6ae637df2782a14aef0e9924ba338d3f9df900d312e9a1e53ca3f15b34f3ccc1635fa1a9db30d61aa9ac665629dbe309560762
7
- data.tar.gz: 1d66032e70e70022db43cc24de0040a010b4ba449c1c54d05cf4a78b5de4f429fc9b34c48714d3b2ecd578cb084322af684e8c90bf48179d138061903d2c2786
6
+ metadata.gz: b80ee9f27d5214976f7196b9939564b82c81b6c0dbc8dd14190a0bcbdaf34f105489a36026f2521444b965a692701f44f827c86638a1ec5d2fb0a7bf7dde6ff7
7
+ data.tar.gz: c1b76a7cfa0d44c50e3ef736b759f731c29d937234237be0c8c969eda79ce56a158e3daf5f9626f2909f9ecc8c221b91ad5d2a9cb7468a7475b714ea39abf5f5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## dpl v2.0.3-beta.1 (2022-03-15)
4
+
5
+ * Deprecate support for Ruby 2.2
6
+
7
+ ## dpl v2.0.2-beta.1 (2020-09-15)
8
+
9
+ * Add AWS ECR support
10
+
11
+ ## dpl v2.0.1-beta.3 (unreleased)
12
+
13
+ * Change git_push to use the GitHub token's user name and email as the
14
+ committer name and email
15
+
16
+ ## dpl v2.0.1-beta.2 (2020-01-27)
17
+
18
+ * Change codedeploy, lambda, and pages to safelist variables available for
19
+ interpolation on user facing options
20
+
3
21
  ## dpl v2.0.1-beta.1 (2020-01-27)
4
22
 
5
23
  * No changes
data/CONTRIBUTING.md CHANGED
@@ -45,7 +45,7 @@ Hopefully helpful resources are:
45
45
 
46
46
  All provider specific classes live in [dpl/providers](lib/dpl/providers).
47
47
  These represent the CLI commands that are executed when the command line
48
- exectuable `dpl` is run with a given provider name as the first argument.
48
+ executable `dpl` is run with a given provider name as the first argument.
49
49
 
50
50
  Each provider is a subclass of `Dpl::Provider`, which is defined in
51
51
  [dpl/provider.rb](lib/dpl/provider.rb). The provider base class itself
@@ -112,7 +112,7 @@ When a provider class is instantiated and run it will go through a number
112
112
  of stages that make up the deployment process.
113
113
 
114
114
  These are documented in [dpl/provider.rb](/lib/dpl/provider.rb).
115
- If you are adding a new deployment provider please familiarize youself with
115
+ If you are adding a new deployment provider please familiarize yourself with
116
116
  this lifecycle.
117
117
 
118
118
  Feel free to pick and interpret these stages according to the needs and
@@ -319,7 +319,7 @@ test.
319
319
  ## Testing Dpl Branches or Forks on Travis CI
320
320
 
321
321
  It is possible to test a new deployment provider or new functionality of dpl on
322
- Travis CI. In order to do so, add proper configuraiton on the `edge` key to
322
+ Travis CI. In order to do so, add proper configuration on the `edge` key to
323
323
  your `.travis.yml` like so:
324
324
 
325
325
  ```yaml
data/Gemfile CHANGED
@@ -2,7 +2,7 @@ $: << 'lib'
2
2
  require 'dpl/support/gems'
3
3
 
4
4
  source 'https://rubygems.org'
5
- ruby '>= 2.2'
5
+ ruby '>= 2.3'
6
6
 
7
7
  gemspec name: 'dpl'
8
8
  # gem 'cl', path: '../../cl'
data/Gemfile.lock CHANGED
@@ -1,46 +1,49 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dpl (2.0.0.beta.1)
4
+ dpl (2.0.3.beta.1)
5
5
  cl (~> 1.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- addressable (2.7.0)
10
+ addressable (2.8.0)
11
11
  public_suffix (>= 2.0.2, < 5.0)
12
- awesome_print (1.8.0)
13
- aws-eventstream (1.0.3)
14
- aws-partitions (1.273.0)
15
- aws-sdk-cloudformation (1.30.0)
16
- aws-sdk-core (~> 3, >= 3.71.0)
12
+ awesome_print (1.9.2)
13
+ aws-eventstream (1.2.0)
14
+ aws-partitions (1.577.0)
15
+ aws-sdk-cloudformation (1.68.0)
16
+ aws-sdk-core (~> 3, >= 3.127.0)
17
17
  aws-sigv4 (~> 1.1)
18
- aws-sdk-codedeploy (1.27.0)
19
- aws-sdk-core (~> 3, >= 3.71.0)
18
+ aws-sdk-codedeploy (1.49.0)
19
+ aws-sdk-core (~> 3, >= 3.127.0)
20
20
  aws-sigv4 (~> 1.1)
21
- aws-sdk-core (3.90.1)
22
- aws-eventstream (~> 1.0, >= 1.0.2)
23
- aws-partitions (~> 1, >= 1.239.0)
21
+ aws-sdk-core (3.130.1)
22
+ aws-eventstream (~> 1, >= 1.0.2)
23
+ aws-partitions (~> 1, >= 1.525.0)
24
24
  aws-sigv4 (~> 1.1)
25
25
  jmespath (~> 1.0)
26
- aws-sdk-elasticbeanstalk (1.26.0)
27
- aws-sdk-core (~> 3, >= 3.71.0)
26
+ aws-sdk-ecr (1.56.0)
27
+ aws-sdk-core (~> 3, >= 3.127.0)
28
28
  aws-sigv4 (~> 1.1)
29
- aws-sdk-kms (1.29.0)
30
- aws-sdk-core (~> 3, >= 3.71.0)
29
+ aws-sdk-elasticbeanstalk (1.51.0)
30
+ aws-sdk-core (~> 3, >= 3.127.0)
31
31
  aws-sigv4 (~> 1.1)
32
- aws-sdk-lambda (1.35.0)
33
- aws-sdk-core (~> 3, >= 3.71.0)
32
+ aws-sdk-kms (1.55.0)
33
+ aws-sdk-core (~> 3, >= 3.127.0)
34
34
  aws-sigv4 (~> 1.1)
35
- aws-sdk-opsworks (1.21.0)
36
- aws-sdk-core (~> 3, >= 3.71.0)
35
+ aws-sdk-lambda (1.83.0)
36
+ aws-sdk-core (~> 3, >= 3.127.0)
37
37
  aws-sigv4 (~> 1.1)
38
- aws-sdk-s3 (1.60.2)
39
- aws-sdk-core (~> 3, >= 3.83.0)
40
- aws-sdk-kms (~> 1)
38
+ aws-sdk-opsworks (1.41.0)
39
+ aws-sdk-core (~> 3, >= 3.127.0)
41
40
  aws-sigv4 (~> 1.1)
42
- aws-sigv4 (1.1.0)
43
- aws-eventstream (~> 1.0, >= 1.0.2)
41
+ aws-sdk-s3 (1.113.0)
42
+ aws-sdk-core (~> 3, >= 3.127.0)
43
+ aws-sdk-kms (~> 1)
44
+ aws-sigv4 (~> 1.4)
45
+ aws-sigv4 (1.4.0)
46
+ aws-eventstream (~> 1, >= 1.0.2)
44
47
  belafonte (0.5.0)
45
48
  optionally
46
49
  wrapomatic (~> 0.3)
@@ -86,10 +89,11 @@ GEM
86
89
  rack (~> 2.0)
87
90
  uuidtools (~> 2.1)
88
91
  cistern (0.12.3)
89
- cl (1.2.2)
92
+ cl (1.2.4)
90
93
  regstry (~> 1.0.3)
91
- coderay (1.1.2)
94
+ coderay (1.1.3)
92
95
  colorize (0.8.1)
96
+ concurrent-ruby (1.1.10)
93
97
  cookiejar (0.3.3)
94
98
  coveralls (0.8.23)
95
99
  json (>= 1.8, < 3)
@@ -97,13 +101,14 @@ GEM
97
101
  term-ansicolor (~> 1.3)
98
102
  thor (>= 0.19.4, < 2.0)
99
103
  tins (~> 1.6)
100
- crack (0.4.3)
101
- safe_yaml (~> 1.0.0)
102
- diff-lcs (1.3)
103
- docile (1.3.2)
104
+ crack (0.4.5)
105
+ rexml
106
+ deep_merge (1.2.2)
107
+ diff-lcs (1.5.0)
108
+ docile (1.4.0)
104
109
  domain_name (0.5.20190701)
105
110
  unf (>= 0.0.5, < 1.0.0)
106
- em-http-request (1.1.5)
111
+ em-http-request (1.1.7)
107
112
  addressable (>= 2.3.4)
108
113
  cookiejar (!= 0.3.1)
109
114
  em-socksify (>= 0.3)
@@ -114,7 +119,7 @@ GEM
114
119
  erubis (2.7.0)
115
120
  escape (0.0.4)
116
121
  eventmachine (1.2.7)
117
- excon (0.72.0)
122
+ excon (0.92.2)
118
123
  ey-core (3.5.0)
119
124
  addressable
120
125
  awesome_print
@@ -135,27 +140,27 @@ GEM
135
140
  rack
136
141
  sshkey (~> 1.6)
137
142
  table_print
138
- ey-hmac (2.2.0)
143
+ ey-hmac (2.4.0)
139
144
  facter (2.5.7)
140
145
  faraday (0.9.2)
141
146
  multipart-post (>= 1.2, < 3)
142
147
  faraday_middleware (0.14.0)
143
148
  faraday (>= 0.7.4, < 1.0)
144
- fast_gettext (1.1.2)
145
- faye (1.2.4)
149
+ fast_gettext (1.8.0)
150
+ faye (1.4.0)
146
151
  cookiejar (>= 0.3.0)
147
- em-http-request (>= 0.3.0)
152
+ em-http-request (>= 1.1.6)
148
153
  eventmachine (>= 0.12.0)
149
- faye-websocket (>= 0.9.1)
154
+ faye-websocket (>= 0.11.0)
150
155
  multi_json (>= 1.0.0)
151
156
  rack (>= 1.0.0)
152
157
  websocket-driver (>= 0.5.1)
153
- faye-websocket (0.10.9)
158
+ faye-websocket (0.11.1)
154
159
  eventmachine (>= 0.12.0)
155
160
  websocket-driver (>= 0.5.1)
156
- ffi (1.12.2)
157
- ffi-yajl (2.3.3)
158
- libyajl2 (~> 1.2)
161
+ ffi (1.15.5)
162
+ ffi-yajl (2.4.0)
163
+ libyajl2 (>= 1.2)
159
164
  fog-core (2.1.0)
160
165
  builder
161
166
  excon (~> 0.58)
@@ -169,35 +174,38 @@ GEM
169
174
  fog-json (>= 1.0)
170
175
  fog-xml (>= 0.1)
171
176
  ipaddress (>= 0.8)
172
- fog-xml (0.1.3)
177
+ fog-xml (0.1.4)
173
178
  fog-core
174
179
  nokogiri (>= 1.5.11, < 2.0.0)
175
- formatador (0.2.5)
180
+ formatador (0.3.0)
176
181
  fuzzyurl (0.9.0)
177
182
  gems (1.1.1)
178
183
  json
179
- gleis (0.6.2)
180
- rest-client (~> 2.0.0)
184
+ gleis (0.8.0)
185
+ rest-client (~> 2.1.0)
181
186
  thor (~> 0.20.0)
182
- hashdiff (1.0.0)
187
+ hashdiff (1.0.1)
183
188
  hashie (3.6.0)
184
- hiera (3.6.0)
189
+ hiera (3.8.0)
185
190
  highline (1.7.10)
186
- http-cookie (1.0.3)
191
+ hocon (1.3.1)
192
+ http-accept (1.7.0)
193
+ http-cookie (1.0.4)
187
194
  domain_name (~> 0.5)
188
- http_parser.rb (0.6.0)
189
- iniparse (1.4.4)
195
+ http_parser.rb (0.8.0)
196
+ httpclient (2.8.3)
197
+ iniparse (1.5.0)
190
198
  ipaddress (0.8.3)
191
- jmespath (1.4.0)
199
+ jmespath (1.6.1)
192
200
  json (1.8.6)
193
201
  json_pure (1.8.6)
194
- libyajl2 (1.2.0)
202
+ libyajl2 (2.1.0)
195
203
  locale (2.1.3)
196
- method_source (0.9.2)
204
+ method_source (1.0.0)
197
205
  mime (0.4.4)
198
206
  mime-types (3.2.2)
199
207
  mime-types-data (~> 3.2015)
200
- mime-types-data (3.2019.1009)
208
+ mime-types-data (3.2022.0105)
201
209
  mini_portile2 (2.4.0)
202
210
  mixlib-archive (0.4.20)
203
211
  mixlib-log
@@ -207,10 +215,10 @@ GEM
207
215
  tomlrb
208
216
  mixlib-log (1.7.1)
209
217
  mixlib-shellout (2.4.4)
210
- multi_json (1.14.1)
218
+ multi_json (1.15.0)
211
219
  multipart-post (2.0.0)
212
- net-scp (2.0.0)
213
- net-ssh (>= 2.6.5, < 6.0.0)
220
+ net-scp (3.0.0)
221
+ net-ssh (>= 2.6.5, < 7.0.0)
214
222
  net-sftp (2.1.2)
215
223
  net-ssh (>= 2.6.5)
216
224
  net-ssh (4.2.0)
@@ -238,7 +246,7 @@ GEM
238
246
  plist (~> 3.1)
239
247
  systemu (~> 2.6.4)
240
248
  wmi-lite (~> 1.0)
241
- oj (3.10.2)
249
+ oj (3.13.11)
242
250
  oj_mimic_json (1.0.1)
243
251
  optionally (0.0.3)
244
252
  packagecloud-ruby (1.0.8)
@@ -247,54 +255,62 @@ GEM
247
255
  mime (~> 0.4)
248
256
  multi_json (~> 1.0)
249
257
  pathspec (0.2.1)
250
- plist (3.5.0)
258
+ plist (3.6.0)
251
259
  proxifier (1.0.3)
252
- pry (0.12.2)
253
- coderay (~> 1.1.0)
254
- method_source (~> 0.9.0)
260
+ pry (0.14.1)
261
+ coderay (~> 1.1)
262
+ method_source (~> 1.0)
255
263
  public_suffix (3.0.3)
256
- puppet (5.5.18)
257
- facter (> 2.0.1, < 4)
258
- fast_gettext (~> 1.1.2)
264
+ puppet (6.26.0)
265
+ concurrent-ruby (~> 1.0)
266
+ deep_merge (~> 1.0)
267
+ facter (> 2.0.1, < 5)
268
+ fast_gettext (~> 1.1)
259
269
  hiera (>= 3.2.1, < 4)
270
+ httpclient (~> 2.8)
260
271
  locale (~> 2.1)
261
272
  multi_json (~> 1.10)
262
- puppet-blacksmith (3.3.1)
263
- puppet (>= 2.7.16)
264
- rest-client
265
- rack (2.2.2)
273
+ puppet-resource_api (~> 1.5)
274
+ semantic_puppet (~> 1.0)
275
+ puppet-blacksmith (4.1.2)
276
+ rest-client (~> 2.0)
277
+ puppet-resource_api (1.8.14)
278
+ hocon (>= 1.0)
279
+ rack (2.2.3)
266
280
  rake (12.3.3)
267
281
  regstry (1.0.15)
268
282
  rendezvous (0.1.3)
269
- rest-client (2.0.2)
283
+ rest-client (2.1.0)
284
+ http-accept (>= 1.7.0, < 2.0)
270
285
  http-cookie (>= 1.0.2, < 2.0)
271
286
  mime-types (>= 1.16, < 4.0)
272
287
  netrc (~> 0.8)
273
- rspec (3.8.0)
274
- rspec-core (~> 3.8.0)
275
- rspec-expectations (~> 3.8.0)
276
- rspec-mocks (~> 3.8.0)
277
- rspec-core (3.8.2)
278
- rspec-support (~> 3.8.0)
279
- rspec-expectations (3.8.4)
288
+ rexml (3.2.5)
289
+ rspec (3.11.0)
290
+ rspec-core (~> 3.11.0)
291
+ rspec-expectations (~> 3.11.0)
292
+ rspec-mocks (~> 3.11.0)
293
+ rspec-core (3.11.0)
294
+ rspec-support (~> 3.11.0)
295
+ rspec-expectations (3.11.0)
280
296
  diff-lcs (>= 1.2.0, < 2.0)
281
- rspec-support (~> 3.8.0)
297
+ rspec-support (~> 3.11.0)
282
298
  rspec-its (1.3.0)
283
299
  rspec-core (>= 3.0.0)
284
300
  rspec-expectations (>= 3.0.0)
285
- rspec-mocks (3.8.1)
301
+ rspec-mocks (3.11.1)
286
302
  diff-lcs (>= 1.2.0, < 2.0)
287
- rspec-support (~> 3.8.0)
288
- rspec-support (3.8.2)
303
+ rspec-support (~> 3.11.0)
304
+ rspec-support (3.11.0)
289
305
  rspec_junit_formatter (0.2.3)
290
306
  builder (< 4)
291
307
  rspec-core (>= 2, < 4, != 2.12.0)
292
308
  rubyzip (1.2.4)
293
- safe_yaml (1.0.5)
294
309
  sawyer (0.8.2)
295
310
  addressable (>= 2.3.5)
296
311
  faraday (> 0.8, < 2.0)
297
- serverspec (2.41.5)
312
+ semantic_puppet (1.0.4)
313
+ serverspec (2.42.0)
298
314
  multi_json
299
315
  rspec (~> 3.0)
300
316
  rspec-its
@@ -305,32 +321,34 @@ GEM
305
321
  json (>= 1.8, < 3)
306
322
  simplecov-html (~> 0.10.0)
307
323
  simplecov-html (0.10.2)
308
- specinfra (2.82.9)
324
+ specinfra (2.83.2)
309
325
  net-scp
310
326
  net-ssh (>= 2.7)
311
327
  net-telnet (= 0.1.1)
312
328
  sfl
313
329
  sshkey (1.9.0)
330
+ sync (0.5.0)
314
331
  syslog-logger (1.6.8)
315
332
  systemu (2.6.5)
316
- table_print (1.5.6)
333
+ table_print (1.5.7)
317
334
  term-ansicolor (1.7.1)
318
335
  tins (~> 1.0)
319
336
  thor (0.20.3)
320
- tins (1.21.1)
321
- tomlrb (1.2.9)
337
+ tins (1.31.0)
338
+ sync
339
+ tomlrb (2.0.1)
322
340
  unf (0.1.4)
323
341
  unf_ext
324
- unf_ext (0.0.7.6)
342
+ unf_ext (0.0.8.1)
325
343
  uuidtools (2.1.5)
326
- webmock (3.8.2)
327
- addressable (>= 2.3.6)
344
+ webmock (3.14.0)
345
+ addressable (>= 2.8.0)
328
346
  crack (>= 0.3.2)
329
347
  hashdiff (>= 0.4.0, < 2.0.0)
330
- websocket-driver (0.7.1)
348
+ websocket-driver (0.7.5)
331
349
  websocket-extensions (>= 0.1.0)
332
- websocket-extensions (0.1.4)
333
- wmi-lite (1.0.5)
350
+ websocket-extensions (0.1.5)
351
+ wmi-lite (1.0.7)
334
352
  wrapomatic (0.3.0)
335
353
 
336
354
  PLATFORMS
@@ -339,6 +357,7 @@ PLATFORMS
339
357
  DEPENDENCIES
340
358
  aws-sdk-cloudformation (~> 1.0)
341
359
  aws-sdk-codedeploy (~> 1.0)
360
+ aws-sdk-ecr (~> 1.0)
342
361
  aws-sdk-elasticbeanstalk (~> 1.0)
343
362
  aws-sdk-lambda (~> 1.0)
344
363
  aws-sdk-opsworks (~> 1.0)
@@ -351,7 +370,7 @@ DEPENDENCIES
351
370
  fog-core (= 2.1.0)
352
371
  fog-rackspace (~> 0.1.6)
353
372
  gems (~> 1.1.1)
354
- gleis (~> 0.6.0)
373
+ gleis (~> 0.8.0)
355
374
  json
356
375
  mime-types (~> 3.2.2)
357
376
  multipart-post (~> 2.0.0)
@@ -361,8 +380,8 @@ DEPENDENCIES
361
380
  packagecloud-ruby (~> 1.0.8)
362
381
  pathspec (~> 0.2.1)
363
382
  public_suffix (~> 3.0.3)
364
- puppet (~> 5.5.14)
365
- puppet-blacksmith (~> 3.3.1)
383
+ puppet (~> 6.26.0)
384
+ puppet-blacksmith (~> 4.1.2)
366
385
  rack
367
386
  rake (~> 12.3)
368
387
  rendezvous (~> 0.1.3)
@@ -371,7 +390,7 @@ DEPENDENCIES
371
390
  webmock
372
391
 
373
392
  RUBY VERSION
374
- ruby 2.4.1p111
393
+ ruby 2.5.8p224
375
394
 
376
395
  BUNDLED WITH
377
- 2.0.2
396
+ 2.1.4