gitlabci-bundle-update-mr 2.0.1 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitlab-ci.yml +2 -2
- data/.rubocop.yml +6 -1
- data/CHANGELOG.md +11 -1
- data/Gemfile.lock +63 -62
- data/README.md +7 -0
- data/bin/console +2 -2
- data/gitlabci-bundle-update-mr.gemspec +2 -3
- data/lib/gitlabci/bundle/update/mr/version.rb +1 -1
- metadata +6 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: beb563308300820b9110ea14d4c57c58335dae73c76d7a25146b60b2376a0f2c
|
4
|
+
data.tar.gz: c1132291986a4cc9d9e971a973677dd8e6ffbf1c20b4c52f3716e54290aa037c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c0aac8994e7db8368518ef7f943c19db11fae07b5cf080a4858370b5b708b8074324418dd6d4ddad181bbc303f077225cc7561b3bb012c797d0e16e6ace073b
|
7
|
+
data.tar.gz: 963d446f3a577cc8aec16e8e40bbd6589cafece4304091e0e028945be33571db57c9963997b89339130a7dc83fc9a75fb734505f1d452e739cbba134ba1d13e5
|
data/.gitlab-ci.yml
CHANGED
data/.rubocop.yml
CHANGED
@@ -9,10 +9,15 @@ inherit_gem:
|
|
9
9
|
# - "config/rspec.yml"
|
10
10
|
|
11
11
|
AllCops:
|
12
|
-
TargetRubyVersion:
|
12
|
+
TargetRubyVersion: 3.0
|
13
13
|
NewCops: enable
|
14
14
|
SuggestExtensions: false
|
15
15
|
|
16
|
+
Gemspec/DevelopmentDependencies:
|
17
|
+
EnforcedStyle: gemspec
|
18
|
+
Exclude:
|
19
|
+
- "spec/fixtures/**"
|
20
|
+
|
16
21
|
Layout/HashAlignment:
|
17
22
|
EnforcedHashRocketStyle: table
|
18
23
|
EnforcedColonStyle: table
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
## Unreleased
|
2
|
-
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/
|
2
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v4.0.0...master)
|
3
|
+
|
4
|
+
## v4.0.0
|
5
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v3.0.0...v4.0.0)
|
6
|
+
|
7
|
+
* Drop support ruby < 3.0 [!294](https://gitlab.com/sue445/gitlabci-bundle-update-mr/merge_requests/294) *@sue445*
|
8
|
+
|
9
|
+
## v3.0.0
|
10
|
+
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v2.0.1...v3.0.0)
|
11
|
+
|
12
|
+
* Drop support ruby < 2.7 [!262](https://gitlab.com/sue445/gitlabci-bundle-update-mr/merge_requests/262) *@sue445*
|
3
13
|
|
4
14
|
## v2.0.1
|
5
15
|
[full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v2.0.0...v2.0.1)
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
gitlabci-bundle-update-mr (
|
4
|
+
gitlabci-bundle-update-mr (4.0.0)
|
5
5
|
bundler
|
6
6
|
compare_linker (>= 1.4.3)
|
7
7
|
git (= 1.7.0)
|
@@ -11,11 +11,9 @@ PATH
|
|
11
11
|
GEM
|
12
12
|
remote: https://rubygems.org/
|
13
13
|
specs:
|
14
|
-
addressable (2.8.
|
15
|
-
public_suffix (>= 2.0.2, <
|
14
|
+
addressable (2.8.6)
|
15
|
+
public_suffix (>= 2.0.2, < 6.0)
|
16
16
|
ast (2.4.2)
|
17
|
-
byebug (11.1.3)
|
18
|
-
coderay (1.1.3)
|
19
17
|
compare_linker (1.4.4)
|
20
18
|
httpclient
|
21
19
|
octokit
|
@@ -24,10 +22,10 @@ GEM
|
|
24
22
|
diff-lcs (1.5.0)
|
25
23
|
docile (1.4.0)
|
26
24
|
dotenv (2.8.1)
|
27
|
-
faraday (2.
|
28
|
-
faraday-net_http (>= 2.0, < 3.
|
29
|
-
|
30
|
-
|
25
|
+
faraday (2.9.0)
|
26
|
+
faraday-net_http (>= 2.0, < 3.2)
|
27
|
+
faraday-net_http (3.1.0)
|
28
|
+
net-http
|
31
29
|
git (1.7.0)
|
32
30
|
rchardet (~> 1.8)
|
33
31
|
gitlab (4.19.0)
|
@@ -37,84 +35,86 @@ GEM
|
|
37
35
|
dotenv
|
38
36
|
gitlab (>= 4.0.0)
|
39
37
|
thor
|
40
|
-
hashdiff (1.0
|
41
|
-
httparty (0.
|
42
|
-
|
38
|
+
hashdiff (1.1.0)
|
39
|
+
httparty (0.21.0)
|
40
|
+
mini_mime (>= 1.0.0)
|
43
41
|
multi_xml (>= 0.5.2)
|
44
42
|
httpclient (2.8.3)
|
45
|
-
json (2.
|
46
|
-
|
47
|
-
|
48
|
-
mime-types-data (~> 3.2015)
|
49
|
-
mime-types-data (3.2022.0105)
|
43
|
+
json (2.7.1)
|
44
|
+
language_server-protocol (3.17.0.3)
|
45
|
+
mini_mime (1.1.5)
|
50
46
|
multi_xml (0.6.0)
|
47
|
+
net-http (0.4.1)
|
48
|
+
uri
|
51
49
|
octokit (4.25.1)
|
52
50
|
faraday (>= 1, < 3)
|
53
51
|
sawyer (~> 0.9)
|
54
52
|
onkcop (1.0.0.0)
|
55
53
|
rubocop (>= 0.80.0)
|
56
54
|
rubocop-rspec (>= 1.34.0)
|
57
|
-
parallel (1.
|
58
|
-
parser (3.
|
55
|
+
parallel (1.24.0)
|
56
|
+
parser (3.3.0.3)
|
59
57
|
ast (~> 2.4.1)
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
pry-byebug (3.9.0)
|
64
|
-
byebug (~> 11.0)
|
65
|
-
pry (~> 0.13.0)
|
66
|
-
public_suffix (4.0.7)
|
58
|
+
racc
|
59
|
+
public_suffix (5.0.4)
|
60
|
+
racc (1.7.3)
|
67
61
|
rainbow (3.1.1)
|
68
|
-
rake (13.0
|
62
|
+
rake (13.1.0)
|
69
63
|
rchardet (1.8.0)
|
70
|
-
regexp_parser (2.
|
64
|
+
regexp_parser (2.9.0)
|
71
65
|
restore_bundled_with (1.0.0)
|
72
66
|
git
|
73
67
|
thor
|
74
|
-
rexml (3.2.
|
75
|
-
rspec (3.
|
76
|
-
rspec-core (~> 3.
|
77
|
-
rspec-expectations (~> 3.
|
78
|
-
rspec-mocks (~> 3.
|
79
|
-
rspec-core (3.
|
80
|
-
rspec-support (~> 3.
|
81
|
-
rspec-expectations (3.
|
68
|
+
rexml (3.2.6)
|
69
|
+
rspec (3.12.0)
|
70
|
+
rspec-core (~> 3.12.0)
|
71
|
+
rspec-expectations (~> 3.12.0)
|
72
|
+
rspec-mocks (~> 3.12.0)
|
73
|
+
rspec-core (3.12.2)
|
74
|
+
rspec-support (~> 3.12.0)
|
75
|
+
rspec-expectations (3.12.3)
|
82
76
|
diff-lcs (>= 1.2.0, < 2.0)
|
83
|
-
rspec-support (~> 3.
|
77
|
+
rspec-support (~> 3.12.0)
|
84
78
|
rspec-its (1.3.0)
|
85
79
|
rspec-core (>= 3.0.0)
|
86
80
|
rspec-expectations (>= 3.0.0)
|
87
|
-
rspec-mocks (3.
|
81
|
+
rspec-mocks (3.12.6)
|
88
82
|
diff-lcs (>= 1.2.0, < 2.0)
|
89
|
-
rspec-support (~> 3.
|
90
|
-
rspec-support (3.
|
83
|
+
rspec-support (~> 3.12.0)
|
84
|
+
rspec-support (3.12.1)
|
91
85
|
rspec-temp_dir (1.1.1)
|
92
86
|
rspec (>= 3.0)
|
93
|
-
rubocop (1.
|
87
|
+
rubocop (1.59.0)
|
94
88
|
json (~> 2.3)
|
89
|
+
language_server-protocol (>= 3.17.0)
|
95
90
|
parallel (~> 1.10)
|
96
|
-
parser (>= 3.
|
91
|
+
parser (>= 3.2.2.4)
|
97
92
|
rainbow (>= 2.2.2, < 4.0)
|
98
93
|
regexp_parser (>= 1.8, < 3.0)
|
99
94
|
rexml (>= 3.2.5, < 4.0)
|
100
|
-
rubocop-ast (>= 1.
|
95
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
101
96
|
ruby-progressbar (~> 1.7)
|
102
|
-
unicode-display_width (>=
|
103
|
-
rubocop-ast (1.
|
104
|
-
parser (>= 3.
|
105
|
-
rubocop-
|
106
|
-
rubocop (
|
107
|
-
|
108
|
-
|
109
|
-
|
97
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
98
|
+
rubocop-ast (1.30.0)
|
99
|
+
parser (>= 3.2.1.0)
|
100
|
+
rubocop-capybara (2.20.0)
|
101
|
+
rubocop (~> 1.41)
|
102
|
+
rubocop-factory_bot (2.25.1)
|
103
|
+
rubocop (~> 1.41)
|
104
|
+
rubocop-performance (1.20.2)
|
105
|
+
rubocop (>= 1.48.1, < 2.0)
|
106
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
107
|
+
rubocop-rspec (2.26.1)
|
108
|
+
rubocop (~> 1.40)
|
109
|
+
rubocop-capybara (~> 2.17)
|
110
|
+
rubocop-factory_bot (~> 2.22)
|
110
111
|
rubocop_auto_corrector (0.4.4)
|
111
112
|
rubocop (>= 1.3.0)
|
112
|
-
ruby-progressbar (1.
|
113
|
-
ruby2_keywords (0.0.5)
|
113
|
+
ruby-progressbar (1.13.0)
|
114
114
|
sawyer (0.9.2)
|
115
115
|
addressable (>= 2.3.5)
|
116
116
|
faraday (>= 0.17.3, < 3)
|
117
|
-
simplecov (0.
|
117
|
+
simplecov (0.22.0)
|
118
118
|
docile (~> 1.1)
|
119
119
|
simplecov-html (~> 0.11)
|
120
120
|
simplecov_json_formatter (~> 0.1)
|
@@ -122,15 +122,14 @@ GEM
|
|
122
122
|
simplecov_json_formatter (0.1.4)
|
123
123
|
terminal-table (3.0.2)
|
124
124
|
unicode-display_width (>= 1.1.1, < 3)
|
125
|
-
thor (1.
|
126
|
-
unicode-display_width (2.
|
127
|
-
|
125
|
+
thor (1.3.0)
|
126
|
+
unicode-display_width (2.5.0)
|
127
|
+
uri (0.13.0)
|
128
|
+
webmock (3.19.1)
|
128
129
|
addressable (>= 2.8.0)
|
129
130
|
crack (>= 0.3.2)
|
130
131
|
hashdiff (>= 0.4.0, < 2.0.0)
|
131
|
-
|
132
|
-
yard (0.9.28)
|
133
|
-
webrick (~> 1.7.0)
|
132
|
+
yard (0.9.34)
|
134
133
|
|
135
134
|
PLATFORMS
|
136
135
|
ruby
|
@@ -141,7 +140,6 @@ DEPENDENCIES
|
|
141
140
|
gitlabci-bundle-update-mr!
|
142
141
|
octokit (< 5.0.0)
|
143
142
|
onkcop (>= 1.0.0.0)
|
144
|
-
pry-byebug
|
145
143
|
rake (>= 10.0)
|
146
144
|
rspec (~> 3.0)
|
147
145
|
rspec-its
|
@@ -149,9 +147,12 @@ DEPENDENCIES
|
|
149
147
|
rubocop (>= 1.29.0)
|
150
148
|
rubocop-ast (>= 1.18.0)
|
151
149
|
rubocop-performance (>= 1.14.0)
|
152
|
-
rubocop-rspec (>= 2.
|
150
|
+
rubocop-rspec (>= 2.21.0)
|
153
151
|
rubocop_auto_corrector (>= 0.4.4)
|
154
152
|
sawyer (>= 0.8.1)
|
155
153
|
simplecov
|
156
154
|
webmock
|
157
155
|
yard
|
156
|
+
|
157
|
+
BUNDLED WITH
|
158
|
+
2.4.10
|
data/README.md
CHANGED
@@ -9,6 +9,13 @@ Create MergeRequest of bundle update in GitLab CI
|
|
9
9
|
|
10
10
|
This is inspired by [circleci-bundle-update-pr](https://github.com/masutaka/circleci-bundle-update-pr)
|
11
11
|
|
12
|
+
<details>
|
13
|
+
<summary>TOC</summary>
|
14
|
+
|
15
|
+
[[_TOC_]]
|
16
|
+
|
17
|
+
</details>
|
18
|
+
|
12
19
|
## Requirements
|
13
20
|
* GitLab v9.0.0+
|
14
21
|
* GitLab API v4
|
data/bin/console
CHANGED
@@ -35,7 +35,7 @@ Gem::Specification.new do |spec|
|
|
35
35
|
spec.executables = spec.files.grep(%r{^exe/}) {|f| File.basename(f) }
|
36
36
|
spec.require_paths = ["lib"]
|
37
37
|
|
38
|
-
spec.required_ruby_version = ">=
|
38
|
+
spec.required_ruby_version = ">= 3.0.0"
|
39
39
|
|
40
40
|
spec.add_dependency "bundler"
|
41
41
|
spec.add_dependency "compare_linker", ">= 1.4.3"
|
@@ -46,7 +46,6 @@ Gem::Specification.new do |spec|
|
|
46
46
|
spec.add_development_dependency "dotenv"
|
47
47
|
spec.add_development_dependency "gitlab_awesome_release"
|
48
48
|
spec.add_development_dependency "onkcop", ">= 1.0.0.0"
|
49
|
-
spec.add_development_dependency "pry-byebug"
|
50
49
|
spec.add_development_dependency "rake", ">= 10.0"
|
51
50
|
spec.add_development_dependency "rspec", "~> 3.0"
|
52
51
|
spec.add_development_dependency "rspec-its"
|
@@ -55,7 +54,7 @@ Gem::Specification.new do |spec|
|
|
55
54
|
spec.add_development_dependency "rubocop-ast", ">= 1.18.0"
|
56
55
|
spec.add_development_dependency "rubocop_auto_corrector", ">= 0.4.4"
|
57
56
|
spec.add_development_dependency "rubocop-performance", ">= 1.14.0"
|
58
|
-
spec.add_development_dependency "rubocop-rspec", ">= 2.
|
57
|
+
spec.add_development_dependency "rubocop-rspec", ">= 2.21.0"
|
59
58
|
spec.add_development_dependency "simplecov"
|
60
59
|
spec.add_development_dependency "webmock"
|
61
60
|
spec.add_development_dependency "yard"
|
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:
|
4
|
+
version: 4.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sue445
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -122,20 +122,6 @@ dependencies:
|
|
122
122
|
- - ">="
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: 1.0.0.0
|
125
|
-
- !ruby/object:Gem::Dependency
|
126
|
-
name: pry-byebug
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
128
|
-
requirements:
|
129
|
-
- - ">="
|
130
|
-
- !ruby/object:Gem::Version
|
131
|
-
version: '0'
|
132
|
-
type: :development
|
133
|
-
prerelease: false
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
135
|
-
requirements:
|
136
|
-
- - ">="
|
137
|
-
- !ruby/object:Gem::Version
|
138
|
-
version: '0'
|
139
125
|
- !ruby/object:Gem::Dependency
|
140
126
|
name: rake
|
141
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -254,14 +240,14 @@ dependencies:
|
|
254
240
|
requirements:
|
255
241
|
- - ">="
|
256
242
|
- !ruby/object:Gem::Version
|
257
|
-
version: 2.
|
243
|
+
version: 2.21.0
|
258
244
|
type: :development
|
259
245
|
prerelease: false
|
260
246
|
version_requirements: !ruby/object:Gem::Requirement
|
261
247
|
requirements:
|
262
248
|
- - ">="
|
263
249
|
- !ruby/object:Gem::Version
|
264
|
-
version: 2.
|
250
|
+
version: 2.21.0
|
265
251
|
- !ruby/object:Gem::Dependency
|
266
252
|
name: simplecov
|
267
253
|
requirement: !ruby/object:Gem::Requirement
|
@@ -350,14 +336,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
350
336
|
requirements:
|
351
337
|
- - ">="
|
352
338
|
- !ruby/object:Gem::Version
|
353
|
-
version:
|
339
|
+
version: 3.0.0
|
354
340
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
355
341
|
requirements:
|
356
342
|
- - ">="
|
357
343
|
- !ruby/object:Gem::Version
|
358
344
|
version: '0'
|
359
345
|
requirements: []
|
360
|
-
rubygems_version: 3.
|
346
|
+
rubygems_version: 3.4.6
|
361
347
|
signing_key:
|
362
348
|
specification_version: 4
|
363
349
|
summary: Create MergeRequest of bundle update in GitLab CI
|