dpl 2.0.0.alpha.6 → 2.0.0.alpha.7

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
  SHA1:
3
- metadata.gz: 8c1cc40dc2134c6e6252560ce53b979e367bc7e3
4
- data.tar.gz: 145636ec93f38e235cb62010b442e8ffb25df97c
3
+ metadata.gz: 66cc8adc7935d0da254391ac5135aba535446c14
4
+ data.tar.gz: 49af677f55e86c5eb07f79d89d94157687be879b
5
5
  SHA512:
6
- metadata.gz: 72e3396404e483cc2255314805e0ccff4a0f0fb34ccdbb1185dd34bd5e943fedeb2cd4930d0bc0619cda77cda72544e3d82f4ab3b87c555c54ce61c5240fb129
7
- data.tar.gz: ad28320f7855b3a059259d5d5a0c53889626f8c7aeefa4451e8d08a51305a5a19be1142ce1438cb4ecb7e94cacf108a329e529bde2b188c5733b64366f92addf
6
+ metadata.gz: 437f05d515c4b2fb0dbabf7f5b048b25a34db045d3cfba265f7172d45f1d2a9e95ed2a6056c7240da9db72ee722a67a8c7090bc25442039c7bc28b7ad26cda86
7
+ data.tar.gz: 8e9b20a8e55fab270d90d674f1356effeac52a714f379a30951d01eff5680980c0d4d86d8cc81c4965bf425da99c9b1bfc22c192c356df6a1583c8f0aa1d9959
@@ -10,6 +10,10 @@
10
10
 
11
11
  * Add `--allow_dirty` to allow publishing from a dirty Git working directory
12
12
 
13
+ ### GCS
14
+
15
+ * Add `--key_file` to allow using a service account key file
16
+
13
17
  ### Releases
14
18
 
15
19
  * Make --file glob files by default, and default to `*`
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dpl (2.0.0.alpha.5)
4
+ dpl (2.0.0.alpha.6)
5
5
  cl (~> 1.0)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -89,7 +89,7 @@ the following maturity levels, according to the given criteria:
89
89
  * `dev` - the provider is in development (initial level)
90
90
  * `alpha` - the provider is fully tested
91
91
  * `beta` - the provider has been in alpha for at least a month, and successful real-world production deployments have been observed
92
- * `stable` - the provider has been in beta for at least two months, and there are no open issues that qualify as critical (such as deployments failing, documented functionality broken, etc)
92
+ * `stable` - the provider has been in beta for at least a month, and there are no open issues that qualify as critical (such as deployments failing, documented functionality broken, etc)
93
93
 
94
94
  ## Supported Providers
95
95
 
@@ -296,7 +296,7 @@ Options can be given via env vars if prefixed with `[AWS_|CODEDEPLOY_]`. E.g. th
296
296
 
297
297
  ### AWS Elastic Beanstalk
298
298
 
299
- Support for deployments to AWS Elastic Beanstalk is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
299
+ Support for deployments to AWS Elastic Beanstalk is in **beta**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
300
300
 
301
301
  ```
302
302
  Usage: dpl elasticbeanstalk [options]
@@ -345,7 +345,7 @@ Options can be given via env vars if prefixed with `[AWS_|ELASTIC_BEANSTALK_]`.
345
345
 
346
346
  ### AWS Lambda
347
347
 
348
- Support for deployments to AWS Lambda is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
348
+ Support for deployments to AWS Lambda is in **beta**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
349
349
 
350
350
  ```
351
351
  Usage: dpl lambda [options]
@@ -465,7 +465,7 @@ Options can be given via env vars if prefixed with `[AWS_|OPSWORKS_]`. E.g. the
465
465
 
466
466
  ### AWS S3
467
467
 
468
- Support for deployments to AWS S3 is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
468
+ Support for deployments to AWS S3 is in **beta**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
469
469
 
470
470
  ```
471
471
  Usage: dpl s3 [options]
@@ -1019,7 +1019,7 @@ can be given as `ENGINEYARD_API_KEY=<api_key>` or `EY_API_KEY=<api_key>`.
1019
1019
 
1020
1020
  ### Firebase
1021
1021
 
1022
- Support for deployments to Firebase is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1022
+ Support for deployments to Firebase is in **beta**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1023
1023
 
1024
1024
  ```
1025
1025
  Usage: dpl firebase [options]
@@ -1061,7 +1061,7 @@ given as `FIREBASE_TOKEN=<token>`.
1061
1061
 
1062
1062
  ### GitHub Pages
1063
1063
 
1064
- Support for deployments to GitHub Pages is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1064
+ Support for deployments to GitHub Pages is in **beta**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1065
1065
 
1066
1066
  ```
1067
1067
  Usage: dpl pages git [options]
@@ -1167,7 +1167,7 @@ be given as `GITHUB_TOKEN=<token>` or `PAGES_TOKEN=<token>`.
1167
1167
 
1168
1168
  ### GitHub Releases
1169
1169
 
1170
- Support for deployments to GitHub Releases is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1170
+ Support for deployments to GitHub Releases is in **beta**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1171
1171
 
1172
1172
  ```
