buildkite-builder 4.22.0 → 4.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d287163131449354b4dec9144f9cd33b43fccce101cb3dfbb8d334c45e5b74bd
4
- data.tar.gz: b0f57ecc4d41c62573077521a048bd982131d0bca60450b3df90eec1eb9d3102
3
+ metadata.gz: bed4401f76c44704784d88a4d21b0174a0b2ea8a92a3373fc59a848d34d02120
4
+ data.tar.gz: 0051455e61c583a698249fcd284b74aaa293e27d96c44aa3df6816a1f42e7daf
5
5
  SHA512:
6
- metadata.gz: 3720d6114fc0ebbe2024825c17f8bd195284155efaeed7413dc05738702f50088746365d15edb31495683c02a8ad23ebfe69f863ab32cf3718929ce797185bc4
7
- data.tar.gz: cdf2d3a8593be291def43e171ff6df5db6d257f071819cbc599bacfe5354787052d343e07193e36bf29c6ce79cfb821a76970a2e39eeb90abaedd9372f36246a
6
+ metadata.gz: 8118e8574ee89ed2cf2067ebddcb55a2ff0560b0450f5ef794ef3998b7920ebf506a4fec08153d13227e8cde6f96e2c2343b65ecdd8448ec44065ceca7dce6c6
7
+ data.tar.gz: 4402405d7ead0b3f149495f78307bb1a5c771e2d27542c84ce84761b2083c7d62bf64d6b1f15157248f5b54fb04f66cb5b9da42241bd6c906194dd4e779a1c79
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ### 4.23.0
2
+ * Add missing attributes to step types.
3
+
1
4
  ### 4.22.0
2
5
  * Add benchmark as dependency (for Ruby 4).
3
6
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.22.0
1
+ 4.23.0
@@ -20,6 +20,7 @@ module Buildkite
20
20
  attribute :agents
21
21
  attribute :concurrency
22
22
  attribute :concurrency_group
23
+ attribute :concurrency_method
23
24
  attribute :retry
24
25
  attribute :env
25
26
  attribute :soft_fail, append: true
@@ -28,6 +29,7 @@ module Buildkite
28
29
  attribute :priority
29
30
  attribute :cancel_on_build_failing
30
31
  attribute :notify, append: true
32
+ attribute :secrets
31
33
  end
32
34
  end
33
35
  end
@@ -10,6 +10,7 @@ module Buildkite
10
10
  attribute :if, as: :condition
11
11
  attribute :depends_on, append: true
12
12
  attribute :allow_dependency_failure
13
+ attribute :notify, append: true
13
14
 
14
15
  attr_reader :steps
15
16
 
@@ -16,6 +16,7 @@ module Buildkite
16
16
  attribute :branches
17
17
  attribute :async
18
18
  attribute :build
19
+ attribute :soft_fail
19
20
  end
20
21
  end
21
22
  end
@@ -11,6 +11,7 @@ module Buildkite
11
11
  attribute :if, as: :condition
12
12
  attribute :depends_on, append: true
13
13
  attribute :allow_dependency_failure
14
+ attribute :branches
14
15
  attribute :continue_on_failure
15
16
  end
16
17
  end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buildkite-builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.22.0
4
+ version: 4.23.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ngan Pham
8
8
  - Andrew Lee
9
+ autorequire:
9
10
  bindir: exe
10
11
  cert_chain: []
11
- date: 2026-01-09 00:00:00.000000000 Z
12
+ date: 2026-04-06 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: rainbow
@@ -38,6 +39,20 @@ dependencies:
38
39
  - - ">="
39
40
  - !ruby/object:Gem::Version
40
41
  version: '0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: logger
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ type: :runtime
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
41
56
  - !ruby/object:Gem::Dependency
42
57
  name: rake
43
58
  requirement: !ruby/object:Gem::Requirement
@@ -189,6 +204,7 @@ metadata:
189
204
  source_code_uri: https://github.com/Gusto/buildkite-builder
190
205
  changelog_uri: https://github.com/Gusto/buildkite-builder/blob/master/CHANGELOG.md
191
206
  bug_tracker_uri: https://github.com/Gusto/buildkite-builder/issues
207
+ post_install_message:
192
208
  rdoc_options: []
193
209
  require_paths:
194
210
  - lib
@@ -203,7 +219,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
203
219
  - !ruby/object:Gem::Version
204
220
  version: '0'
205
221
  requirements: []
206
- rubygems_version: 3.6.2
222
+ rubygems_version: 3.5.22
223
+ signing_key:
207
224
  specification_version: 4
208
225
  summary: A gem for programmatically creating Buildkite pipelines.
209
226
  test_files: []