intello-shipit-cli 1.3.0 → 1.3.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 +4 -4
- data/Changelog.md +4 -0
- data/exe/shipit +0 -0
- data/lib/shipit/cli/version.rb +1 -1
- data/lib/shipit/cli/work.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 445aaf9d82b15a6b4da9145c0853d9ddb929a9a04363358a642fcd690082c1bd
|
|
4
|
+
data.tar.gz: 55f6b47b6a9a83b4498ea5b991bf538fac822205969fea17e55419fd3a09fd4f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0191c273e1d08a476f326f3b12acc6738a0bda22cb995ee1304b3843088c858e4e9ab337dc72c32243af156948e81c8584032c82c5d07822e6de6faf176f0a7b'
|
|
7
|
+
data.tar.gz: c7a0c21d7ae9a4c899c197bc569dc454afad068ed80dc4ebe4912613af985542abcb02ff443c418d20d8d544ef2b9f7f2f23405d88e683c249f25ea029adc46c
|
data/Changelog.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
NOTE: the project follows [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
## v1.3.1 - August 31st, 2023
|
|
8
|
+
|
|
9
|
+
- [bug] #5 - Does not like when labels are of form bug1foobar scoped labels
|
|
10
|
+
|
|
7
11
|
## v1.3.0 - October 12th, 2022
|
|
8
12
|
|
|
9
13
|
- [enhancement] #8 - Add option to skip CICD when shipping
|
data/exe/shipit
CHANGED
|
File without changes
|
data/lib/shipit/cli/version.rb
CHANGED
data/lib/shipit/cli/work.rb
CHANGED
|
@@ -99,7 +99,7 @@ module Shipit
|
|
|
99
99
|
mr_title = "Draft: [#{labels}] ##{issue_id} - #{sane_title}"
|
|
100
100
|
|
|
101
101
|
# 2. Add to issue properties
|
|
102
|
-
issue["source_branch"] = [issue["labels"].first.gsub(/\s+/, ""), assignee_initials, issue_id, issue_title].compact.join("-")
|
|
102
|
+
issue["source_branch"] = [issue["labels"].first.gsub(/\s+/, "").gsub(/::/, "-").gsub(/:/, ""), assignee_initials, issue_id, issue_title].compact.join("-")
|
|
103
103
|
issue["first_commit_message"] = first_commit_message
|
|
104
104
|
issue["target_branch"] = target_branch
|
|
105
105
|
issue["merge_request_title"] = mr_title
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: intello-shipit-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Benjamin Thouret
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-08-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -250,7 +250,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
250
250
|
- !ruby/object:Gem::Version
|
|
251
251
|
version: '0'
|
|
252
252
|
requirements: []
|
|
253
|
-
|
|
253
|
+
rubyforge_project:
|
|
254
|
+
rubygems_version: 2.7.3
|
|
254
255
|
signing_key:
|
|
255
256
|
specification_version: 4
|
|
256
257
|
summary: Designed to simplify working with Gitlab, its main purpose is to kickstart
|