dpl 2.0.0.alpha.2 → 2.0.0.alpha.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +34 -1
  3. data/Gemfile.lock +13 -8
  4. data/NOTES.md +1 -74
  5. data/README.md +464 -193
  6. data/lib/dpl/assets/convox/install +11 -0
  7. data/lib/dpl/assets/dpl/README.erb.md +4 -0
  8. data/lib/dpl/cli.rb +54 -18
  9. data/lib/dpl/ctx/test.rb +7 -3
  10. data/lib/dpl/helper/env.rb +67 -18
  11. data/lib/dpl/helper/wrap.rb +9 -0
  12. data/lib/dpl/provider.rb +11 -9
  13. data/lib/dpl/provider/dsl.rb +3 -1
  14. data/lib/dpl/provider/status.rb +6 -6
  15. data/lib/dpl/providers.rb +3 -1
  16. data/lib/dpl/providers/anynines.rb +5 -3
  17. data/lib/dpl/providers/azure_web_apps.rb +1 -1
  18. data/lib/dpl/providers/bintray.rb +2 -0
  19. data/lib/dpl/providers/bluemixcloudfoundry.rb +5 -3
  20. data/lib/dpl/providers/boxfuse.rb +1 -1
  21. data/lib/dpl/providers/cargo.rb +10 -1
  22. data/lib/dpl/providers/chef_supermarket.rb +3 -1
  23. data/lib/dpl/providers/cloud66.rb +2 -0
  24. data/lib/dpl/providers/cloudfiles.rb +2 -0
  25. data/lib/dpl/providers/cloudformation.rb +278 -0
  26. data/lib/dpl/providers/cloudfoundry.rb +6 -4
  27. data/lib/dpl/providers/codedeploy.rb +5 -5
  28. data/lib/dpl/providers/convox.rb +121 -0
  29. data/lib/dpl/providers/datica.rb +1 -1
  30. data/lib/dpl/providers/engineyard.rb +2 -0
  31. data/lib/dpl/providers/gae.rb +6 -7
  32. data/lib/dpl/providers/gcs.rb +5 -3
  33. data/lib/dpl/providers/gleis.rb +70 -0
  34. data/lib/dpl/providers/hackage.rb +2 -0
  35. data/lib/dpl/providers/hephy.rb +3 -1
  36. data/lib/dpl/providers/heroku.rb +4 -8
  37. data/lib/dpl/providers/heroku/api.rb +4 -2
  38. data/lib/dpl/providers/heroku/git.rb +3 -1
  39. data/lib/dpl/providers/lambda.rb +4 -4
  40. data/lib/dpl/providers/launchpad.rb +3 -1
  41. data/lib/dpl/providers/netlify.rb +2 -0
  42. data/lib/dpl/providers/npm.rb +2 -0
  43. data/lib/dpl/providers/openshift.rb +2 -0
  44. data/lib/dpl/providers/opsworks.rb +1 -1
  45. data/lib/dpl/providers/packagecloud.rb +2 -0
  46. data/lib/dpl/providers/pages.rb +4 -7
  47. data/lib/dpl/providers/pages/api.rb +16 -12
  48. data/lib/dpl/providers/pages/git.rb +16 -12
  49. data/lib/dpl/providers/puppetforge.rb +2 -0
  50. data/lib/dpl/providers/pypi.rb +2 -0
  51. data/lib/dpl/providers/releases.rb +8 -6
  52. data/lib/dpl/providers/rubygems.rb +3 -1
  53. data/lib/dpl/providers/s3.rb +7 -7
  54. data/lib/dpl/providers/scalingo.rb +2 -0
  55. data/lib/dpl/providers/testfairy.rb +2 -0
  56. data/lib/dpl/providers/transifex.rb +2 -0
  57. data/lib/dpl/version.rb +1 -1
  58. metadata +7 -3
  59. data/lib/dpl/providers/atlas.rb +0 -49
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d08ed5a0b6566de91b36f9def0a57546a833e555
4
- data.tar.gz: 6d5903d33f3a903e2cefd6f4a38da6661b24c74c
3
+ metadata.gz: 1dc5d3510c8999c2945c0227c5e096d4f2d8d2b5
4
+ data.tar.gz: 833ba7206a6f91273ea15c029473b4855db46314
5
5
  SHA512:
6
- metadata.gz: 1106b237e0421c9f655cb004a2c46ecc43ef6278053a1665060fac8c4d39096b8c4b71923be75ab7d0c45a5bcc28e10077c114964133de03ffdb95cdd76b95da
7
- data.tar.gz: 934a6cde133fb09ef25083242916ba75949e723fbf95cb5c9a0e87ae6347a0d37bd47c0d11cc7724f182c1880c2d4471515bc76873ed335642a85888ef7d48c3
6
+ metadata.gz: f1e4c9e3128f9976517c933dfb58bbc7b60f0fbfab99ce7ec6bcc08b589c158589b387e66960d73efb7a19ac5f8aa0439b235a13ec0a8d7d23b59f3c043a355c
7
+ data.tar.gz: d42f768920ebc2d1327aeede2cc2d01f02d42984702259a763b79c3928303923f0e6bbc3b5af49edba0762c64d04016771f96b0a3ef63f3edb95b651b6fa315e
@@ -1,6 +1,24 @@
1
1
  # Changelog
2
2
 
3
- ## dpl v2.0.0-alpha.1 (eta 2019-08-28)
3
+ ## Unreleased
4
+
5
+ * Rescue `UnknownOption` and suggest known options on Ruby >= 2.4
6
+ * Add a Cloudformation provider
7
+ * Add a Convox provider
8
+
9
+ ### Cargo
10
+
11
+ * Add `--allow_dirty` to allow publishing from a dirty Git working directory
12
+
13
+ ### Releases
14
+
15
+ * Make --file glob files by default, and default to `*`
16
+
17
+ ## dpl v2.0.0-alpha.2 (2019-08-28)
18
+
19
+ * Add `--edge` as an internal flag in case `edge: true` was given in `.travis.yml`
20
+
21
+ ## dpl v2.0.0-alpha.1 (2019-08-27)
4
22
 
5
23
  * Default to not cleaning the git working directory, but accept `--cleanup` in order to clean up the git working directory.
6
24
  * Support a maturity model using dev, alpha, beta, stable.
@@ -10,49 +28,61 @@
10
28
  * Fix git-ssh to work with non-standard ssh ports (used by all providers that rely on Git).
11
29
 
12
30
  ### bintray
31
+
13
32
  * List files in the downloads list if specified in the descriptor file.
14
33
 
15
34
  ### chef-supermarket
35
+
16
36
  * Read the cookbook name a given metadata.json or metadata.rb file if not given as `--name`.
17
37
  * Use `--name` and `--category`, but keep `--cookbook_name` and `--cookbook_category` as deprecated aliases.
18
38
 
19
39
  ### cloudfoundry
40
+
20
41
  * Accept `--v3` in order to use the `v3-push` command.
21
42
 
22
43
  ### codedeploy
44
+
23
45
  * Accept `--file_exist_behavior` in order to specify how to handle files that already exist in a deployment target location.
24
46
 
25
47
  ### elasticbeanstalk
48
+
26
49
  * Accept `--label` and `--description` in order to define these attributes.
27
50
  * Remove non-printable unicode chars from the version description.
28
51
  * Accept `--debug` in order to list files added to the zip archive.
29
52
  * Honor `.ebignore` in order to exclude files from being added to the zip file.
30
53
 
31
54
  ### engineyard
55
+
32
56
  * Use `ey-core` as CLI tooling.
33
57
 
34
58
  ### firebase
59
+
35
60
  * Accept `--only` in order to restrict the resources to deploy.
36
61
  * Accpet `--force` in order to delete functions missing from the current working directory.
37
62
  * Add `node_modules/.bin` to the `PATH` in case users have `firebase` in that directory.
38
63
 
39
64
  ### gae
65
+
40
66
  * Accept multiple values on on `--config`.
41
67
 
42
68
  ### hackage
69
+
43
70
  * Accept `--publish` in order to publish a package.
44
71
 
45
72
  ### lambda
73
+
46
74
  * Accept `--layers` to deploy function layers.
47
75
  * Do not require a role and handler name when functions are only being updated.
48
76
  * Use the correct handler name separators for dotnet, go, and java runtimes.
49
77
 
50
78
  ### npm
79
+
51
80
  * Accept `--registry` in order to specify the target registry.
52
81
  * Accept `--src` in order to specify a directory or tarball to publish.
53
82
  * Accept `auth` as an `--auth_method` in order to force writing the token to `_auth` in `~/.npmrc`.
54
83
 
55
84
  ### pages
85
+
56
86
  * Accept a `--deploy_key` as an alternative to the GitHub token (expects a path to a file).
57
87
  * Accept a commit message on `--commit_message`, allow interpolating variables (e.g. as `$TRAVIS_BUILD_NUMBER`).
58
88
  * Check if the target branch already exists and preserves git history by default. `--no-keep_history` can be passed in order to erase history on the target branch.
@@ -60,14 +90,17 @@
60
90
  * Add an alternative strategy for deploying via GitHub's pages HTTP API
61
91
 
62
92
  ### pypi
93
+
63
94
  * Accept `--no-remove_build_dir` in order to skip removing the build dir (`./dist`).
64
95
  * Run `twine check dist/*` by default, and accept `--no-twine_check` for opting out.
65
96
 
66
97
  ### releases
98
+
67
99
  * Accept a path to a file containing release notes on `--release_notes_file`.
68
100
  * Use `--release_notes` for passing the release notes content, keep `--body` as a deprecated alias.
69
101
 
70
102
  ### s3
103
+
71
104
  * Accept `--no-overwrite` in order to not overwrite existing files.
72
105
  * Accept `--force_path_style` in order to use the bucket name on the path, rather than the subcomain
73
106
  * Print out dots instead of filenames by default, and accept `--verbose` for printing out all filenames uploaded.
@@ -1,13 +1,7 @@
1
- PATH
2
- remote: ../../cl
3
- specs:
4
- cl (1.1.1)
5
- regstry (~> 1.0.3)
6
-
7
1
  PATH
8
2
  remote: .
9
3
  specs:
10
- dpl (2.0.0.alpha.1)
4
+ dpl (2.0.0.alpha.4)
11
5
  cl (~> 1.0)
12
6
 
13
7
  GEM
@@ -18,6 +12,9 @@ GEM
18
12
  awesome_print (1.8.0)
19
13
  aws-eventstream (1.0.3)
20
14
  aws-partitions (1.203.0)
15
+ aws-sdk-cloudformation (1.25.0)
16
+ aws-sdk-core (~> 3, >= 3.61.1)
17
+ aws-sigv4 (~> 1.1)
21
18
  aws-sdk-codedeploy (1.26.0)
22
19
  aws-sdk-core (~> 3, >= 3.61.1)
23
20
  aws-sigv4 (~> 1.1)
@@ -89,6 +86,8 @@ GEM
89
86
  rack (~> 2.0)
90
87
  uuidtools (~> 2.1)
91
88
  cistern (0.12.3)
89
+ cl (1.1.3)
90
+ regstry (~> 1.0.3)
92
91
  coderay (1.1.2)
93
92
  colorize (0.8.1)
94
93
  cookiejar (0.3.3)
@@ -177,6 +176,9 @@ GEM
177
176
  fuzzyurl (0.9.0)
178
177
  gems (1.1.1)
179
178
  json
179
+ gleis (0.6.2)
180
+ rest-client (~> 2.0.0)
181
+ thor (~> 0.20.0)
180
182
  hashdiff (1.0.0)
181
183
  hashie (3.6.0)
182
184
  hiera (3.5.0)
@@ -297,6 +299,7 @@ GEM
297
299
  rspec-its
298
300
  specinfra (~> 2.72)
299
301
  sfl (2.3)
302
+ sh_vars (1.0.2)
300
303
  simplecov (0.16.1)
301
304
  docile (~> 1.1)
302
305
  json (>= 1.8, < 3)
@@ -334,13 +337,13 @@ PLATFORMS
334
337
  ruby
335
338
 
336
339
  DEPENDENCIES
340
+ aws-sdk-cloudformation (~> 1.0)
337
341
  aws-sdk-codedeploy (~> 1.0)
338
342
  aws-sdk-elasticbeanstalk (~> 1.0)
339
343
  aws-sdk-lambda (~> 1.0)
340
344
  aws-sdk-opsworks (~> 1.0)
341
345
  aws-sdk-s3 (~> 1.0)
342
346
  chef (~> 12.0)
343
- cl!
344
347
  coveralls
345
348
  dpl!
346
349
  ey-core (~> 3.5)
@@ -348,6 +351,7 @@ DEPENDENCIES
348
351
  fog-core (= 2.1.0)
349
352
  fog-rackspace (~> 0.1.6)
350
353
  gems (~> 1.1.1)
354
+ gleis (~> 0.6.0)
351
355
  json
352
356
  mime-types (~> 3.2.2)
353
357
  multipart-post (~> 2.0.0)
@@ -364,6 +368,7 @@ DEPENDENCIES
364
368
  rendezvous (~> 0.1.3)
365
369
  rspec
366
370
  rubyzip (~> 1.2.2)
371
+ sh_vars (~> 1.0.2)
367
372
  webmock
368
373
 
369
374
  RUBY VERSION
data/NOTES.md CHANGED
@@ -67,80 +67,7 @@ x document Cmd methods
67
67
  x revisit README and CONTRIBUTING
68
68
  x Make sure failed deployments always fail the build starting with dpl 2.0
69
69
 
70
- - amend and pr sf-ey-core
71
- - amend and pr sf-cookbook-name (ports #968)
72
- - amend and pr sf-s3-file-specific-opts (ports #958)
73
- - amend and pr sf-twine-check (see #944)
74
- - amend and pr sf-s3-verbose (ports #882)
75
- - amend and pr sf-aws-sdk-v3 (ports #863)
76
- - amend and pr sf-pypi-upload-docs (see #835)
77
- - amend and pr sf-gae-configs (see #829)
78
- - amend and pr sf-script-multi (see #673)
79
- - amend and pr sf-releases-release-notes (see #155)
80
- - amend and pr sf-lambda-layers (see #933)
81
-
82
- https://github.com/travis-ci/dpl/pull/1060 through https://github.com/travis-ci/dpl/pull/1070
83
-
84
- ported PRs:
85
-
86
- - https://github.com/travis-ci/dpl/pull/1058 (adds Convox)
87
- - https://github.com/travis-ci/dpl/pull/1056 (adds Gleis)
88
- - https://github.com/travis-ci/dpl/pull/1055 (adds Tsuru)
89
- - https://github.com/travis-ci/dpl/pull/1023
90
- - https://github.com/travis-ci/dpl/pull/1019
91
- - https://github.com/travis-ci/dpl/pull/987
92
- - https://github.com/travis-ci/dpl/pull/980
93
- - https://github.com/travis-ci/dpl/pull/970 (adds Azure Storage)
94
- - https://github.com/travis-ci/dpl/pull/963
95
- - https://github.com/travis-ci/dpl/pull/951 (adds cloudformation, needs more tests)
96
- - https://github.com/travis-ci/dpl/pull/950
97
- - https://github.com/travis-ci/dpl/pull/949
98
- - https://github.com/travis-ci/dpl/pull/938
99
- - https://github.com/travis-ci/dpl/pull/920 (adds AWS ECR)
100
- - https://github.com/travis-ci/dpl/pull/824
101
- - https://github.com/travis-ci/dpl/pull/884
102
- - https://github.com/travis-ci/dpl/pull/875
103
- - https://github.com/travis-ci/dpl/pull/860
104
- - https://github.com/travis-ci/dpl/pull/856
105
- - https://github.com/travis-ci/dpl/pull/849
106
- - https://github.com/travis-ci/dpl/pull/844
107
- - https://github.com/travis-ci/dpl/pull/827
108
- - https://github.com/travis-ci/dpl/pull/795 (adds Zeit now)
109
- - https://github.com/travis-ci/dpl/pull/758
110
- - https://github.com/travis-ci/dpl/pull/754
111
- - https://github.com/travis-ci/dpl/pull/713 (double check with Hiro and implementor)
112
- - https://github.com/travis-ci/dpl/pull/695
113
- - https://github.com/travis-ci/dpl/pull/600
114
- - https://github.com/travis-ci/dpl/pull/593
115
-
116
- already implemented:
117
-
118
- - https://github.com/travis-ci/dpl/pull/1006
119
- - https://github.com/travis-ci/dpl/pull/966
120
- - https://github.com/travis-ci/dpl/pull/959
121
- - https://github.com/travis-ci/dpl/pull/943
122
- - https://github.com/travis-ci/dpl/pull/860
123
- - https://github.com/travis-ci/dpl/pull/700
124
- - https://github.com/travis-ci/dpl/pull/623 (double check with Hiro)
125
- - https://github.com/travis-ci/dpl/pull/569
126
- - https://github.com/travis-ci/dpl/pull/529
127
-
128
- check with implementors:
129
-
130
- - https://github.com/travis-ci/dpl/pull/720
131
-
132
- outdated:
133
-
134
- - https://github.com/travis-ci/dpl/pull/1014
135
- - https://github.com/travis-ci/dpl/pull/1012 (double check with Hiro)
136
- - https://github.com/travis-ci/dpl/pull/1000 (double check with Hiro)
137
- - https://github.com/travis-ci/dpl/pull/974 (double check with Hiro)
138
- - https://github.com/travis-ci/dpl/pull/940
139
-
140
- not sure:
141
-
142
- - https://github.com/travis-ci/dpl/pull/978 (check with Hiro)
143
-
70
+ - PR sf-datapipeline
144
71
 
145
72
  - add a DSL for moving files out of the way, and moving them back later, e.g. gcs /etc/boto.cfg
146
73
  - start a CHANGELOG.md?
data/README.md CHANGED
@@ -95,7 +95,7 @@ the following maturity levels, according to the given criteria:
95
95
  Dpl supports the following providers:
96
96
 
97
97
  * [Anynines](#anynines)
98
- * [Atlas](#atlas)
98
+ * [AWS CloudFormation](#aws-cloudformation)
99
99
  * [AWS Code Deploy](#aws-code-deploy)
100
100
  * [AWS Elastic Beanstalk](#aws-elastic-beanstalk)
101
101
  * [AWS Lambda](#aws-lambda)
@@ -110,11 +110,14 @@ Dpl supports the following providers:
110
110
  * [Cloud Files](#cloud-files)
111
111
  * [Cloud Foundry](#cloud-foundry)
112
112
  * [Cloud66](#cloud66)
113
+ * [Convox](#convox)
113
114
  * [Datica](#datica)
114
115
  * [Engineyard](#engineyard)
115
116
  * [Firebase](#firebase)
116
117
  * [GitHub Pages](#github-pages)
118
+ * [GitHub Pages (API)](#github-pages-api-)
117
119
  * [GitHub Releases](#github-releases)
120
+ * [Gleis](#gleis)
118
121
  * [Google App Engine](#google-app-engine)
119
122
  * [Google Cloud Store](#google-cloud-store)
120
123
  * [Hackage](#hackage)
@@ -139,6 +142,8 @@ Dpl supports the following providers:
139
142
 
140
143
  ### Anynines
141
144
 
145
+ Support for deployments to Anynines is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
146
+
142
147
  ```
143
148
  Usage: dpl anynines [options]
144
149
 
@@ -150,8 +155,6 @@ Description:
150
155
 
151
156
  tbd
152
157
 
153
- Support for deployments to Anynines is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
154
-
155
158
  Options:
156
159
 
157
160
  --username USER anynines username (type: string, required: true)
@@ -166,7 +169,7 @@ Common Options:
166
169
 
167
170
  --run CMD Command to execute after the deployment finished successfully (type: array
168
171
  (string, can be given multiple times))
169
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
172
+ --cleanup Skip cleaning up build artifacts before the deployment
170
173
  --help Get help on this command
171
174
 
172
175
  Examples:
@@ -175,53 +178,73 @@ Examples:
175
178
  dpl anynines --username user --password pass --organization org --space space --app_name app
176
179
  ```
177
180
 
178
- ### Atlas
181
+ Options can be given via env vars if prefixed with `ANYNINES_`. E.g. the option `--password` can be
182
+ given as `ANYNINES_PASSWORD=<password>`.
183
+
184
+ ### AWS CloudFormation
185
+
186
+ Support for deployments to AWS CloudFormation is in **development**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
179
187
 
180
188
  ```
181
- Usage: dpl atlas [options]
189
+ Usage: dpl cloudformation [options]
182
190
 
183
191
  Summary:
184
192
 
185
- Atlas deployment provider
193
+ AWS CloudFormation deployment provider
186
194
 
187
195
  Description:
188
196
 
189
197
  tbd
190
198
 
191
- Support for deployments to Atlas is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
192
-
193
199
  Options:
194
200
 
195
- --app APP The Atlas application to upload to (type: string, required: true)
196
- --token TOKEN The Atlas API token (type: string, required: true)
197
- --paths PATH Files or directories to upload (type: array (string, can be given multiple
198
- times), default: ["."])
199
- --address ADDR The address of the Atlas server (type: string)
200
- --include GLOB Glob pattern of files or directories to include (type: array (string, can be
201
- given multiple times))
202
- --exclude GLOB Glob pattern of files or directories to exclude (type: array (string, can be
203
- given multiple times))
204
- --metadata DATA Arbitrary key=value (string) metadata to be sent with the upload (type: array
205
- (string, can be given multiple times))
206
- --[no-]vcs Get lists of files to exclude and include from a VCS (Git, Mercurial or SVN)
207
- --args ARGS Args to pass to the atlas-upload CLI (type: string)
208
- --[no-]debug Turn on debug output
201
+ --access_key_id ID AWS Access Key ID (type: string, required: true)
202
+ --secret_access_key KEY AWS Secret Key (type: string, required: true)
203
+ --region REGION AWS Region to deploy to (type: string, default: us-east-1)
204
+ --template STR CloudFormation template file (type: string, required: true, note: can be either
205
+ a local path or an S3 URL)
206
+ --stack_name NAME CloudFormation Stack Name. (type: string, required: true)
207
+ --stack_name_prefix STR CloudFormation Stack Name Prefix. (type: string)
208
+ --[no-]promote Deploy changes (default: true, note: otherwise a change set is created)
209
+ --role_arn ARN AWS Role ARN (type: string)
210
+ --sts_assume_role ARN AWS Role ARN for cross account deployments (assumed by travis using given AWS
211
+ credentials). (type: string)
212
+ --capabilities STR CloudFormation allowed capabilities (type: array (string, can be given multiple
213
+ times), known values: CAPABILITY_IAM, CAPABILITY_NAMED_IAM,
214
+ CAPABILITY_AUTO_EXPAND, see:
215
+ https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStack.html)
216
+ --[no-]wait Wait for CloutFormation to finish the stack creation and update (default: true)
217
+ --wait_timeout SEC How many seconds to wait for stack creation and update. (type: integer, default:
218
+ 3600)
219
+ --create_timeout SEC How many seconds to wait before the stack status becomes CREATE_FAILED (type:
220
+ integer, default: 3600, note: valid only when creating a stack)
221
+ --session_token STR AWS Session Access Token if using STS assume role (type: string, note: Not
222
+ recommended on CI/CD)
223
+ --parameters STR key=value pairs or ENV var names (type: array (string, can be given multiple
224
+ times))
225
+ --output_file PATH Path to output file to store CloudFormation outputs to (type: string)
209
226
 
210
227
  Common Options:
211
228
 
212
- --run CMD Command to execute after the deployment finished successfully (type: array
213
- (string, can be given multiple times))
214
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
215
- --help Get help on this command
229
+ --run CMD Command to execute after the deployment finished successfully (type: array
230
+ (string, can be given multiple times))
231
+ --cleanup Skip cleaning up build artifacts before the deployment
232
+ --help Get help on this command
216
233
 
217
234
  Examples:
218
235
 
219
- dpl atlas --app app --token token
220
- dpl atlas --app app --token token --paths path --address addr --include glob
236
+ dpl cloudformation --access_key_id id --secret_access_key key --template str --stack_name name
237
+ dpl cloudformation --access_key_id id --secret_access_key key --template str --stack_name name --region region
221
238
  ```
222
239
 
240
+ Options can be given via env vars if prefixed with `[AWS_|CLOUDFORMATION_]`. E.g. the option
241
+ `--access_key_id` can be given as `AWS_ACCESS_KEY_ID=<access_key_id>` or
242
+ `CLOUDFORMATION_ACCESS_KEY_ID=<access_key_id>`.
243
+
223
244
  ### AWS Code Deploy
224
245
 
246
+ Support for deployments to AWS Code Deploy is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
247
+
225
248
  ```
226
249
  Usage: dpl codedeploy [options]
227
250
 
@@ -233,8 +256,6 @@ Description:
233
256
 
234
257
  tbd
235
258
 
236
- Support for deployments to AWS Code Deploy is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
237
-
238
259
  Options:
239
260
 
240
261
  --access_key_id ID AWS access key (type: string, required: true)
@@ -259,7 +280,7 @@ Common Options:
259
280
 
260
281
  --run CMD Command to execute after the deployment finished successfully (type: array
261
282
  (string, can be given multiple times))
262
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
283
+ --cleanup Skip cleaning up build artifacts before the deployment
263
284
  --help Get help on this command
264
285
 
265
286
  Examples:
@@ -268,8 +289,14 @@ Examples:
268
289
  dpl codedeploy --access_key_id id --secret_access_key key --application name --deployment_group group --revision_type s3
269
290
  ```
270
291
 
292
+ Options can be given via env vars if prefixed with `[AWS_|CODEDEPLOY_]`. E.g. the option
293
+ `--access_key_id` can be given as `AWS_ACCESS_KEY_ID=<access_key_id>` or
294
+ `CODEDEPLOY_ACCESS_KEY_ID=<access_key_id>`.
295
+
271
296
  ### AWS Elastic Beanstalk
272
297
 
298
+ 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
+
273
300
  ```
274
301
  Usage: dpl elasticbeanstalk [options]
275
302
 
@@ -281,8 +308,6 @@ Description:
281
308
 
282
309
  tbd
283
310
 
284
- Support for deployments to AWS Elastic Beanstalk is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
285
-
286
311
  Options:
287
312
 
288
313
  --access_key_id ID AWS Access Key ID (type: string, required: true)
@@ -304,7 +329,7 @@ Common Options:
304
329
 
305
330
  --run CMD Command to execute after the deployment finished successfully (type: array
306
331
  (string, can be given multiple times))
307
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
332
+ --cleanup Skip cleaning up build artifacts before the deployment
308
333
  --help Get help on this command
309
334
 
310
335
  Examples:
@@ -313,8 +338,14 @@ Examples:
313
338
  dpl elasticbeanstalk --access_key_id id --secret_access_key key --env name --bucket name --region region
314
339
  ```
315
340
 
341
+ Options can be given via env vars if prefixed with `[AWS_|ELASTIC_BEANSTALK_]`. E.g. the option
342
+ `--access_key_id` can be given as `AWS_ACCESS_KEY_ID=<access_key_id>` or
343
+ `ELASTIC_BEANSTALK_ACCESS_KEY_ID=<access_key_id>`.
344
+
316
345
  ### AWS Lambda
317
346
 
347
+ Support for deployments to AWS Lambda is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
348
+
318
349
  ```
319
350
  Usage: dpl lambda [options]
320
351
 
@@ -326,8 +357,6 @@ Description:
326
357
 
327
358
  tbd
328
359
 
329
- Support for deployments to AWS Lambda is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
330
-
331
360
  Options:
332
361
 
333
362
  --access_key_id ID AWS access key id (type: string, required: true)
@@ -373,7 +402,7 @@ Common Options:
373
402
 
374
403
  --run CMD Command to execute after the deployment finished successfully (type: array
375
404
  (string, can be given multiple times))
376
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
405
+ --cleanup Skip cleaning up build artifacts before the deployment
377
406
  --help Get help on this command
378
407
 
379
408
  Examples:
@@ -382,8 +411,14 @@ Examples:
382
411
  dpl lambda --access_key_id id --secret_access_key key --function_name func --region region --role role
383
412
  ```
384
413
 
414
+ Options can be given via env vars if prefixed with `[AWS_|LAMBDA_]`. E.g. the option
415
+ `--access_key_id` can be given as `AWS_ACCESS_KEY_ID=<access_key_id>` or
416
+ `LAMBDA_ACCESS_KEY_ID=<access_key_id>`.
417
+
385
418
  ### AWS OpsWorks
386
419
 
420
+ Support for deployments to AWS OpsWorks is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
421
+
387
422
  ```
388
423
  Usage: dpl opsworks [options]
389
424
 
@@ -395,8 +430,6 @@ Description:
395
430
 
396
431
  tbd
397
432
 
398
- Support for deployments to AWS OpsWorks is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
399
-
400
433
  Options:
401
434
 
402
435
  --access_key_id ID AWS access key id (type: string, required: true)
@@ -416,7 +449,7 @@ Common Options:
416
449
 
417
450
  --run CMD Command to execute after the deployment finished successfully (type: array
418
451
  (string, can be given multiple times))
419
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
452
+ --cleanup Skip cleaning up build artifacts before the deployment
420
453
  --help Get help on this command
421
454
 
422
455
  Examples:
@@ -425,8 +458,14 @@ Examples:
425
458
  dpl opsworks --access_key_id id --secret_access_key key --app_id app --region region --instance_ids id
426
459
  ```
427
460
 
461
+ Options can be given via env vars if prefixed with `[AWS_|OPSWORKS_]`. E.g. the option
462
+ `--access_key_id` can be given as `AWS_ACCESS_KEY_ID=<access_key_id>` or
463
+ `OPSWORKS_ACCESS_KEY_ID=<access_key_id>`.
464
+
428
465
  ### AWS S3
429
466
 
467
+ Support for deployments to AWS S3 is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
468
+
430
469
  ```
431
470
  Usage: dpl s3 [options]
432
471
 
@@ -438,8 +477,6 @@ Description:
438
477
 
439
478
  tbd
440
479
 
441
- Support for deployments to AWS S3 is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
442
-
443
480
  Options:
444
481
 
445
482
  --access_key_id ID AWS access key id (type: string, required: true)
@@ -471,13 +508,14 @@ Options:
471
508
  --max_threads NUM The number of threads to use for S3 file uploads (type: integer, default: 5,
472
509
  max: 15)
473
510
  --[no-]overwrite Whether or not to overwrite existing files (default: true)
511
+ --[no-]force_path_style Whether to force keeping the bucket name on the path
474
512
  --[no-]verbose Be verbose about uploading files
475
513
 
476
514
  Common Options:
477
515
 
478
516
  --run CMD Command to execute after the deployment finished successfully (type: array
479
517
  (string, can be given multiple times))
480
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
518
+ --cleanup Skip cleaning up build artifacts before the deployment
481
519
  --help Get help on this command
482
520
 
483
521
  Examples:
@@ -486,8 +524,13 @@ Examples:
486
524
  dpl s3 --access_key_id id --secret_access_key key --bucket bucket --region region --endpoint url
487
525
  ```
488
526
 
527
+ Options can be given via env vars if prefixed with `[AWS_|S3_]`. E.g. the option `--access_key_id`
528
+ can be given as `AWS_ACCESS_KEY_ID=<access_key_id>` or `S3_ACCESS_KEY_ID=<access_key_id>`.
529
+
489
530
  ### Azure Web Apps
490
531
 
532
+ Support for deployments to Azure Web Apps is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
533
+
491
534
  ```
492
535
  Usage: dpl azure_web_apps [options]
493
536
 
@@ -499,8 +542,6 @@ Description:
499
542
 
500
543
  tbd
501
544
 
502
- Support for deployments to Azure Web Apps is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
503
-
504
545
  Options:
505
546
 
506
547
  --site SITE Web App name (e.g. myapp in myapp.azurewebsites.net) (type: string, required:
@@ -515,7 +556,7 @@ Common Options:
515
556
 
516
557
  --run CMD Command to execute after the deployment finished successfully (type: array
517
558
  (string, can be given multiple times))
518
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
559
+ --cleanup Skip cleaning up build artifacts before the deployment
519
560
  --help Get help on this command
520
561
 
521
562
  Examples:
@@ -524,8 +565,13 @@ Examples:
524
565
  dpl azure_web_apps --site site --username name --password pass --slot slot --verbose
525
566
  ```
526
567
 
568
+ Options can be given via env vars if prefixed with `AZURE_WA_`. E.g. the option `--password` can be
569
+ given as `AZURE_WA_PASSWORD=<password>`.
570
+
527
571
  ### Bintray
528
572
 
573
+ Support for deployments to Bintray is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
574
+
529
575
  ```
530
576
  Usage: dpl bintray [options]
531
577
 
@@ -537,8 +583,6 @@ Description:
537
583
 
538
584
  tbd
539
585
 
540
- Support for deployments to Bintray is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
541
-
542
586
  Options:
543
587
 
544
588
  --user USER Bintray user (type: string, required: true)
@@ -550,7 +594,7 @@ Common Options:
550
594
 
551
595
  --run CMD Command to execute after the deployment finished successfully (type: array
552
596
  (string, can be given multiple times))
553
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
597
+ --cleanup Skip cleaning up build artifacts before the deployment
554
598
  --help Get help on this command
555
599
 
556
600
  Examples:
@@ -559,8 +603,13 @@ Examples:
559
603
  dpl bintray --user user --key key --file file --passphrase phrase --run cmd
560
604
  ```
561
605
 
606
+ Options can be given via env vars if prefixed with `BINTRAY_`. E.g. the option `--key` can be given
607
+ as `BINTRAY_KEY=<key>`.
608
+
562
609
  ### Bluemix Cloud Foundry
563
610
 
611
+ Support for deployments to Bluemix Cloud Foundry is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
612
+
564
613
  ```
565
614
  Usage: dpl bluemixcloudfoundry [options]
566
615
 
@@ -572,8 +621,6 @@ Description:
572
621
 
573
622
  tbd
574
623
 
575
- Support for deployments to Bluemix Cloud Foundry is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
576
-
577
624
  Options:
578
625
 
579
626
  --username USER Bluemix username (type: string, required: true)
@@ -592,7 +639,7 @@ Common Options:
592
639
 
593
640
  --run CMD Command to execute after the deployment finished successfully (type: array
594
641
  (string, can be given multiple times))
595
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
642
+ --cleanup Skip cleaning up build artifacts before the deployment
596
643
  --help Get help on this command
597
644
 
598
645
  Examples:
@@ -601,8 +648,13 @@ Examples:
601
648
  dpl bluemixcloudfoundry --username user --password pass --organization org --space space --region ng
602
649
  ```
603
650
 
651
+ Options can be given via env vars if prefixed with `CLOUDFOUNDRY_`. E.g. the option `--password` can
652
+ be given as `CLOUDFOUNDRY_PASSWORD=<password>`.
653
+
604
654
  ### Boxfuse
605
655
 
656
+ Support for deployments to Boxfuse is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
657
+
606
658
  ```
607
659
  Usage: dpl boxfuse [options]
608
660
 
@@ -614,8 +666,6 @@ Description:
614
666
 
615
667
  tbd
616
668
 
617
- Support for deployments to Boxfuse is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
618
-
619
669
  Options:
620
670
 
621
671
  --user USER type: string, required: true
@@ -631,7 +681,7 @@ Common Options:
631
681
 
632
682
  --run CMD Command to execute after the deployment finished successfully (type: array
633
683
  (string, can be given multiple times))
634
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
684
+ --cleanup Skip cleaning up build artifacts before the deployment
635
685
  --help Get help on this command
636
686
 
637
687
  Examples:
@@ -640,8 +690,13 @@ Examples:
640
690
  dpl boxfuse --user user --secret secret --config_file file --payload payload --app app
641
691
  ```
642
692
 
693
+ Options can be given via env vars if prefixed with `BOXFUSE_`. E.g. the option `--secret` can be
694
+ given as `BOXFUSE_SECRET=<secret>`.
695
+
643
696
  ### Cargo
644
697
 
698
+ Support for deployments to Cargo is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
699
+
645
700
  ```
646
701
  Usage: dpl cargo [options]
647
702
 
@@ -653,18 +708,16 @@ Description:
653
708
 
654
709
  tbd
655
710
 
656
- Support for deployments to Cargo is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
657
-
658
711
  Options:
659
712
 
660
- --token TOKEN Cargo registry API token (type: string, required: true)
713
+ --token TOKEN Cargo registry API token (type: string, required: true)
661
714
 
662
715
  Common Options:
663
716
 
664
- --run CMD Command to execute after the deployment finished successfully (type: array
665
- (string, can be given multiple times))
666
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
667
- --help Get help on this command
717
+ --run CMD Command to execute after the deployment finished successfully (type: array
718
+ (string, can be given multiple times))
719
+ --cleanup Skip cleaning up build artifacts before the deployment
720
+ --help Get help on this command
668
721
 
669
722
  Examples:
670
723
 
@@ -672,8 +725,13 @@ Examples:
672
725
  dpl cargo --token token --run cmd --cleanup
673
726
  ```
674
727
 
728
+ Options can be given via env vars if prefixed with `CARGO_`. E.g. the option `--token` can be given
729
+ as `CARGO_TOKEN=<token>`.
730
+
675
731
  ### Chef Supermarket
676
732
 
733
+ Support for deployments to Chef Supermarket is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
734
+
677
735
  ```
678
736
  Usage: dpl chef_supermarket [options]
679
737
 
@@ -685,23 +743,22 @@ Description:
685
743
 
686
744
  tbd
687
745
 
688
- Support for deployments to Chef Supermarket is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
689
-
690
746
  Options:
691
747
 
692
748
  --user_id ID Chef Supermarket user name (type: string, required: true)
693
749
  --client_key KEY Client API key file name (type: string, required: true)
694
- --name NAME Cookbook name (type: string, alias: cookbook_name, note: defaults to the name
695
- given in metadata.json or metadata.rb)
750
+ --name NAME Cookbook name (type: string, alias: cookbook_name (deprecated, please use name),
751
+ note: defaults to the name given in metadata.json or metadata.rb)
696
752
  --category CAT Cookbook category in Supermarket (type: string, required: true, alias:
697
- cookbook_category, see: https://docs.getchef.com/knife_cookbook_site.html#id12)
753
+ cookbook_category (deprecated, please use category), see:
754
+ https://docs.getchef.com/knife_cookbook_site.html#id12)
698
755
  --dir DIR Directory containing the cookbook (type: string, default: .)
699
756
 
700
757
  Common Options:
701
758
 
702
759
  --run CMD Command to execute after the deployment finished successfully (type: array
703
760
  (string, can be given multiple times))
704
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
761
+ --cleanup Skip cleaning up build artifacts before the deployment
705
762
  --help Get help on this command
706
763
 
707
764
  Examples:
@@ -710,8 +767,12 @@ Examples:
710
767
  dpl chef_supermarket --user_id id --client_key key --category cat --name name --dir dir
711
768
  ```
712
769
 
770
+ Options can be given via env vars if prefixed with `CHEF_`.
771
+
713
772
  ### Cloud Files
714
773
 
774
+ Support for deployments to Cloud Files is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
775
+
715
776
  ```
716
777
  Usage: dpl cloudfiles [options]
717
778
 
@@ -723,8 +784,6 @@ Description:
723
784
 
724
785
  tbd
725
786
 
726
- Support for deployments to Cloud Files is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
727
-
728
787
  Options:
729
788
 
730
789
  --username USER Rackspace username (type: string, required: true)
@@ -740,7 +799,7 @@ Common Options:
740
799
 
741
800
  --run CMD Command to execute after the deployment finished successfully (type: array
742
801
  (string, can be given multiple times))
743
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
802
+ --cleanup Skip cleaning up build artifacts before the deployment
744
803
  --help Get help on this command
745
804
 
746
805
  Examples:
@@ -749,8 +808,13 @@ Examples:
749
808
  dpl cloudfiles --username user --api_key key --region ord --container name --glob glob
750
809
  ```
751
810
 
811
+ Options can be given via env vars if prefixed with `CLOUDFILES_`. E.g. the option `--api_key` can be
812
+ given as `CLOUDFILES_API_KEY=<api_key>`.
813
+
752
814
  ### Cloud Foundry
753
815
 
816
+ Support for deployments to Cloud Foundry is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
817
+
754
818
  ```
755
819
  Usage: dpl cloudfoundry [options]
756
820
 
@@ -762,8 +826,6 @@ Description:
762
826
 
763
827
  tbd
764
828
 
765
- Support for deployments to Cloud Foundry is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
766
-
767
829
  Options:
768
830
 
769
831
  --username USER Cloud Foundry username (type: string, required: true)
@@ -781,7 +843,7 @@ Common Options:
781
843
 
782
844
  --run CMD Command to execute after the deployment finished successfully (type: array
783
845
  (string, can be given multiple times))
784
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
846
+ --cleanup Skip cleaning up build artifacts before the deployment
785
847
  --help Get help on this command
786
848
 
787
849
  Examples:
@@ -789,8 +851,13 @@ Examples:
789
851
  dpl cloudfoundry --username user --password pass --organization org --space space --api url
790
852
  ```
791
853
 
854
+ Options can be given via env vars if prefixed with `CLOUDFOUNDRY_`. E.g. the option `--password` can
855
+ be given as `CLOUDFOUNDRY_PASSWORD=<password>`.
856
+
792
857
  ### Cloud66
793
858
 
859
+ Support for deployments to Cloud66 is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
860
+
794
861
  ```
795
862
  Usage: dpl cloud66 [options]
796
863
 
@@ -802,8 +869,6 @@ Description:
802
869
 
803
870
  tbd
804
871
 
805
- Support for deployments to Cloud66 is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
806
-
807
872
  Options:
808
873
 
809
874
  --redeployment_hook URL The redeployment hook URL (type: string, required: true)
@@ -812,7 +877,7 @@ Common Options:
812
877
 
813
878
  --run CMD Command to execute after the deployment finished successfully (type: array
814
879
  (string, can be given multiple times))
815
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
880
+ --cleanup Skip cleaning up build artifacts before the deployment
816
881
  --help Get help on this command
817
882
 
818
883
  Examples:
@@ -821,8 +886,58 @@ Examples:
821
886
  dpl cloud66 --redeployment_hook url --run cmd --cleanup
822
887
  ```
823
888
 
889
+ Options can be given via env vars if prefixed with `CLOUD66_`. E.g. the option `--redeployment_hook`
890
+ can be given as `CLOUD66_REDEPLOYMENT_HOOK=<redeployment_hook>`.
891
+
892
+ ### Convox
893
+
894
+ Support for deployments to Convox is in **development**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
895
+
896
+ ```
897
+ Usage: dpl convox [options]
898
+
899
+ Summary:
900
+
901
+ Convox deployment provider
902
+
903
+ Description:
904
+
905
+ tbd
906
+
907
+ Options:
908
+
909
+ --host HOST type: string, default: console.convox.com
910
+ --app APP type: string, required: true
911
+ --rack RACK type: string, required: true
912
+ --password PASS type: string, required: true
913
+ --install_url URL type: string, default: https://convox.com/cli/linux/convox
914
+ --[no-]update_cli
915
+ --[no-]create
916
+ --[no-]promote default: true
917
+ --env VARS type: array (string, can be given multiple times)
918
+ --env_file FILE type: string
919
+ --description STR type: string
920
+ --generation NUM type: integer, default: 2
921
+
922
+ Common Options:
923
+
924
+ --run CMD Command to execute after the deployment finished successfully (type: array
925
+ (string, can be given multiple times))
926
+ --cleanup Skip cleaning up build artifacts before the deployment
927
+ --help Get help on this command
928
+
929
+ Examples:
930
+
931
+ dpl convox --app app --rack rack --password pass
932
+ dpl convox --app app --rack rack --password pass --host host --install_url url
933
+ ```
934
+
935
+ Options can be given via env vars if prefixed with `CONVOX_`.
936
+
824
937
  ### Datica
825
938
 
939
+ Support for deployments to Datica is in **development**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
940
+
826
941
  ```
827
942
  Usage: dpl datica [options]
828
943
 
@@ -834,8 +949,6 @@ Description:
834
949
 
835
950
  tbd
836
951
 
837
- Support for deployments to Datica is in development. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
838
-
839
952
  Options:
840
953
 
841
954
  --target TARGET The git remote repository to deploy to (type: string, required: true)
@@ -845,7 +958,7 @@ Common Options:
845
958
 
846
959
  --run CMD Command to execute after the deployment finished successfully (type: array
847
960
  (string, can be given multiple times))
848
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
961
+ --cleanup Skip cleaning up build artifacts before the deployment
849
962
  --help Get help on this command
850
963
 
851
964
  Examples:
@@ -854,8 +967,12 @@ Examples:
854
967
  dpl datica --target target --path path --run cmd --cleanup
855
968
  ```
856
969
 
970
+ Options can be given via env vars if prefixed with `[CATALYZE_|DATICA_]`.
971
+
857
972
  ### Engineyard
858
973
 
974
+ Support for deployments to Engineyard is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
975
+
859
976
  ```
860
977
  Usage: dpl engineyard [options]
861
978
 
@@ -867,8 +984,6 @@ Description:
867
984
 
868
985
  tbd
869
986
 
870
- Support for deployments to Engineyard is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
871
-
872
987
  Options:
873
988
 
874
989
  Either api_key, or email and password are required.
@@ -885,7 +1000,7 @@ Common Options:
885
1000
 
886
1001
  --run CMD Command to execute after the deployment finished successfully (type: array
887
1002
  (string, can be given multiple times))
888
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1003
+ --cleanup Skip cleaning up build artifacts before the deployment
889
1004
  --help Get help on this command
890
1005
 
891
1006
  Examples:
@@ -895,8 +1010,13 @@ Examples:
895
1010
  dpl engineyard --api_key key --app app --env env --migrate cmd --account name
896
1011
  ```
897
1012
 
1013
+ Options can be given via env vars if prefixed with `[ENGINEYARD_|EY_]`. E.g. the option `--api_key`
1014
+ can be given as `ENGINEYARD_API_KEY=<api_key>` or `EY_API_KEY=<api_key>`.
1015
+
898
1016
  ### Firebase
899
1017
 
1018
+ Support for deployments to Firebase is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1019
+
900
1020
  ```
901
1021
  Usage: dpl firebase [options]
902
1022
 
@@ -908,8 +1028,6 @@ Description:
908
1028
 
909
1029
  tbd
910
1030
 
911
- Support for deployments to Firebase is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
912
-
913
1031
  Options:
914
1032
 
915
1033
  --token TOKEN Firebase CI access token (generate with firebase login:ci) (type: string,
@@ -925,7 +1043,7 @@ Common Options:
925
1043
 
926
1044
  --run CMD Command to execute after the deployment finished successfully (type: array
927
1045
  (string, can be given multiple times))
928
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1046
+ --cleanup Skip cleaning up build artifacts before the deployment
929
1047
  --help Get help on this command
930
1048
 
931
1049
  Examples:
@@ -934,10 +1052,15 @@ Examples:
934
1052
  dpl firebase --token token --project name --message msg --only services --force
935
1053
  ```
936
1054
 
1055
+ Options can be given via env vars if prefixed with `FIREBASE_`. E.g. the option `--token` can be
1056
+ given as `FIREBASE_TOKEN=<token>`.
1057
+
937
1058
  ### GitHub Pages
938
1059
 
1060
+ Support for deployments to GitHub Pages is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1061
+
939
1062
  ```
940
- Usage: dpl pages [options]
1063
+ Usage: dpl pages git [options]
941
1064
 
942
1065
  Summary:
943
1066
 
@@ -947,50 +1070,97 @@ Description:
947
1070
 
948
1071
  tbd
949
1072
 
950
- Support for deployments to GitHub Pages is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
951
-
952
1073
  Options:
953
1074
 
954
- Either github_token, or deploy_key are required.
1075
+ Either token, or deploy_key are required.
955
1076
 
956
- --github_token TOKEN GitHub oauth token with repo permission (type: string)
957
- --deploy_key KEY A base64-encoded, private deploy key with write access to the repository (type:
958
- string, note: RSA keys are too long to fit into a Travis CI secure variable, but
959
- ECDSA-521 fits, see:
960
- https://developer.github.com/v3/guides/managing-deploy-keys/#deploy-keys)
961
1077
  --repo SLUG Repo slug (type: string, default: repo slug)
1078
+ --token TOKEN GitHub oauth token with repo permission (type: string, alias: github_token)
1079
+ --deploy_key PATH Path to a file containing a private deploy key with write access to the
1080
+ repository (type: string, see:
1081
+ https://developer.github.com/v3/guides/managing-deploy-keys/#deploy-keys)
962
1082
  --target_branch BRANCH Branch to push force to (type: string, default: gh-pages)
963
1083
  --[no-]keep_history Create incremental commit instead of doing push force (default: true)
964
1084
  --commit_message MSG type: string, default: Deploy %{project_name} to %{url}:%{target_branch}
965
1085
  --[no-]allow_empty_commit Allow an empty commit to be created (requires: keep_history)
966
- --[no-]committer_from_gh Use the token's owner name and email for commit. Overrides the email and name
967
- options
968
1086
  --[no-]verbose Be verbose about the deploy process
969
1087
  --local_dir DIR Directory to push to GitHub Pages (type: string, default: .)
970
- --fqdn FQDN Writes your website's domain name to the CNAME file (type: string)
1088
+ --fqdn FQDN Write the given domain name to the CNAME file (type: string)
971
1089
  --project_name NAME Used in the commit message only (defaults to fqdn or the current repo slug)
972
1090
  (type: string)
973
- --email EMAIL Committer email (type: string, default: deploy@travis-ci.org)
974
- --name NAME Committer name (type: string, default: Deploy Bot)
1091
+ --name NAME Committer name (type: string, note: defaults to the current git commit author
1092
+ name)
1093
+ --email EMAIL Committer email (type: string, note: defaults to the current git commit author
1094
+ email)
1095
+ --[no-]committer_from_gh Use the token's owner name and email for the commit (requires: github_token)
975
1096
  --[no-]deployment_file Enable creation of a deployment-info file
976
- --github_url URL type: string, default: github.com
1097
+ --url URL type: string, alias: github_url, default: github.com
977
1098
 
978
1099
  Common Options:
979
1100
 
980
1101
  --run CMD Command to execute after the deployment finished successfully (type: array
981
1102
  (string, can be given multiple times))
982
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1103
+ --cleanup Skip cleaning up build artifacts before the deployment
983
1104
  --help Get help on this command
984
1105
 
985
1106
  Examples:
986
1107
 
987
- dpl pages --github_token token
988
- dpl pages --deploy_key key
989
- dpl pages --github_token token --repo slug --target_branch branch --keep_history --commit_message msg
1108
+ dpl pages git --token token
1109
+ dpl pages git --deploy_key path
1110
+ dpl pages git --token token --repo slug --target_branch branch --keep_history --commit_message msg
1111
+ ```
1112
+
1113
+ Options can be given via env vars if prefixed with `[GITHUB_|PAGES_]`. E.g. the option `--token` can
1114
+ be given as `GITHUB_TOKEN=<token>` or `PAGES_TOKEN=<token>`.
1115
+
1116
+ ### GitHub Pages (API)
1117
+
1118
+ Support for deployments to GitHub Pages (API) is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1119
+
1120
+ ```
1121
+ Usage: dpl pages api [options]
1122
+
1123
+ Summary:
1124
+
1125
+ GitHub Pages (API) deployment provider
1126
+
1127
+ Description:
1128
+
1129
+ This provider requests GitHub Pages build for the repository given by
1130
+ the `--repo` flag, or the current one, if the flag is not given.
1131
+ Note that `dpl` does not perform any check about the fitness of the request;
1132
+ it is assumed that the target repository (and the branch that GitHub Pages is
1133
+ configured to use) is ready for building.
1134
+ For example, if your GitHub Pages is configured to use `gh-pages` but the
1135
+ deployment is run on the `master` branch, you would have to ensure that the
1136
+ `gh-pages` would be updated accordingly during the build.
1137
+
1138
+ Options:
1139
+
1140
+ --repo SLUG GitHub repo slug (type: string, default: repo slug)
1141
+ --token TOKEN GitHub oauth token with repo permission (type: string, required: true, alias:
1142
+ github_token)
1143
+
1144
+ Common Options:
1145
+
1146
+ --run CMD Command to execute after the deployment finished successfully (type: array
1147
+ (string, can be given multiple times))
1148
+ --cleanup Skip cleaning up build artifacts before the deployment
1149
+ --help Get help on this command
1150
+
1151
+ Examples:
1152
+
1153
+ dpl pages api --token token
1154
+ dpl pages api --token token --repo slug --run cmd --cleanup
990
1155
  ```
991
1156
 
1157
+ Options can be given via env vars if prefixed with `[GITHUB_|PAGES_]`. E.g. the option `--token` can
1158
+ be given as `GITHUB_TOKEN=<token>` or `PAGES_TOKEN=<token>`.
1159
+
992
1160
  ### GitHub Releases
993
1161
 
1162
+ Support for deployments to GitHub Releases is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1163
+
994
1164
  ```
995
1165
  Usage: dpl releases [options]
996
1166
 
@@ -1002,8 +1172,6 @@ Description:
1002
1172
 
1003
1173
  tbd
1004
1174
 
1005
- Support for deployments to GitHub Releases is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1006
-
1007
1175
  Options:
1008
1176
 
1009
1177
  Either api_key, or user and password are required.
@@ -1012,9 +1180,9 @@ Options:
1012
1180
  --username LOGIN GitHub login name (type: string, alias: user)
1013
1181
  --password PASS GitHub password (type: string)
1014
1182
  --repo SLUG GitHub repo slug (type: string, default: repo slug)
1015
- --file FILE File to release to GitHub (type: array (string, can be given multiple times),
1016
- required: true)
1017
- --[no-]file_glob Interpret files as globs
1183
+ --file GLOB File or glob to release to GitHub (type: array (string, can be given multiple
1184
+ times), default: *)
1185
+ --[no-]file_glob Interpret files as globs (default: true)
1018
1186
  --[no-]overwrite Overwrite files with the same name
1019
1187
  --[no-]prerelease Identify the release as a prerelease
1020
1188
  --release_number NUM Release number (overide automatic release detection) (type: string)
@@ -1030,19 +1198,63 @@ Common Options:
1030
1198
 
1031
1199
  --run CMD Command to execute after the deployment finished successfully (type: array
1032
1200
  (string, can be given multiple times))
1033
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1201
+ --cleanup Skip cleaning up build artifacts before the deployment
1034
1202
  --help Get help on this command
1035
1203
 
1036
1204
  Examples:
1037
1205
 
1038
- dpl releases --file file --api_key token
1039
- dpl releases --file file --password pass
1040
- dpl releases --file file
1041
- dpl releases --file file --api_key token --username login --repo slug --file_glob
1206
+ dpl releases --api_key token
1207
+ dpl releases --password pass
1208
+ dpl releases --api_key token --username login --repo slug --file glob --file_glob
1209
+ ```
1210
+
1211
+ Options can be given via env vars if prefixed with `[GITHUB_|RELEASES_]`. E.g. the option
1212
+ `--api_key` can be given as `GITHUB_API_KEY=<api_key>` or `RELEASES_API_KEY=<api_key>`.
1213
+
1214
+ ### Gleis
1215
+
1216
+ Support for deployments to Gleis is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1217
+
1218
+ ```
1219
+ Usage: dpl gleis [options]
1220
+
1221
+ Summary:
1222
+
1223
+ Gleis deployment provider
1224
+
1225
+ Description:
1226
+
1227
+ tbd
1228
+
1229
+ Options:
1230
+
1231
+ --app APP Gleis application to upload to (type: string, default: repo name)
1232
+ --username NAME Gleis username (type: string, required: true)
1233
+ --password PASS Gleis password (type: string, required: true)
1234
+ --key_name NAME Name of the SSH deploy key pushed to Gleis (type: string, default:
1235
+ dpl_deploy_key)
1236
+ --[no-]verbose
1237
+
1238
+ Common Options:
1239
+
1240
+ --run CMD Command to execute after the deployment finished successfully (type: array
1241
+ (string, can be given multiple times))
1242
+ --cleanup Skip cleaning up build artifacts before the deployment
1243
+ --help Get help on this command
1244
+
1245
+ Examples:
1246
+
1247
+ dpl gleis --username name --password pass
1248
+ dpl gleis --username name --password pass --app app --key_name name --verbose
1042
1249
  ```
1043
1250
 
1251
+ Options can be given via env vars if prefixed with `GLEIS_`. E.g. the option `--password` can be
1252
+ given as `GLEIS_PASSWORD=<password>`.
1253
+
1044
1254
  ### Google App Engine
1045
1255
 
1256
+ Support for deployments to Google App Engine is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1257
+
1046
1258
  ```
1047
1259
  Usage: dpl gae [options]
1048
1260
 
@@ -1054,8 +1266,6 @@ Description:
1054
1266
 
1055
1267
  tbd
1056
1268
 
1057
- Support for deployments to Google App Engine is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1058
-
1059
1269
  Options:
1060
1270
 
1061
1271
  --project ID Project ID used to identify the project on Google Cloud (type: string, required:
@@ -1078,7 +1288,7 @@ Common Options:
1078
1288
 
1079
1289
  --run CMD Command to execute after the deployment finished successfully (type: array
1080
1290
  (string, can be given multiple times))
1081
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1291
+ --cleanup Skip cleaning up build artifacts before the deployment
1082
1292
  --help Get help on this command
1083
1293
 
1084
1294
  Examples:
@@ -1087,8 +1297,13 @@ Examples:
1087
1297
  dpl gae --project id --keyfile file --config file --version ver --verbosity level
1088
1298
  ```
1089
1299
 
1300
+ Options can be given via env vars if prefixed with
1301
+ `[CLOUDSDK_CORE|CLOUDSDK_CORE_|GAE|GAE_|GOOGLECLOUD|GOOGLECLOUD_]`.
1302
+
1090
1303
  ### Google Cloud Store
1091
1304
 
1305
+ Support for deployments to Google Cloud Store is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1306
+
1092
1307
  ```
1093
1308
  Usage: dpl gcs [options]
1094
1309
 
@@ -1100,8 +1315,6 @@ Description:
1100
1315
 
1101
1316
  tbd
1102
1317
 
1103
- Support for deployments to Google Cloud Store is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1104
-
1105
1318
  Options:
1106
1319
 
1107
1320
  --access_key_id ID GCS Interoperable Access Key ID (type: string, required: true)
@@ -1120,7 +1333,7 @@ Common Options:
1120
1333
 
1121
1334
  --run CMD Command to execute after the deployment finished successfully (type: array
1122
1335
  (string, can be given multiple times))
1123
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1336
+ --cleanup Skip cleaning up build artifacts before the deployment
1124
1337
  --help Get help on this command
1125
1338
 
1126
1339
  Examples:
@@ -1129,8 +1342,13 @@ Examples:
1129
1342
  dpl gcs --access_key_id id --secret_access_key key --bucket bucket --local_dir dir --upload_dir dir
1130
1343
  ```
1131
1344
 
1345
+ Options can be given via env vars if prefixed with `GCS_`. E.g. the option `--access_key_id` can be
1346
+ given as `GCS_ACCESS_KEY_ID=<access_key_id>`.
1347
+
1132
1348
  ### Hackage
1133
1349
 
1350
+ Support for deployments to Hackage is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1351
+
1134
1352
  ```
1135
1353
  Usage: dpl hackage [options]
1136
1354
 
@@ -1142,8 +1360,6 @@ Description:
1142
1360
 
1143
1361
  tbd
1144
1362
 
1145
- Support for deployments to Hackage is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1146
-
1147
1363
  Options:
1148
1364
 
1149
1365
  --username USER Hackage username (type: string, required: true)
@@ -1154,7 +1370,7 @@ Common Options:
1154
1370
 
1155
1371
  --run CMD Command to execute after the deployment finished successfully (type: array
1156
1372
  (string, can be given multiple times))
1157
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1373
+ --cleanup Skip cleaning up build artifacts before the deployment
1158
1374
  --help Get help on this command
1159
1375
 
1160
1376
  Examples:
@@ -1163,8 +1379,13 @@ Examples:
1163
1379
  dpl hackage --username user --password user --publish --run cmd --cleanup
1164
1380
  ```
1165
1381
 
1382
+ Options can be given via env vars if prefixed with `HACKAGE_`. E.g. the option `--password` can be
1383
+ given as `HACKAGE_PASSWORD=<password>`.
1384
+
1166
1385
  ### Hephy
1167
1386
 
1387
+ Support for deployments to Hephy is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1388
+
1168
1389
  ```
1169
1390
  Usage: dpl hephy [options]
1170
1391
 
@@ -1176,8 +1397,6 @@ Description:
1176
1397
 
1177
1398
  tbd
1178
1399
 
1179
- Support for deployments to Hephy is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1180
-
1181
1400
  Options:
1182
1401
 
1183
1402
  --controller NAME Hephy controller (type: string, required: true, e.g.: hephy.hephyapps.com)
@@ -1191,7 +1410,7 @@ Common Options:
1191
1410
 
1192
1411
  --run CMD Command to execute after the deployment finished successfully (type: array
1193
1412
  (string, can be given multiple times))
1194
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1413
+ --cleanup Skip cleaning up build artifacts before the deployment
1195
1414
  --help Get help on this command
1196
1415
 
1197
1416
  Examples:
@@ -1200,8 +1419,13 @@ Examples:
1200
1419
  dpl hephy --controller name --username user --password pass --app app --cli_version ver
1201
1420
  ```
1202
1421
 
1422
+ Options can be given via env vars if prefixed with `HEPHY_`. E.g. the option `--password` can be
1423
+ given as `HEPHY_PASSWORD=<password>`.
1424
+
1203
1425
  ### Heroku API
1204
1426
 
1427
+ Support for deployments to Heroku API is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1428
+
1205
1429
  ```
1206
1430
  Usage: dpl heroku api [options]
1207
1431
 
@@ -1213,19 +1437,17 @@ Description:
1213
1437
 
1214
1438
  tbd
1215
1439
 
1216
- Support for deployments to Heroku API is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1217
-
1218
1440
  Options:
1219
1441
 
1220
- --api_key KEY Heroku API key (type: string, required: true)
1442
+ --api_key KEY Heroku API key (type: string, required: true)
1221
1443
 
1222
1444
  Common Options:
1223
1445
 
1224
- --run CMD Command to execute after the deployment finished successfully (type: array
1225
- (string, can be given multiple times))
1226
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1227
- --app APP Heroku app name (type: string, default: repo name)
1228
- --help Get help on this command
1446
+ --run CMD Command to execute after the deployment finished successfully (type: array
1447
+ (string, can be given multiple times))
1448
+ --cleanup Skip cleaning up build artifacts before the deployment
1449
+ --app APP Heroku app name (type: string, default: repo name)
1450
+ --help Get help on this command
1229
1451
 
1230
1452
  Examples:
1231
1453
 
@@ -1233,8 +1455,13 @@ Examples:
1233
1455
  dpl heroku api --api_key key --run cmd --cleanup --app app
1234
1456
  ```
1235
1457
 
1458
+ Options can be given via env vars if prefixed with `HEROKU_`. E.g. the option `--api_key` can be
1459
+ given as `HEROKU_API_KEY=<api_key>`.
1460
+
1236
1461
  ### Heroku Git
1237
1462
 
1463
+ Support for deployments to Heroku Git is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1464
+
1238
1465
  ```
1239
1466
  Usage: dpl heroku git [options]
1240
1467
 
@@ -1246,8 +1473,6 @@ Description:
1246
1473
 
1247
1474
  tbd
1248
1475
 
1249
- Support for deployments to Heroku Git is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1250
-
1251
1476
  Options:
1252
1477
 
1253
1478
  Either api_key, or username and password are required.
@@ -1261,7 +1486,7 @@ Common Options:
1261
1486
 
1262
1487
  --run CMD Command to execute after the deployment finished successfully (type: array
1263
1488
  (string, can be given multiple times))
1264
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1489
+ --cleanup Skip cleaning up build artifacts before the deployment
1265
1490
  --app APP Heroku app name (type: string, default: repo name)
1266
1491
  --help Get help on this command
1267
1492
 
@@ -1272,8 +1497,13 @@ Examples:
1272
1497
  dpl heroku git --api_key key --git url --run cmd --cleanup --app app
1273
1498
  ```
1274
1499
 
1500
+ Options can be given via env vars if prefixed with `HEROKU_`. E.g. the option `--api_key` can be
1501
+ given as `HEROKU_API_KEY=<api_key>`.
1502
+
1275
1503
  ### Launchpad
1276
1504
 
1505
+ Support for deployments to Launchpad is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1506
+
1277
1507
  ```
1278
1508
  Usage: dpl launchpad [options]
1279
1509
 
@@ -1285,8 +1515,6 @@ Description:
1285
1515
 
1286
1516
  tbd
1287
1517
 
1288
- Support for deployments to Launchpad is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1289
-
1290
1518
  Options:
1291
1519
 
1292
1520
  --slug SLUG Launchpad project slug (type: string, format: /^~[^\/]+\/[^\/]+\/[^\/]+$/, e.g.:
@@ -1298,7 +1526,7 @@ Common Options:
1298
1526
 
1299
1527
  --run CMD Command to execute after the deployment finished successfully (type: array
1300
1528
  (string, can be given multiple times))
1301
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1529
+ --cleanup Skip cleaning up build artifacts before the deployment
1302
1530
  --help Get help on this command
1303
1531
 
1304
1532
  Examples:
@@ -1306,8 +1534,13 @@ Examples:
1306
1534
  dpl launchpad --slug slug --oauth_token token --oauth_token_secret secret --run cmd --cleanup
1307
1535
  ```
1308
1536
 
1537
+ Options can be given via env vars if prefixed with `LAUNCHPAD_`. E.g. the option `--oauth_token` can
1538
+ be given as `LAUNCHPAD_OAUTH_TOKEN=<oauth_token>`.
1539
+
1309
1540
  ### Netlify
1310
1541
 
1542
+ Support for deployments to Netlify is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1543
+
1311
1544
  ```
1312
1545
  Usage: dpl netlify [options]
1313
1546
 
@@ -1319,8 +1552,6 @@ Description:
1319
1552
 
1320
1553
  tbd
1321
1554
 
1322
- Support for deployments to Netlify is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1323
-
1324
1555
  Options:
1325
1556
 
1326
1557
  --site ID A site ID to deploy to (type: string, required: true)
@@ -1334,7 +1565,7 @@ Common Options:
1334
1565
 
1335
1566
  --run CMD Command to execute after the deployment finished successfully (type: array
1336
1567
  (string, can be given multiple times))
1337
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1568
+ --cleanup Skip cleaning up build artifacts before the deployment
1338
1569
  --help Get help on this command
1339
1570
 
1340
1571
  Examples:
@@ -1343,8 +1574,13 @@ Examples:
1343
1574
  dpl netlify --site id --auth token --dir dir --functions funcs --message msg
1344
1575
  ```
1345
1576
 
1577
+ Options can be given via env vars if prefixed with `NETLIFY_`. E.g. the option `--auth` can be given
1578
+ as `NETLIFY_AUTH=<auth>`.
1579
+
1346
1580
  ### npm
1347
1581
 
1582
+ Support for deployments to npm is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1583
+
1348
1584
  ```
1349
1585
  Usage: dpl npm [options]
1350
1586
 
@@ -1356,8 +1592,6 @@ Description:
1356
1592
 
1357
1593
  tbd
1358
1594
 
1359
- Support for deployments to npm is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1360
-
1361
1595
  Options:
1362
1596
 
1363
1597
  --email EMAIL npm account email (type: string)
@@ -1374,7 +1608,7 @@ Common Options:
1374
1608
 
1375
1609
  --run CMD Command to execute after the deployment finished successfully (type: array
1376
1610
  (string, can be given multiple times))
1377
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1611
+ --cleanup Skip cleaning up build artifacts before the deployment
1378
1612
  --help Get help on this command
1379
1613
 
1380
1614
  Examples:
@@ -1383,8 +1617,13 @@ Examples:
1383
1617
  dpl npm --api_token token --email email --access public --registry url --src src
1384
1618
  ```
1385
1619
 
1620
+ Options can be given via env vars if prefixed with `NPM_`. E.g. the option `--api_token` can be
1621
+ given as `NPM_API_TOKEN=<api_token>`.
1622
+
1386
1623
  ### OpenShift
1387
1624
 
1625
+ Support for deployments to OpenShift is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1626
+
1388
1627
  ```
1389
1628
  Usage: dpl openshift [options]
1390
1629
 
@@ -1396,8 +1635,6 @@ Description:
1396
1635
 
1397
1636
  tbd
1398
1637
 
1399
- Support for deployments to OpenShift is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1400
-
1401
1638
  Options:
1402
1639
 
1403
1640
  --server SERVER OpenShift server (type: string, required: true)
@@ -1409,7 +1646,7 @@ Common Options:
1409
1646
 
1410
1647
  --run CMD Command to execute after the deployment finished successfully (type: array
1411
1648
  (string, can be given multiple times))
1412
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1649
+ --cleanup Skip cleaning up build artifacts before the deployment
1413
1650
  --help Get help on this command
1414
1651
 
1415
1652
  Examples:
@@ -1418,8 +1655,13 @@ Examples:
1418
1655
  dpl openshift --server server --token token --project project --app app --run cmd
1419
1656
  ```
1420
1657
 
1658
+ Options can be given via env vars if prefixed with `OPENSHIFT_`. E.g. the option `--token` can be
1659
+ given as `OPENSHIFT_TOKEN=<token>`.
1660
+
1421
1661
  ### Packagecloud
1422
1662
 
1663
+ Support for deployments to Packagecloud is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1664
+
1423
1665
  ```
1424
1666
  Usage: dpl packagecloud [options]
1425
1667
 
@@ -1431,8 +1673,6 @@ Description:
1431
1673
 
1432
1674
  tbd
1433
1675
 
1434
- Support for deployments to Packagecloud is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1435
-
1436
1676
  Options:
1437
1677
 
1438
1678
  --username USER The packagecloud.io username. (type: string, required: true)
@@ -1452,7 +1692,7 @@ Common Options:
1452
1692
 
1453
1693
  --run CMD Command to execute after the deployment finished successfully (type: array
1454
1694
  (string, can be given multiple times))
1455
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1695
+ --cleanup Skip cleaning up build artifacts before the deployment
1456
1696
  --help Get help on this command
1457
1697
 
1458
1698
  Examples:
@@ -1461,8 +1701,13 @@ Examples:
1461
1701
  dpl packagecloud --username user --token token --repository repo --local_dir dir --dist dist
1462
1702
  ```
1463
1703
 
1704
+ Options can be given via env vars if prefixed with `PACKAGECLOUD_`. E.g. the option `--token` can be
1705
+ given as `PACKAGECLOUD_TOKEN=<token>`.
1706
+
1464
1707
  ### Puppet Forge
1465
1708
 
1709
+ Support for deployments to Puppet Forge is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1710
+
1466
1711
  ```
1467
1712
  Usage: dpl puppetforge [options]
1468
1713
 
@@ -1474,8 +1719,6 @@ Description:
1474
1719
 
1475
1720
  tbd
1476
1721
 
1477
- Support for deployments to Puppet Forge is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1478
-
1479
1722
  Options:
1480
1723
 
1481
1724
  --username NAME Puppet Forge user name (type: string, required: true, alias: user)
@@ -1487,7 +1730,7 @@ Common Options:
1487
1730
 
1488
1731
  --run CMD Command to execute after the deployment finished successfully (type: array
1489
1732
  (string, can be given multiple times))
1490
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1733
+ --cleanup Skip cleaning up build artifacts before the deployment
1491
1734
  --help Get help on this command
1492
1735
 
1493
1736
  Examples:
@@ -1496,8 +1739,13 @@ Examples:
1496
1739
  dpl puppetforge --username name --password pass --url url --run cmd --cleanup
1497
1740
  ```
1498
1741
 
1742
+ Options can be given via env vars if prefixed with `PUPPETFORGE_`. E.g. the option `--password` can
1743
+ be given as `PUPPETFORGE_PASSWORD=<password>`.
1744
+
1499
1745
  ### PyPI
1500
1746
 
1747
+ Support for deployments to PyPI is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1748
+
1501
1749
  ```
1502
1750
  Usage: dpl pypi [options]
1503
1751
 
@@ -1509,8 +1757,6 @@ Description:
1509
1757
 
1510
1758
  tbd
1511
1759
 
1512
- Support for deployments to PyPI is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1513
-
1514
1760
  Options:
1515
1761
 
1516
1762
  --username NAME PyPI Username (type: string, required: true, alias: user)
@@ -1534,7 +1780,7 @@ Common Options:
1534
1780
 
1535
1781
  --run CMD Command to execute after the deployment finished successfully (type: array
1536
1782
  (string, can be given multiple times))
1537
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1783
+ --cleanup Skip cleaning up build artifacts before the deployment
1538
1784
  --help Get help on this command
1539
1785
 
1540
1786
  Examples:
@@ -1543,8 +1789,13 @@ Examples:
1543
1789
  dpl pypi --username name --password pass --server server --distributions dists --docs_dir dir
1544
1790
  ```
1545
1791
 
1792
+ Options can be given via env vars if prefixed with `PYPI_`. E.g. the option `--password` can be
1793
+ given as `PYPI_PASSWORD=<password>`.
1794
+
1546
1795
  ### Rubygems
1547
1796
 
1797
+ Support for deployments to Rubygems is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1798
+
1548
1799
  ```
1549
1800
  Usage: dpl rubygems [options]
1550
1801
 
@@ -1556,8 +1807,6 @@ Description:
1556
1807
 
1557
1808
  tbd
1558
1809
 
1559
- Support for deployments to Rubygems is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1560
-
1561
1810
  Options:
1562
1811
 
1563
1812
  Either api_key, or user and password are required.
@@ -1575,7 +1824,7 @@ Common Options:
1575
1824
 
1576
1825
  --run CMD Command to execute after the deployment finished successfully (type: array
1577
1826
  (string, can be given multiple times))
1578
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1827
+ --cleanup Skip cleaning up build artifacts before the deployment
1579
1828
  --help Get help on this command
1580
1829
 
1581
1830
  Examples:
@@ -1585,8 +1834,13 @@ Examples:
1585
1834
  dpl rubygems --api_key key --username user --gem name --gemspec file --gemspec_glob glob
1586
1835
  ```
1587
1836
 
1837
+ Options can be given via env vars if prefixed with `RUBYGEMS_`. E.g. the option `--api_key` can be
1838
+ given as `RUBYGEMS_API_KEY=<api_key>`.
1839
+
1588
1840
  ### Scalingo
1589
1841
 
1842
+ Support for deployments to Scalingo is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1843
+
1590
1844
  ```
1591
1845
  Usage: dpl scalingo [options]
1592
1846
 
@@ -1598,8 +1852,6 @@ Description:
1598
1852
 
1599
1853
  tbd
1600
1854
 
1601
- Support for deployments to Scalingo is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1602
-
1603
1855
  Options:
1604
1856
 
1605
1857
  Either api_token, or username and password are required.
@@ -1619,7 +1871,7 @@ Common Options:
1619
1871
 
1620
1872
  --run CMD Command to execute after the deployment finished successfully (type: array
1621
1873
  (string, can be given multiple times))
1622
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1874
+ --cleanup Skip cleaning up build artifacts before the deployment
1623
1875
  --help Get help on this command
1624
1876
 
1625
1877
  Examples:
@@ -1629,8 +1881,13 @@ Examples:
1629
1881
  dpl scalingo --api_token token --app app --region agora-fr1 --remote remote --branch branch
1630
1882
  ```
1631
1883
 
1884
+ Options can be given via env vars if prefixed with `SCALINGO_`. E.g. the option `--password` can be
1885
+ given as `SCALINGO_PASSWORD=<password>`.
1886
+
1632
1887
  ### Script
1633
1888
 
1889
+ Support for deployments to Script is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1890
+
1634
1891
  ```
1635
1892
  Usage: dpl script [options]
1636
1893
 
@@ -1651,8 +1908,6 @@ Description:
1651
1908
  Deployment will be marked a failure if the script exits with nonzero
1652
1909
  status.
1653
1910
 
1654
- Support for deployments to Script is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1655
-
1656
1911
  Options:
1657
1912
 
1658
1913
  -s --script SCRIPT The script to execute (type: string, required: true)
@@ -1661,7 +1916,7 @@ Common Options:
1661
1916
 
1662
1917
  --run CMD Command to execute after the deployment finished successfully (type: array
1663
1918
  (string, can be given multiple times))
1664
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1919
+ --cleanup Skip cleaning up build artifacts before the deployment
1665
1920
  --help Get help on this command
1666
1921
 
1667
1922
  Examples:
@@ -1670,8 +1925,12 @@ Examples:
1670
1925
  dpl script --script script --run cmd --cleanup
1671
1926
  ```
1672
1927
 
1928
+
1929
+
1673
1930
  ### Snap
1674
1931
 
1932
+ Support for deployments to Snap is in **development**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1933
+
1675
1934
  ```
1676
1935
  Usage: dpl snap [options]
1677
1936
 
@@ -1683,8 +1942,6 @@ Description:
1683
1942
 
1684
1943
  tbd
1685
1944
 
1686
- Support for deployments to Snap is in development. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1687
-
1688
1945
  Options:
1689
1946
 
1690
1947
  --token TOKEN Snap API token (type: string, required: true)
@@ -1695,7 +1952,7 @@ Common Options:
1695
1952
 
1696
1953
  --run CMD Command to execute after the deployment finished successfully (type: array
1697
1954
  (string, can be given multiple times))
1698
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1955
+ --cleanup Skip cleaning up build artifacts before the deployment
1699
1956
  --help Get help on this command
1700
1957
 
1701
1958
  Examples:
@@ -1704,8 +1961,13 @@ Examples:
1704
1961
  dpl snap --token token --snap str --channel chan --run cmd --cleanup
1705
1962
  ```
1706
1963
 
1964
+ Options can be given via env vars if prefixed with `SNAP_`. E.g. the option `--token` can be given
1965
+ as `SNAP_TOKEN=<token>`.
1966
+
1707
1967
  ### Surge
1708
1968
 
1969
+ Support for deployments to Surge is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
1970
+
1709
1971
  ```
1710
1972
  Usage: dpl surge [options]
1711
1973
 
@@ -1717,8 +1979,6 @@ Description:
1717
1979
 
1718
1980
  tbd
1719
1981
 
1720
- Support for deployments to Surge is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1721
-
1722
1982
  Options:
1723
1983
 
1724
1984
  --login EMAIL Surge login (the email address you use with Surge) (type: string, required:
@@ -1733,7 +1993,7 @@ Common Options:
1733
1993
 
1734
1994
  --run CMD Command to execute after the deployment finished successfully (type: array
1735
1995
  (string, can be given multiple times))
1736
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1996
+ --cleanup Skip cleaning up build artifacts before the deployment
1737
1997
  --help Get help on this command
1738
1998
 
1739
1999
  Examples:
@@ -1742,8 +2002,13 @@ Examples:
1742
2002
  dpl surge --login email --token token --domain name --project path --run cmd
1743
2003
  ```
1744
2004
 
2005
+ Options can be given via env vars if prefixed with `SURGE_`. E.g. the option `--token` can be given
2006
+ as `SURGE_TOKEN=<token>`.
2007
+
1745
2008
  ### TestFairy
1746
2009
 
2010
+ Support for deployments to TestFairy is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
2011
+
1747
2012
  ```
1748
2013
  Usage: dpl testfairy [options]
1749
2014
 
@@ -1753,26 +2018,26 @@ Summary:
1753
2018
 
1754
2019
  Description:
1755
2020
 
1756
- Support for deployments to TestFairy is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
2021
+ tbd
1757
2022
 
1758
2023
  Options:
1759
2024
 
1760
- --api_key KEY TestFairy API key (type: string, required: true)
1761
- --app_file FILE Path to the app file that will be generated after the build (APK/IPA) (type:
1762
- string, required: true)
1763
- --symbols_file FILE Path to the symbols file (type: string)
1764
- --testers_groups GROUPS Tester groups to be notified about this build (type: string, e.g.: e.g.
1765
- group1,group1)
1766
- --[no-]notify Send an email with a changelog to your users
1767
- --[no-]auto_update Automaticall upgrade all the previous installations of this app this version
1768
- --advanced_options OPTS Comma_separated list of advanced options (type: string, e.g.: option1,option2)
2025
+ --api_key KEY TestFairy API key (type: string, required: true)
2026
+ --app_file FILE Path to the app file that will be generated after the build (APK/IPA) (type:
2027
+ string, required: true)
2028
+ --symbols_file FILE Path to the symbols file (type: string)
2029
+ --testers_groups GROUPS Tester groups to be notified about this build (type: string, e.g.: e.g.
2030
+ group1,group1)
2031
+ --[no-]notify Send an email with a changelog to your users
2032
+ --[no-]auto_update Automaticall upgrade all the previous installations of this app this version
2033
+ --advanced_options OPTS Comma_separated list of advanced options (type: string, e.g.: option1,option2)
1769
2034
 
1770
2035
  Common Options:
1771
2036
 
1772
- --run CMD Command to execute after the deployment finished successfully (type: array
1773
- (string, can be given multiple times))
1774
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
1775
- --help Get help on this command
2037
+ --run CMD Command to execute after the deployment finished successfully (type: array
2038
+ (string, can be given multiple times))
2039
+ --cleanup Skip cleaning up build artifacts before the deployment
2040
+ --help Get help on this command
1776
2041
 
1777
2042
  Examples:
1778
2043
 
@@ -1780,8 +2045,13 @@ Examples:
1780
2045
  dpl testfairy --api_key key --app_file file --symbols_file file --testers_groups groups --notify
1781
2046
  ```
1782
2047
 
2048
+ Options can be given via env vars if prefixed with `TESTFAIRY_`. E.g. the option `--api_key` can be
2049
+ given as `TESTFAIRY_API_KEY=<api_key>`.
2050
+
1783
2051
  ### Transifex
1784
2052
 
2053
+ Support for deployments to Transifex is in **alpha**. Please see [Maturity Levels](https://github.com/travis-ci/dpl/#maturity-levels) for details.
2054
+
1785
2055
  ```
1786
2056
  Usage: dpl transifex [options]
1787
2057
 
@@ -1793,8 +2063,6 @@ Description:
1793
2063
 
1794
2064
  tbd
1795
2065
 
1796
- Support for deployments to Transifex is in alpha. Please see here: https://github.com/travis-ci/dpl/#maturity-levels
1797
-
1798
2066
  Options:
1799
2067
 
1800
2068
  Either api_token, or username and password are required.
@@ -1809,7 +2077,7 @@ Common Options:
1809
2077
 
1810
2078
  --run CMD Command to execute after the deployment finished successfully (type: array
1811
2079
  (string, can be given multiple times))
1812
- --[no-]cleanup Skip cleaning up build artifacts before the deployment
2080
+ --cleanup Skip cleaning up build artifacts before the deployment
1813
2081
  --help Get help on this command
1814
2082
 
1815
2083
  Examples:
@@ -1819,6 +2087,9 @@ Examples:
1819
2087
  dpl transifex --api_token token --hostname name --cli_version ver --run cmd --cleanup
1820
2088
  ```
1821
2089
 
2090
+ Options can be given via env vars if prefixed with `TRANSIFEX_`. E.g. the option `--api_token` can
2091
+ be given as `TRANSIFEX_API_TOKEN=<api_token>`.
2092
+
1822
2093
  ## Contributing to Dpl
1823
2094
 
1824
2095
  ### Table of Contents
@@ -2235,4 +2506,4 @@ This tool would not exist without your help.
2235
2506
 
2236
2507
  A huge thank you goes out to all of our current and past [contributors](https://github.com/travis-ci/dpl/graphs/contributors):
2237
2508
 
2238
- 5c077yP, A.J. May, A92hm, Aakriti Gupta, Aaron Hill, Aaron1011, Abdón Rodríguez Davila, Adam King, Adam Mcgrath, adinata, Adrian Moreno, Ahmad Nassri, Ahmed Refaey, Ainun Nazieb, Albertin Loic, Alexander Springer, Alexey Kotlyarov, Ali Hajimirza, Amos Wenger, Anders Olsen Sandvik, Andrey Lushchick, Andy Vanbutsele, Angelo Livanos, Anne-Julia Seitz, Antoine Savignac, Anton Babenko, Anton Ilin, Arnold Daniels, Ashen Gunaratne, awesomescot, Axel Fontaine, Baptiste Courtois, Ben Hale, Benjamin Guttmann, Bob, Bob Zoller, Brad Gignac, Brandon Burton, Brandon LeBlanc, Brian Hou, Cameron White, capotej, Carla, carlad, Chad Engler, Chathan Driehuys, Christian Elsen, Christian Rackerseder, Clay Reimann, cleem, Cryptophobia, Damien Mathieu, Dan Buch, Dan Powell, Daniel X Moore, David F. Severski, Denis Cornehl, Dennis Koot, Devin J. Pohly, Dominic Jodoin, Dwayne Forde, emdantrim, Eric Peterson, Erik Dalén, Esteban Santiesteban, Étienne Michon, eyalbe4, Fabio Napoleoni, Felix Rieseberg, fgogolli, Filip Š, Flamur Gogolli, Gabriel Saldana, George Brighton, Gil, Gil Megidish, Gil Tselenchuk, Hao Luo, Hauke Stange, Henrik Hodne, Hiro Asari, IMANAKA, Kouta, Ivan Evtuhovich, Ivan Kusalic, Ivan Pozdeev, Jacob Burkhart, Jake Hewitt, Jakub Holy, James Adam, James Awesome, James Parker, Janderson, Jannis Leidel, Jeffrey Yasskin, Jeremy Frasier, Joe Damato, Joep van Delft, Johannes Würbach, johanneswuerbach, Johnny Dobbins, Jon Benson, Jon Rowe, Jon-Erik Schneiderhan, Jonatan Männchen, Jonathan Stites, Jonathan Sundqvist, jorgecasar, Josh Kalderimis, joshua-anderson, Jouni Kaplas, Julia S.Simon, Julio Capote, jung_b@localhost, Karim Fateem, Ke Zhu, konrad-c, Konstantin Haase, Kouta Imanaka, Kristofer Svardstal, Kyle Fazzari, Kyle VanderBeek, Loïc Mahieu, Lorenz Leutgeb, Lorne Currie, Louis Lagrange, Louis St-Amour, Luke Yeager, Maciej Skierkowski, María de Antón, mariadeanton, Mariana Lenetis and Zachary Gershman, Marius Gripsgard, Mark Pundsack, marscher, Marwan Rabbâa, Mathias Meyer, Mathias Rangel Wulff, Mathias San Miguel, Matt Hernandez, Matt Knox, Matt Travi, Matthew Knox, Maxime Brugidou, mayeut, Meir Gottlieb, Michael Bleigh, Michael Dunn, Michael Friis, Michel Boudreau, Mike Bryant, Nat Welch, Nicholas Bruning, Nick Mohoric, Nico Lindemann, Nigel Ramsay, Ole Michaelis, Omer Katz, Patrique Legault, Paul Beaudoin, Paul Nikitochkin, Peter, Peter Georgantas, Peter Newman, Philipp Hansch, Piotr Sarnacki, Rail Aliiev, Randall A. Gordon, Robert Gogolok, Rokas Brazdžionis, Romuald Bulyshko, ryanj, Ryn Daniels, Samir Talwar, Samuel Wright, Sandor Zeestraten, SAULEAU Sven, Scot Spinner, Sebastien Estienne, Sergei Chertkov, shunyi, Simon, Solly, Sorin Sbarnea, Soulou, Stefan Kolb, Steffen Kötte, step76, Steven Berlanga, Sven Fuchs, Sviatoslav Sydorenko, testfairy, Tim Ysewyn, Troels Thomsen, Tyler Cross, Uriah Levy, Vincent Jacques, Vojtech Vondra, Vojtěch Vondra, Wael M. Nasreddine, Wim Looman, Xavier Krantz, yeonhoyoon, Zane Williamson
2509
+ 5c077yP, A.J. May, A92hm, Aakriti Gupta, Aaron Hill, Aaron1011, Abdón Rodríguez Davila, Adam King, Adam Mcgrath, adinata, Adrian Moreno, Ahmad Nassri, Ahmed Refaey, Ainun Nazieb, Albertin Loic, Alexander Springer, Alexey Kotlyarov, Ali Hajimirza, Amos Wenger, Anders Olsen Sandvik, Andrey Lushchick, Andy Vanbutsele, Angelo Livanos, Anne-Julia Seitz, Antoine Savignac, Anton Babenko, Anton Ilin, Arnold Daniels, Ashen Gunaratne, awesomescot, Axel Fontaine, Baptiste Courtois, Ben Hale, Benjamin Guttmann, Bob, Bob Zoller, Brad Gignac, Brandon Burton, Brandon LeBlanc, Brian Hou, Cameron White, capotej, Carla, carlad, Chad Engler, Chathan Driehuys, Christian Elsen, Christian Rackerseder, Clay Reimann, cleem, Cryptophobia, Damien Mathieu, Dan Buch, Dan Powell, Daniel X Moore, David F. Severski, Denis Cornehl, Dennis Koot, Devin J. Pohly, Dominic Jodoin, Dwayne Forde, emdantrim, Eric Peterson, Erik Dalén, Esteban Santiesteban, Étienne Michon, eyalbe4, Fabio Napoleoni, Felix Rieseberg, fgogolli, Filip Š, Flamur Gogolli, Gabriel Saldana, George Brighton, Gil, Gil Megidish, Gil Tselenchuk, Hao Luo, Hauke Stange, Henrik Hodne, Hiro Asari, IMANAKA, Kouta, Ivan Evtuhovich, Ivan Kusalic, Ivan Pozdeev, Jacob Burkhart, Jake Hewitt, Jakub Holy, James Adam, James Awesome, James Parker, Janderson, Jannis Leidel, Jeffrey Yasskin, Jeremy Frasier, Joe Damato, Joep van Delft, Johannes Würbach, johanneswuerbach, Johnny Dobbins, Jon Benson, Jon Rowe, Jon-Erik Schneiderhan, Jonatan Männchen, Jonathan Stites, Jonathan Sundqvist, jorgecasar, Josh Kalderimis, joshua-anderson, Jouni Kaplas, Julia S.Simon, Julio Capote, jung_b@localhost, Karim Fateem, Ke Zhu, konrad-c, Konstantin Haase, Kouta Imanaka, Kristofer Svardstal, Kyle Fazzari, Kyle VanderBeek, Loïc Mahieu, Lorenz Leutgeb, Lorne Currie, Louis Lagrange, Louis St-Amour, Luke Yeager, Maciej Skierkowski, Marc, María de Antón, mariadeanton, Mariana Lenetis and Zachary Gershman, Marius Gripsgard, Mark Pundsack, marscher, Marwan Rabbâa, Mathias Meyer, Mathias Rangel Wulff, Mathias San Miguel, Matt Hernandez, Matt Knox, Matt Travi, Matthew Knox, Maxime Brugidou, mayeut, Meir Gottlieb, Michael Bleigh, Michael Dunn, Michael Friis, Michel Boudreau, Mike Bryant, Nat Welch, Nicholas Bruning, Nick Mohoric, Nico Lindemann, Nigel Ramsay, Ole Michaelis, Omer Katz, Patrique Legault, Paul Beaudoin, Paul Nikitochkin, Peter, Peter Georgantas, Peter Newman, Philipp Hansch, Piotr Sarnacki, Radosław Lisowski, Rail Aliiev, Randall A. Gordon, Robert Gogolok, Rokas Brazdžionis, Romuald Bulyshko, root, ryanj, Ryn Daniels, Samir Talwar, Samuel Wright, Sandor Zeestraten, SAULEAU Sven, Scot Spinner, Sebastien Estienne, Sergei Chertkov, shunyi, Simon, Solly, Sorin Sbarnea, Soulou, Stefan Kolb, Steffen Kötte, step76, Steven Berlanga, Sven Fuchs, Sviatoslav Sydorenko, testfairy, Tim Ysewyn, Troels Thomsen, Tyler Cross, Uriah Levy, Vincent Jacques, Vojtech Vondra, Vojtěch Vondra, Wael M. Nasreddine, Wim Looman, Xavier Krantz, yeonhoyoon, Zane Williamson