1173
1173
  Usage: dpl releases [options]
@@ -1262,7 +1262,7 @@ given as `GLEIS_PASSWORD=<password>`.
1262
1262
 
1263
1263
  ### Google App Engine
1264
1264
 
1265
- Support for deployments to Google App Engine is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1265
+ Support for deployments to Google App Engine is in **beta**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1266
1266
 
1267
1267
  ```
1268
1268
  Usage: dpl gae [options]
@@ -1288,10 +1288,10 @@ Options:
1288
1288
  --version VER The version of the app that will be created or replaced by this deployment. If
1289
1289
  you do not specify a version, one will be generated for you (type: string)
1290
1290
  --verbosity LEVEL Adjust the log verbosity (type: string, default: warning)
1291
- --[no-]promote Do not promote the deployed version (default: true)
1291
+ --[no-]promote Whether to promote the deployed version (default: true)
1292
1292
  --[no-]stop_previous_version Prevent the deployment from stopping a previously promoted version (default:
1293
1293
  true)
1294
- --[no-]install_sdk Do not install the Google Cloud SDK (default: true)
1294
+ --[no-]install_sdk Whether to install the Google Cloud SDK (default: true)
1295
1295
 
1296
1296
  Common Options:
1297
1297
 
@@ -1311,7 +1311,7 @@ Options can be given via env vars if prefixed with
1311
1311
 
1312
1312
  ### Google Cloud Store
1313
1313
 
1314
- Support for deployments to Google Cloud Store is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1314
+ Support for deployments to Google Cloud Store is in **beta**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1315
1315
 
1316
1316
  ```
1317
1317
  Usage: dpl gcs [options]
@@ -1442,7 +1442,7 @@ given as `HEPHY_PASSWORD=<password>`.
1442
1442
 
1443
1443
  ### Heroku API
1444
1444
 
1445
- Support for deployments to Heroku API is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1445
+ Support for deployments to Heroku API is in **beta**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1446
1446
 
1447
1447
  ```
1448
1448
  Usage: dpl heroku api [options]
@@ -1614,22 +1614,22 @@ Description:
1614
1614
 
1615
1615
  Options:
1616
1616
 
1617
- --email EMAIL npm account email (type: string)
1618
- --api_token TOKEN npm api token (type: string, required: true, alias: api_key, note: can be
1619
- retrieved from your local ~/.npmrc file, see:
1620
- https://docs.npmjs.com/creating-and-viewing-authentication-tokens)
1621
- --access ACCESS Access level (type: string, known values: public, private)
1622
- --registry URL npm registry url (type: string)
1623
- --src SRC directory or tarball to publish (type: string, default: .)
1624
- --tag TAGS distribution tags to add (type: string)
1625
- --[no-]auth_method Authentication method (known values: auth)
1617
+ --email EMAIL npm account email (type: string)
1618
+ --api_token TOKEN npm api token (type: string, required: true, alias: api_key, note: can be
1619
+ retrieved from your local ~/.npmrc file, see:
1620
+ https://docs.npmjs.com/creating-and-viewing-authentication-tokens)
1621
+ --access ACCESS Access level (type: string, known values: public, private)
1622
+ --registry URL npm registry url (type: string)
1623
+ --src SRC directory or tarball to publish (type: string, default: .)
1624
+ --tag TAGS distribution tags to add (type: string)
1625
+ --auth_method METHOD Authentication method (type: string, known values: auth)
1626
1626
 
1627
1627
  Common Options:
1628
1628
 
1629
- --cleanup Clean up build artifacts from the Git working directory before the deployment
1630
- --run CMD Commands to execute after the deployment finished successfully (type: array
1631
- (string, can be given multiple times))
1632
- --help Get help on this command
1629
+ --cleanup Clean up build artifacts from the Git working directory before the deployment
1630
+ --run CMD Commands to execute after the deployment finished successfully (type: array
1631
+ (string, can be given multiple times))
1632
+ --help Get help on this command
1633
1633
 
1634
1634
  Examples:
1635
1635
 
@@ -1642,7 +1642,7 @@ given as `NPM_API_TOKEN=<api_token>`.
1642
1642
 
1643
1643
  ### OpenShift
1644
1644
 
1645
- Support for deployments to OpenShift is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1645
+ Support for deployments to OpenShift is in **beta**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1646
1646
 
1647
1647
  ```
1648
1648
  Usage: dpl openshift [options]
@@ -1906,7 +1906,7 @@ given as `SCALINGO_PASSWORD=<password>`.
1906
1906
 
1907
1907
  ### Script
1908
1908
 
1909
- Support for deployments to Script is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1909
+ Support for deployments to Script is in **beta**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1910
1910
 
1911
1911
  ```
1912
1912
  Usage: dpl script [options]
@@ -89,7 +89,7 @@ the following maturity levels, according to the given criteria:
89
89
  * `dev` - the provider is in development (initial level)
90
90
  * `alpha` - the provider is fully tested
91
91
  * `beta` - the provider has been in alpha for at least a month, and successful real-world production deployments have been observed
92
- * `stable` - the provider has been in beta for at least two months, and there are no open issues that qualify as critical (such as deployments failing, documented functionality broken, etc)
92
+ * `stable` - the provider has been in beta for at least a month, and there are no open issues that qualify as critical (such as deployments failing, documented functionality broken, etc)
93
93
 
94
94
  ## Supported Providers
95
95
 
@@ -1,7 +1,7 @@
1
1
  module Dpl
2
2
  module Providers
3
3
  class Elasticbeanstalk < Provider
4
- status :alpha
4
+ status :beta
5
5
 
6
6
  full_name 'AWS Elastic Beanstalk'
7
7
 
@@ -1,7 +1,7 @@
1
1
  module Dpl
2
2
  module Providers
3
3
  class Firebase < Provider
4
- status :alpha
4
+ status :beta
5
5
 
6
6
  description sq(<<-str)
7
7
  tbd
@@ -1,7 +1,7 @@
1
1
  module Dpl
2
2
  module Providers
3
3
  class Gae < Provider
4
- status :alpha
4
+ status :beta
5
5
 
6
6
  full_name 'Google App Engine'
7
7
 
@@ -18,9 +18,9 @@ module Dpl
18
18
  opt '--config FILE', 'Path to your service configuration file', type: :array, default: 'app.yaml'
19
19
  opt '--version VER', 'The version of the app that will be created or replaced by this deployment. If you do not specify a version, one will be generated for you'
20
20
  opt '--verbosity LEVEL', 'Adjust the log verbosity', default: 'warning'
21
- opt '--promote', 'Do not promote the deployed version', default: true
21
+ opt '--promote', 'Whether to promote the deployed version', default: true
22
22
  opt '--stop_previous_version', 'Prevent the deployment from stopping a previously promoted version', default: true
23
- opt '--install_sdk', 'Do not install the Google Cloud SDK', default: true
23
+ opt '--install_sdk', 'Whether to install the Google Cloud SDK', default: true
24
24
 
25
25
  URL = 'https://dl.google.com/dl/cloudsdk/channels/rapid/google-cloud-sdk.tar.gz'
26
26
 
@@ -3,7 +3,7 @@ require 'kconv'
3
3
  module Dpl
4
4
  module Providers
5
5
  class Gcs < Provider
6
- status :alpha
6
+ status :beta
7
7
 
8
8
  full_name 'Google Cloud Store'
9
9
 
@@ -4,7 +4,7 @@ module Dpl
4
4
  class Api < Heroku
5
5
  register 'heroku:api'
6
6
 
7
- status :alpha
7
+ status :beta
8
8
 
9
9
  full_name 'Heroku API'
10
10
 
@@ -3,7 +3,7 @@ require 'dpl/helper/zip'
3
3
  module Dpl
4
4
  module Providers
5
5
  class Lambda < Provider
6
- status :alpha
6
+ status :beta
7
7
 
8
8
  full_name 'AWS Lambda'
9
9
 
@@ -19,7 +19,7 @@ module Dpl
19
19
  opt '--registry URL', 'npm registry url'
20
20
  opt '--src SRC', 'directory or tarball to publish', default: '.'
21
21
  opt '--tag TAGS', 'distribution tags to add'
22
- opt '--auth_method', 'Authentication method', enum: %w(auth)
22
+ opt '--auth_method METHOD', 'Authentication method', enum: %w(auth)
23
23
 
24
24
  REGISTRY = 'registry.npmjs.org'
25
25
  NPMRC = '~/.npmrc'
@@ -1,7 +1,7 @@
1
1
  module Dpl
2
2
  module Providers
3
3
  class Openshift < Provider
4
- status :alpha
4
+ status :beta
5
5
 
6
6
  full_name 'OpenShift'
7
7
 
@@ -4,7 +4,7 @@ module Dpl
4
4
  class Git < Pages
5
5
  register 'pages:git'
6
6
 
7
- status :alpha
7
+ status :beta
8
8
 
9
9
  full_name 'GitHub Pages'
10
10
 
@@ -1,7 +1,7 @@
1
1
  module Dpl
2
2
  module Providers
3
3
  class Releases < Provider
4
- status :alpha
4
+ status :beta
5
5
 
6
6
  full_name 'GitHub Releases'
7
7
 
@@ -6,7 +6,7 @@ Thread.abort_on_exception = true
6
6
  module Dpl
7
7
  module Providers
8
8
  class S3 < Provider
9
- status :alpha
9
+ status :beta
10
10
 
11
11
  full_name 'AWS S3'
12
12
 
@@ -1,7 +1,7 @@
1
1
  module Dpl
2
2
  module Providers
3
3
  class Script < Provider
4
- status :alpha
4
+ status :beta
5
5
 
6
6
  summary 'Minimal provider that executes a custom command'
7
7
 
@@ -1,3 +1,3 @@
1
1
  module Dpl
2
- VERSION = '2.0.0.alpha.6'
2
+ VERSION = '2.0.0.alpha.7'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dpl
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.alpha.6
4
+ version: 2.0.0.alpha.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Haase
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2019-09-18 00:00:00.000000000 Z
13
+ date: 2019-09-26 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: cl