buildkite-builder 1.4.0 → 1.4.1

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: 713a7970965943e572db027e5b89d467db1381d44dd9a230ecad22af7a36c3e1
4
- data.tar.gz: 1e290b14e602880da6dd765669a7aafce8241c6f483aae99d1d644dda418cfb3
3
+ metadata.gz: 9a3cd9ffee7742ded0fca17e0a11a214bd6383bd05c1c6a8101348d45b938bb1
4
+ data.tar.gz: f1b32964a3da0acdef53ba9febe034d1e77dc826ccb0b6722ffec1839f0f8126
5
5
  SHA512:
6
- metadata.gz: 606a86aebb0febb61b312eb53d8f53f37f4290835592e277071d22758b94cd3922ea5b77e625a616f9fcc8ac61961705e329dd2c24a6fb902f9f1a1ca85b2dae
7
- data.tar.gz: ae7cc07503fcd17605c3865975c1a70b43dded6f1b71923efe2cb675d40870eef04eb2b373588b859e19759882092fb204a672cff3c47985517bab5197ae2b78
6
+ metadata.gz: d0ecf15f187b6644cf1e1af05c9bf425f17c8f7e2ecf4054b973e977a9feb202db8a63014286a9177b276687f935cf8e62ffc56ea7933503e0355fcc378db6fb
7
+ data.tar.gz: 71813fc583c20d14b99f487283f111ffc77bf9ad0f3adfbf97c87d17e13451eb4436f99a53d182952c5e37ee65c20376730d63cf1dec98ae777fbaf49bf8e3be
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 1.4.1
2
+ * Fix the Github API Builder to account for Buildkite having both `.git` and no file exention repository URIs (#33)
3
+
1
4
  ## 1.4.0
2
5
  * Fix the `files` command. You now pass in the manifest with the `--manifest` CLI argument.
3
6
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0
1
+ 1.4.1
File without changes
@@ -11,7 +11,7 @@ module Buildkite
11
11
  ACCEPT_HEADER = 'application/vnd.github.v3+json'
12
12
  LINK_HEADER = 'link'
13
13
  NEXT_LINK_REGEX = /<(?<uri>.+)>; rel="next"/.freeze
14
- REPO_REGEX = /github\.com(?::|\/)(.*)\.git\z/.freeze
14
+ REPO_REGEX = /github\.com(?::|\/)(.*?)(?:\.git)?\z/.freeze
15
15
  PER_PAGE = 100
16
16
 
17
17
  def self.pull_request_files
File without changes
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: 1.4.0
4
+ version: 1.4.1
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: 2021-03-04 00:00:00.000000000 Z
12
+ date: 2021-04-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sorted_set
@@ -135,6 +135,7 @@ files:
135
135
  - lib/buildkite/builder/commands/run.rb
136
136
  - lib/buildkite/builder/context.rb
137
137
  - lib/buildkite/builder/definition.rb
138
+ - lib/buildkite/builder/dsl/pipeline.rb
138
139
  - lib/buildkite/builder/file_resolver.rb
139
140
  - lib/buildkite/builder/github.rb
140
141
  - lib/buildkite/builder/loaders.rb
@@ -171,6 +172,7 @@ files:
171
172
  - lib/buildkite/pipelines/steps/abstract.rb
172
173
  - lib/buildkite/pipelines/steps/block.rb
173
174
  - lib/buildkite/pipelines/steps/command.rb
175
+ - lib/buildkite/pipelines/steps/group.rb
174
176
  - lib/buildkite/pipelines/steps/input.rb
175
177
  - lib/buildkite/pipelines/steps/skip.rb
176
178
  - lib/buildkite/pipelines/steps/trigger.rb