gitlabci-bundle-update-mr 0.2.1 → 0.2.2
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 +4 -4
- data/CHANGELOG.md +7 -1
- data/Gemfile.lock +2 -2
- data/README.md +2 -2
- data/exe/gitlabci-bundle-update-mr +1 -1
- data/lib/gitlabci/bundle/update/mr/client.rb +1 -1
- data/lib/gitlabci/bundle/update/mr/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fd83034890eb4da2344c15b2c56067609a5e1e61f33c7641ecc7a5669716ed99
|
|
4
|
+
data.tar.gz: b2187f1938ddced13cdb264789b6d2abb32ae8cff942619507fd2016d6e5acd0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ee7b26bbb3fb4537247a9063789508f09efb856c93b716e5717042ce128849e5909e9b80cc96604e0e7c3b1262c8f622a9d6280ff20f8fc1ad21e2e4633bf7f
|
|
7
|
+
data.tar.gz: 63fca35ce40e9e23f01fa6ae63e9300c4d0a942b777e0ae75bbedeedba922196e8472935614d96b8bfabe1cf67c16f1bba9c2b8219fbcffa36628dc38b8c577c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## Unreleased
|
|
2
|
-
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v0.2.
|
|
2
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v0.2.2...HEAD)
|
|
3
|
+
|
|
4
|
+
## v0.2.2
|
|
5
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v0.2.1...v0.2.2)
|
|
6
|
+
|
|
7
|
+
### Bugfix
|
|
8
|
+
* Bugfix. doesn't work `--update-bundled-with` option [!30](https://gitlab.com/sue445/gitlabci-bundle-update-mr/merge_requests/30) *@sue445*
|
|
3
9
|
|
|
4
10
|
## v0.2.1
|
|
5
11
|
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v0.2.0...v0.2.1)
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
gitlabci-bundle-update-mr (0.2.
|
|
4
|
+
gitlabci-bundle-update-mr (0.2.2)
|
|
5
5
|
bundler
|
|
6
6
|
compare_linker (>= 1.4.3)
|
|
7
7
|
gitlab (>= 4.0.0)
|
|
@@ -12,7 +12,7 @@ GEM
|
|
|
12
12
|
specs:
|
|
13
13
|
addressable (2.5.2)
|
|
14
14
|
public_suffix (>= 2.0.2, < 4.0)
|
|
15
|
-
byebug (11.0.
|
|
15
|
+
byebug (11.0.1)
|
|
16
16
|
coderay (1.1.2)
|
|
17
17
|
compare_linker (1.4.3)
|
|
18
18
|
httpclient
|
data/README.md
CHANGED
|
@@ -88,13 +88,13 @@ example
|
|
|
88
88
|
|
|
89
89
|
```yml
|
|
90
90
|
include:
|
|
91
|
-
- remote: "https://gitlab.com/sue445/gitlabci-bundle-update-mr/
|
|
91
|
+
- remote: "https://gitlab.com/sue445/gitlabci-bundle-update-mr/raw/master/gitlabci-templates/continuous_bundle_update.yml"
|
|
92
92
|
|
|
93
93
|
continuous_bundle_update:
|
|
94
94
|
stage: build
|
|
95
95
|
|
|
96
96
|
variables:
|
|
97
|
-
# override variables (followings are
|
|
97
|
+
# override variables (followings are defaults)
|
|
98
98
|
CACHE_VERSION: "v1"
|
|
99
99
|
GIT_EMAIL: "gitlabci@example.com"
|
|
100
100
|
GIT_USER: "GitLab CI"
|
|
@@ -15,7 +15,7 @@ opt.on("--email EMAIL", "git email address (default. `git config user.email`)")
|
|
|
15
15
|
opt.on("--user USER", "git username (default. `git config user.name`)") { |v| author_name = v }
|
|
16
16
|
opt.on("-d", "--duplicate", "Make MR even if it has already existed (default. false)") { |v| allow_dup_mr = v }
|
|
17
17
|
opt.on("-l", "--labels 'In Review, Update'", Array, "Add labels to the MR") { |v| mr_labels = v.map(&:strip) }
|
|
18
|
-
opt.on("--update-bundled-with", "Whether to update `BUNDLED WITH` section in Gemfie.lock (default. false)") { |v|
|
|
18
|
+
opt.on("--update-bundled-with", "Whether to update `BUNDLED WITH` section in Gemfie.lock (default. false)") { |v| update_bundled_with = v }
|
|
19
19
|
|
|
20
20
|
opt.parse!(ARGV)
|
|
21
21
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitlabci-bundle-update-mr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-03-
|
|
11
|
+
date: 2019-03-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|