gitlabci-bundle-update-mr 1.1.1.beta2 → 1.1.1

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: 43c23ddfbd60f3eddda8256f56b139c32cee0685c155ed96b0c5eaf8f4d55a2f
4
- data.tar.gz: 223cbbb991fe9f72727882ac2779f4b9b4cea3459aa43596b618349e2da0530c
3
+ metadata.gz: 1d1206c8c3121aad2c45e26a171ea8dc1f4d63a63edf928c2c0461e5eee6c060
4
+ data.tar.gz: 37c562a6f10341664b39d6074900f801e922a207a941ba6a2a1037fa082cc9d4
5
5
  SHA512:
6
- metadata.gz: aa165b2b4c2c4d0b34ec8c4cc16d07fa5268aad0a33096c36ca9d5d10597e0993c765abf61a194c5b37dc6717c3fc2e9c5f4e8328579cecee1f1bd5bb33f1f5b
7
- data.tar.gz: d033c4d7cfd586dc71c92c4d6046f6f8c82face9753d6fe9b8ee36fb8fa40ccaf299934f1c7feba04975a914e199e6da98ccf59cf89d886b2c33400776304d14
6
+ metadata.gz: 1946c3432b01d0de283c76e9e3cf66139e353b83cc931e2599efa0af6d7c2a4eab16de0b0688892c8212637e9a76cec3e2f12f31ed3c00ba9a585b30fce792d9
7
+ data.tar.gz: 2cfdbd4ef410037d08a69dbea805de4d38baf0ecece5797efeb084dee4fea40e9e7b3329fe4f375a474397c40632bbe89eb3a9bc627ebe8242a55310191f14a8
@@ -19,10 +19,6 @@ continuous_bundle_update:
19
19
  # Set timezone to Asia/Tokyo
20
20
  - cp /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
21
21
 
22
- only:
23
- - schedules
24
- - web # Test for topic branch
25
-
26
22
  .default:
27
23
  cache:
28
24
  key: "$CI_BUILD_NAME"
@@ -98,3 +94,20 @@ pages:
98
94
  - public
99
95
  only:
100
96
  - master
97
+
98
+ gitlab_awesome_release:
99
+ stage: build
100
+
101
+ image: ruby:alpine
102
+
103
+ script:
104
+ - gem install gitlab_awesome_release --no-doc
105
+ - gitlab_awesome_release create_latest_note
106
+
107
+ variables:
108
+ GITLAB_API_ENDPOINT: $CI_API_V4_URL
109
+ GITLAB_PROJECT_NAME: $CI_PROJECT_PATH
110
+ GITLAB_API_PRIVATE_TOKEN: $GITLAB_API_PRIVATE_TOKEN
111
+
112
+ only:
113
+ - web
@@ -1,5 +1,11 @@
1
1
  ## Unreleased
2
- [full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.1.0...master)
2
+ [full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.1.1...master)
3
+
4
+ ## v1.1.1
5
+ [full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.1.0...v1.1.1)
6
+
7
+ * Add auto retry when `merge when pipeline succeeds` is failed [!128](https://gitlab.com/sue445/gitlabci-bundle-update-mr/merge_requests/128) *@sue445*
8
+ * [Resolved] `open': can't modify frozen Hash: {} (FrozenError) [!131](https://gitlab.com/sue445/gitlabci-bundle-update-mr/merge_requests/131) *@sue445*
3
9
 
4
10
  ## v1.1.0
5
11
  [full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v1.0.0...v1.1.0)
@@ -10,9 +10,10 @@ GIT
10
10
  PATH
11
11
  remote: .
12
12
  specs:
13
- gitlabci-bundle-update-mr (1.1.1.beta2)
13
+ gitlabci-bundle-update-mr (1.1.1)
14
14
  bundler
15
15
  compare_linker (>= 1.4.3)
16
+ git (= 1.7.0)
16
17
  gitlab (>= 4.14.1)
17
18
  restore_bundled_with
18
19
 
@@ -38,6 +38,7 @@ Gem::Specification.new do |spec|
38
38
 
39
39
  spec.add_dependency "bundler"
40
40
  spec.add_dependency "compare_linker", ">= 1.4.3"
41
+ spec.add_dependency "git", "1.7.0"
41
42
  spec.add_dependency "gitlab", ">= 4.14.1"
42
43
  spec.add_dependency "restore_bundled_with"
43
44
 
@@ -16,7 +16,7 @@ continuous_bundle_update:
16
16
 
17
17
  script:
18
18
  - bundle install --path vendor/bundle --clean
19
- - gem install --no-doc gitlabci-bundle-update-mr --prerelease
19
+ - gem install --no-doc gitlabci-bundle-update-mr
20
20
  - |
21
21
  if [ -n "$ASSIGNEES" ]; then
22
22
  OPTIONS="--assignees $ASSIGNEES $OPTIONS"
@@ -2,7 +2,7 @@ module Gitlabci
2
2
  module Bundle
3
3
  module Update
4
4
  module Mr
5
- VERSION = "1.1.1.beta2".freeze
5
+ VERSION = "1.1.1".freeze
6
6
  end
7
7
  end
8
8
  end
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: 1.1.1.beta2
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-12-30 00:00:00.000000000 Z
11
+ date: 2021-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: 1.4.3
41
+ - !ruby/object:Gem::Dependency
42
+ name: git
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '='
46
+ - !ruby/object:Gem::Version
47
+ version: 1.7.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '='
53
+ - !ruby/object:Gem::Version
54
+ version: 1.7.0
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: gitlab
43
57
  requirement: !ruby/object:Gem::Requirement
@@ -295,9 +309,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
295
309
  version: 2.5.0
296
310
  required_rubygems_version: !ruby/object:Gem::Requirement
297
311
  requirements:
298
- - - ">"
312
+ - - ">="
299
313
  - !ruby/object:Gem::Version
300
- version: 1.3.1
314
+ version: '0'
301
315
  requirements: []
302
316
  rubygems_version: 3.1.4
303
317
  signing_key: