concourse 0.39.0 → 0.40.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd55e825ebdac1ac76b5d97ac48b4ddbf7dc8771e6e6a1855bb38ed9dde92a99
4
- data.tar.gz: db17dddab390c5755e8954e30ed4b91bbde773afe7a8a17b0f526368c8af7391
3
+ metadata.gz: d7a68a94db3a3d48f5cb12aaa4425f0b6d7f10eb9064d6baa4142096b5845b0c
4
+ data.tar.gz: a5ea2a78272347f1dd3a3f47c41ebb7762eebaaada5243816a08b39742e31d66
5
5
  SHA512:
6
- metadata.gz: 5c7f87dd6367321ab38c19881905a472b68c987199d6601817468cd171653a41ed37be9cb9f40bec19577c2daabe079eaa380e6b5106f57e50a56febba584720
7
- data.tar.gz: 8c489739957e3a872f85345d7376e403464b0545548eaf296d0a549d3056113f8d6a350efc6157cf1e8181791f1184247958a096f46b0198fe1954c0f332346b
6
+ metadata.gz: acbba3ce3c68a8ffc965be062b04c032357e168386a0d266023f43ec5c4fe77c4f9057c8026e31423bbb310485e345b926ae942fb65f5f21202800fa1cb0ca74
7
+ data.tar.gz: 82707abc4ac5c9faea068b1076b1ffd820a9e0a4c928ca2bc80d4a49f8694da2c397c3206af2a4e867070686a60f82f4198f6121a98f57bb9fa15da9ed1632bd
@@ -1,5 +1,10 @@
1
1
  # concourse-gem changelog
2
2
 
3
+ ## v0.40.0 / 2020-12-19
4
+
5
+ * remove ruby 2.4, which has reached EOL
6
+
7
+
3
8
  ## v0.39.0 / 2020-11-16
4
9
 
5
10
  * add support for [YTT](https://get-ytt.io/) pipeline templates
data/README.md CHANGED
@@ -131,10 +131,11 @@ The ruby variable `RUBIES` is defined in the ERB binding during pipeline file ge
131
131
  ``` ruby
132
132
  # these numbers/names align with public docker image names
133
133
  RUBIES = {
134
- mri: %w[2.3 2.4 2.5 2.6], # docker repository: "ruby"
135
- jruby: %w[9.1 9.2], # docker repository: "jruby"
136
- rbx: %w[latest], # docker repository: "rubinius/docker"
137
- windows: %w[2.3 2.4 2.5 2.6] # windows-ruby-dev-tools-release
134
+ mri: %w[2.5 2.6 2.7 3.0-rc], # docker repository: "ruby"
135
+ jruby: %w[9.2], # docker repository: "jruby"
136
+ rbx: %w[latest], # docker repository: "rubinius/docker"
137
+ windows: %w[2.3 2.4 2.5 2.6], # windows-ruby-dev-tools-release
138
+ truffle: %w[stable nightly] # docker repository: flavorjones/truffleruby
138
139
  }
139
140
  ```
140
141
 
@@ -178,13 +179,13 @@ These YTT variables are defined by the gem, and can be used in your template:
178
179
  ```starlark
179
180
  #! ruby.star
180
181
  cruby_versions = {
181
- "supported": ["2.4", "2.5", "2.6", "2.7"],
182
- "out_of_support": ["2.3", "2.2", "2.1", "2.0.0"],
182
+ "out_of_support": ["2.4", "2.3", "2.2", "2.1", "2.0.0"],
183
+ "supported": ["2.5", "2.6", "2.7"],
183
184
  "beta": ["3.0-rc"]
184
185
  }
185
186
  jruby_versions = {
186
- "supported": ["9.2"],
187
187
  "out_of_support": ["9.1"],
188
+ "supported": ["9.2"],
188
189
  "beta": []
189
190
  }
190
191
  truffleruby_versions = {
@@ -429,7 +430,7 @@ rake concourse:task[job_task,fly_execute_args] # fly execute the specified task
429
430
 
430
431
  where:
431
432
 
432
- * _required_: `job_task` is formatted as `job-name/task-name`, for example, `ruby-2.4/rake-test`. (See `concourse:tasks` for a list of all available task names.)
433
+ * _required_: `job_task` is formatted as `job-name/task-name`, for example, `ruby-2.7/rake-test`. (See `concourse:tasks` for a list of all available task names.)
433
434
  * _optional_: `fly_execute_args` will default to map the project directory to a resource with the project name, e.g. `--input=myproject=.`, so your pipeline must name the input resource appropriately in order to use the default.
434
435
 
435
436
 
@@ -470,7 +471,7 @@ You can view that Concourse deployment at `http://127.0.0.1:8080` using the cred
470
471
  To target that local cluster, simply prepend the `concourse:local` task on the command line. For example, to `fly execute` a task on the local cluster:
471
472
 
472
473
  ``` sh
473
- rake concourse:local concourse:task[ruby-2.4/rake-task]
474
+ rake concourse:local concourse:task[ruby-2.7/rake-task]
474
475
  ```
475
476
 
476
477
  Or to push your pipelines to that local cluster:
@@ -11,7 +11,7 @@ class Concourse
11
11
 
12
12
  # these numbers/names align with public docker image names
13
13
  RUBIES = {
14
- mri: %w[2.4 2.5 2.6 2.7 3.0-rc], # docker repository: "ruby"
14
+ mri: %w[2.5 2.6 2.7 3.0-rc], # docker repository: "ruby"
15
15
  jruby: %w[9.2], # docker repository: "jruby"
16
16
  rbx: %w[latest], # docker repository: "rubinius/docker"
17
17
  windows: %w[2.3 2.4 2.5 2.6], # windows-ruby-dev-tools-release
@@ -2,5 +2,5 @@ require "rake"
2
2
  require "erb"
3
3
 
4
4
  class Concourse
5
- VERSION = "0.39.0"
5
+ VERSION = "0.40.0"
6
6
  end
@@ -1,11 +1,11 @@
1
1
  cruby_versions = {
2
- "supported": ["2.4", "2.5", "2.6", "2.7"],
3
- "out_of_support": ["2.3", "2.2", "2.1", "2.0.0"],
2
+ "out_of_support": ["2.4", "2.3", "2.2", "2.1", "2.0.0"],
3
+ "supported": ["2.5", "2.6", "2.7"],
4
4
  "beta": ["3.0-rc"]
5
5
  }
6
6
  jruby_versions = {
7
- "supported": ["9.2"],
8
7
  "out_of_support": ["9.1"],
8
+ "supported": ["9.2"],
9
9
  "beta": []
10
10
  }
11
11
  truffleruby_versions = {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: concourse
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.39.0
4
+ version: 0.40.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Dalessio
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-11-16 00:00:00.000000000 Z
11
+ date: 2020-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: term-ansicolor