gitlab_mr_release 1.1.1 → 1.1.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/.github/workflows/test.yml +4 -5
- data/CHANGELOG.md +7 -1
- data/Gemfile +5 -0
- data/gitlab_mr_release.gemspec +5 -0
- data/lib/gitlab_mr_release/version.rb +1 -1
- metadata +11 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fce9fdb5d70a8f372a0d8ee7848a5b553062630bc256864dec6e03b04a3bc160
|
|
4
|
+
data.tar.gz: 7907f2ceb6b0113726f6228017cab3c4a4a1780f6afdc1bee2e2a02b8c149bde
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77964b63d42c89d65a4edffb46438c86cc2f709afb5c4105180b03148ce6b7c4447cde6546883ddd808ae497c45adbe8453d7afd56bbb7ef2638a92bde9b5aa7
|
|
7
|
+
data.tar.gz: 620b5d8a6244118c48125568b9cc0ae530d0000a05bc206c86ced8fd0b2f8a534dc7df6ac2dd7d1516fa44c7ccf0771671d833567da58284aaf1e3bb3b01448c
|
data/.github/workflows/test.yml
CHANGED
|
@@ -12,9 +12,6 @@ on:
|
|
|
12
12
|
schedule:
|
|
13
13
|
- cron: "0 10 * * 5" # JST 19:00 (Fri)
|
|
14
14
|
|
|
15
|
-
env:
|
|
16
|
-
CI: "true"
|
|
17
|
-
|
|
18
15
|
jobs:
|
|
19
16
|
test:
|
|
20
17
|
runs-on: ubuntu-latest
|
|
@@ -32,6 +29,7 @@ jobs:
|
|
|
32
29
|
- ruby:2.5
|
|
33
30
|
- ruby:2.6
|
|
34
31
|
- ruby:2.7
|
|
32
|
+
- ruby:3.0
|
|
35
33
|
- rubylang/ruby:master-nightly-bionic
|
|
36
34
|
include:
|
|
37
35
|
- ruby: rubylang/ruby:master-nightly-bionic
|
|
@@ -70,6 +68,7 @@ jobs:
|
|
|
70
68
|
set -xe
|
|
71
69
|
bundle exec rspec
|
|
72
70
|
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
71
|
+
timeout-minutes: 1
|
|
73
72
|
|
|
74
73
|
- name: Teardown Code Climate Test Reporter
|
|
75
74
|
uses: aktions/codeclimate-test-reporter@v1
|
|
@@ -80,7 +79,7 @@ jobs:
|
|
|
80
79
|
continue-on-error: true
|
|
81
80
|
|
|
82
81
|
- name: Slack Notification (not success)
|
|
83
|
-
uses:
|
|
82
|
+
uses: lazy-actions/slatify@master
|
|
84
83
|
if: "! success()"
|
|
85
84
|
continue-on-error: true
|
|
86
85
|
with:
|
|
@@ -98,7 +97,7 @@ jobs:
|
|
|
98
97
|
|
|
99
98
|
steps:
|
|
100
99
|
- name: Slack Notification (success)
|
|
101
|
-
uses:
|
|
100
|
+
uses: lazy-actions/slatify@master
|
|
102
101
|
if: always()
|
|
103
102
|
continue-on-error: true
|
|
104
103
|
with:
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## Unreleased
|
|
2
|
-
[full changelog](http://github.com/sue445/gitlab_mr_release/compare/v1.1.
|
|
2
|
+
[full changelog](http://github.com/sue445/gitlab_mr_release/compare/v1.1.2...master)
|
|
3
|
+
|
|
4
|
+
## v1.1.2
|
|
5
|
+
[full changelog](http://github.com/sue445/gitlab_mr_release/compare/v1.1.1...v1.1.2)
|
|
6
|
+
|
|
7
|
+
* Enable MFA requirement for gem releasing
|
|
8
|
+
* https://github.com/sue445/gitlab_mr_release/pull/53
|
|
3
9
|
|
|
4
10
|
## v1.1.1
|
|
5
11
|
[full changelog](http://github.com/sue445/gitlab_mr_release/compare/v1.1.0...v1.1.1)
|
data/Gemfile
CHANGED
|
@@ -10,6 +10,11 @@ if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.2.2")
|
|
|
10
10
|
end
|
|
11
11
|
end
|
|
12
12
|
|
|
13
|
+
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.3.0")
|
|
14
|
+
# NOTE: httparty v0.19.0+ requires Ruby 2.3+
|
|
15
|
+
gem "httparty", "< 0.19.0"
|
|
16
|
+
end
|
|
17
|
+
|
|
13
18
|
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.5.0")
|
|
14
19
|
# NOTE: unparser v0.3.0+ requires Ruby 2.5+
|
|
15
20
|
gem "unparser", "< 0.3.0"
|
data/gitlab_mr_release.gemspec
CHANGED
|
@@ -14,6 +14,11 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
spec.homepage = "https://github.com/sue445/gitlab_mr_release"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
18
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
|
19
|
+
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
|
20
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
|
21
|
+
|
|
17
22
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
18
23
|
spec.bindir = "exe"
|
|
19
24
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitlab_mr_release
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dotenv
|
|
@@ -210,8 +210,12 @@ files:
|
|
|
210
210
|
homepage: https://github.com/sue445/gitlab_mr_release
|
|
211
211
|
licenses:
|
|
212
212
|
- MIT
|
|
213
|
-
metadata:
|
|
214
|
-
|
|
213
|
+
metadata:
|
|
214
|
+
homepage_uri: https://github.com/sue445/gitlab_mr_release
|
|
215
|
+
source_code_uri: https://github.com/sue445/gitlab_mr_release
|
|
216
|
+
changelog_uri: https://github.com/sue445/gitlab_mr_release/blob/master/CHANGELOG.md
|
|
217
|
+
rubygems_mfa_required: 'true'
|
|
218
|
+
post_install_message:
|
|
215
219
|
rdoc_options: []
|
|
216
220
|
require_paths:
|
|
217
221
|
- lib
|
|
@@ -226,8 +230,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
226
230
|
- !ruby/object:Gem::Version
|
|
227
231
|
version: '0'
|
|
228
232
|
requirements: []
|
|
229
|
-
rubygems_version: 3.
|
|
230
|
-
signing_key:
|
|
233
|
+
rubygems_version: 3.2.22
|
|
234
|
+
signing_key:
|
|
231
235
|
specification_version: 4
|
|
232
236
|
summary: Release MergeRequest generator for GitLab
|
|
233
237
|
test_files: []
|