gitlabci-bundle-update-mr 5.1.0.beta1 → 5.1.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: adea38bfbdde56ee4879790dc6d86b0e83a153554b82f215cf8ddb836c7351ac
4
- data.tar.gz: 448afbba8651048cc4f0ab0721fabce0e111b5d30f1be2900ea73b680a79af75
3
+ metadata.gz: 8aca5941da45bdd58c50b8b80f042f54c9938ecf9b9a707bea62e1b0ba616e25
4
+ data.tar.gz: 57e30cfb698a4f082d9043017c909c41a37b5c4af44ec3787c33ffd94bda8a31
5
5
  SHA512:
6
- metadata.gz: 89cebe2fcdf3c604f1fb30f4116761eeedc3f82eda781ac1ca3c7be980d58dbf557058f5bfafaa91925f705baf7f1d05f0d9c4428349940b23e01b390162d4fe
7
- data.tar.gz: 2c40ca146c7f026f4f3cb389e422eab78743380d1ec04f28813d07674630ed24cbe9e8062095bfb42e58d1cdc33993f34f869c5daa2b90efc8a1d730deacd424
6
+ metadata.gz: 1fc7f885f8874d20526d1160b931a924cced137c5295df85c957422ebe158b3c0c3bf2bd121c5347caacaad3dc0618d2efad554c14d09637562c78c419d1a037
7
+ data.tar.gz: 2e75381611d70e064194d319186cd4a7882deee2c8bc30a498c1b5295f465e3529461ced7fa56f5a6806ef6c7a8266b8e94f530de95716ffef7e7d7b5fb5a468
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  ## Unreleased
2
- [full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v5.0.2...master)
2
+ [full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v5.1.0...master)
3
+
4
+ ## v5.1.0
5
+ [full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v5.0.2...v5.1.0)
6
+
7
+ * Pass both `merge_when_pipeline_succeeds` and `auto_merge` to Merge a merge request API
8
+ * https://gitlab.com/sue445/gitlabci-bundle-update-mr/-/merge_requests/368
9
+ * Add gitlabci-components/continuous_bundle_update.yml
10
+ * https://gitlab.com/sue445/gitlabci-bundle-update-mr/-/merge_requests/364
11
+ * Tweak cli description
12
+ * https://gitlab.com/sue445/gitlabci-bundle-update-mr/-/merge_requests/370
3
13
 
4
14
  ## v5.0.2
5
15
  [full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v5.0.1...v5.0.2)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gitlabci-bundle-update-mr (5.1.0.beta1)
4
+ gitlabci-bundle-update-mr (5.1.0)
5
5
  bundler
6
6
  compare_linker (>= 1.4.11)
7
7
  git (= 1.7.0)
data/README.md CHANGED
@@ -166,7 +166,7 @@ Usage: gitlabci-bundle-update-mr [options]
166
166
  -l, --labels 'In Review, Update' Add labels to the MR
167
167
  --update-bundled-with Whether to update `BUNDLED WITH` section in Gemfie.lock (default. false)
168
168
  --merge-when-pipeline-succeeds
169
- Whether to set 'Merge when pipeline succeeds' (default. false)
169
+ Whether to set 'Auto-merge' (formerly 'Merge when pipeline succeeds') (default. false)
170
170
  --assignees 'foo, bar' Add assignees to the MR
171
171
  ```
172
172
 
@@ -18,7 +18,11 @@ opt.on("--user USER", "git username (default. `git config user.name`)") {|v| aut
18
18
  opt.on("-d", "--duplicate", "Make MR even if it has already existed (default. false)") {|v| allow_dup_mr = v }
19
19
  opt.on("-l", "--labels 'In Review, Update'", Array, "Add labels to the MR") {|v| mr_labels = v.map(&:strip) }
20
20
  opt.on("--update-bundled-with", "Whether to update `BUNDLED WITH` section in Gemfie.lock (default. false)") {|v| update_bundled_with = v }
21
- opt.on("--merge-when-pipeline-succeeds", "Whether to set 'Merge when pipeline succeeds' (default. false)") {|v| merge_when_pipeline_succeeds = v }
21
+
22
+ opt.on("--merge-when-pipeline-succeeds", "Whether to set 'Auto-merge' (formerly 'Merge when pipeline succeeds') (default. false)") do |v|
23
+ merge_when_pipeline_succeeds = v
24
+ end
25
+
22
26
  opt.on("--assignees 'foo, bar'", Array, "Add assignees to the MR") {|v| assignees = v.map(&:strip) }
23
27
 
24
28
  opt.parse!(ARGV)
@@ -2,7 +2,7 @@ module Gitlabci
2
2
  module Bundle
3
3
  module Update
4
4
  module Mr
5
- VERSION = "5.1.0.beta1".freeze
5
+ VERSION = "5.1.0".freeze
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlabci-bundle-update-mr
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.0.beta1
4
+ version: 5.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445