buildkite-builder 4.21.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: 000ddc2ea1c5ea820e044332c497a76b13e9b00556cae35189f91dc072afe9a3
4
- data.tar.gz: 0d548649085067b9576a9c2ec21d6dc38180201e2213eae65c550b464ccf70b5
3
+ metadata.gz: bed4401f76c44704784d88a4d21b0174a0b2ea8a92a3373fc59a848d34d02120
4
+ data.tar.gz: 0051455e61c583a698249fcd284b74aaa293e27d96c44aa3df6816a1f42e7daf
5
5
  SHA512:
6
- metadata.gz: d21c4d15689de47342b26edd158d78a0981b5987e6235a258aaf3d91caf64cd8523ab147c965dce3d61df6ab3776c0ab38236417de443efe09f9c59c3eea9e37
7
- data.tar.gz: 320daee56f24ef2088fa13dcb8d3d177717ae809ccafd910abefa1256499f82e37d15de79bf8d87beb61a91a7a43bf856b669bc64ac3c04d629e5ccd8a877323
6
+ metadata.gz: 8118e8574ee89ed2cf2067ebddcb55a2ff0560b0450f5ef794ef3998b7920ebf506a4fec08153d13227e8cde6f96e2c2343b65ecdd8448ec44065ceca7dce6c6
7
+ data.tar.gz: 4402405d7ead0b3f149495f78307bb1a5c771e2d27542c84ce84761b2083c7d62bf64d6b1f15157248f5b54fb04f66cb5b9da42241bd6c906194dd4e779a1c79
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### 4.23.0
2
+ * Add missing attributes to step types.
3
+
4
+ ### 4.22.0
5
+ * Add benchmark as dependency (for Ruby 4).
6
+
1
7
  ### 4.21.0
2
8
  * Add support for `allowed_teams` option for input and block steps.
3
9
 
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Buildkite Builder [![Build status](https://badge.buildkite.com/a26bf804e9a93fb118d29824d5695a601a248ceec51591be23.svg?branch=main)](https://buildkite.com/gusto-open-source/buildkite-builder/builds?branch=main)
2
2
 
3
+ <p align="center">
4
+ <img width="350" height="260" alt="Buildkite-Builder Logo" src="https://github.com/user-attachments/assets/216608a5-7b1a-4766-b60b-0dc24f50e492">
5
+ </p>
6
+
3
7
  ## Introduction
4
8
 
5
9
  Buildkite Builder (BKB) is a Buildkite pipeline builder written in Ruby. It allows you to build your pipeline with a Ruby DSL for dynamically generated pipeline steps.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.21.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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buildkite-builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.21.0
4
+ version: 4.23.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ngan Pham
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2025-08-19 00:00:00.000000000 Z
12
+ date: 2026-04-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rainbow
@@ -25,6 +25,34 @@ dependencies:
25
25
  - - ">="
26
26
  - !ruby/object:Gem::Version
27
27
  version: '3'
28
+ - !ruby/object:Gem::Dependency
29
+ name: benchmark
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
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'
28
56
  - !ruby/object:Gem::Dependency
29
57
  name: rake
30
58
  requirement: !ruby/object:Gem::Requirement