harrison 0.9.3 → 0.9.5
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/pull_request_template.md +10 -0
- data/.github/workflows/labeller.yml +27 -0
- data/.github/workflows/release.yml +16 -0
- data/.github/workflows/release_prep.yml +20 -0
- data/.gitignore +2 -0
- data/CHANGELOG.md +70 -0
- data/harrison.gemspec +3 -4
- data/lib/harrison/version.rb +1 -1
- metadata +14 -10
- data/Gemfile.lock +0 -79
- /data/{CHANGELOG → History.md} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df7e915a7f084d245313d69c3f25aca359f24d12204d66fad189a5855b16cc16
|
|
4
|
+
data.tar.gz: 0cf0bf1af5e972eb1eacac805e69ed2d6dc4cfb91ccd13758226a1fcca17ba8a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b15b5b0b690d46581847781f50c186c64df5f9292e847bdffd30e94529fc8b54c24f70b94d56b159b03ddb8e723171292453e4d56282851ccaeba055a35ded51
|
|
7
|
+
data.tar.gz: 7cb44cad2703e036b685e2ff6000e58a23f9161d5cada4a2be48c337811bc9441793237da3b88fd23c637abe579f63ea95897191332eb68dae9bcba8fd287982
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
## Summary
|
|
2
|
+
Provide a detailed description of all the changes present in this pull request.
|
|
3
|
+
|
|
4
|
+
## Additional Context
|
|
5
|
+
Add any additional context about the problem here.
|
|
6
|
+
- [ ] Root cause and the steps to reproduce. (If applicable)
|
|
7
|
+
- [ ] Thought process behind the implementation.
|
|
8
|
+
|
|
9
|
+
## Related Issues (if any)
|
|
10
|
+
Mention any related issues or pull requests.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
name: Labeller
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
issues:
|
|
5
|
+
types:
|
|
6
|
+
- opened
|
|
7
|
+
- labeled
|
|
8
|
+
- unlabeled
|
|
9
|
+
pull_request_target:
|
|
10
|
+
types:
|
|
11
|
+
- opened
|
|
12
|
+
- labeled
|
|
13
|
+
- unlabeled
|
|
14
|
+
|
|
15
|
+
jobs:
|
|
16
|
+
label:
|
|
17
|
+
runs-on: ubuntu-latest
|
|
18
|
+
steps:
|
|
19
|
+
|
|
20
|
+
- uses: puppetlabs/community-labeller@v1.0.1
|
|
21
|
+
name: Label issues or pull requests
|
|
22
|
+
with:
|
|
23
|
+
label_name: community
|
|
24
|
+
label_color: '5319e7'
|
|
25
|
+
org_membership: puppetlabs
|
|
26
|
+
fail_if_member: 'true'
|
|
27
|
+
token: ${{ secrets.IAC_COMMUNITY_LABELER }}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
name: "release"
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
inputs:
|
|
6
|
+
target:
|
|
7
|
+
description: "The target for the release. This can be a commit sha or a branch."
|
|
8
|
+
required: false
|
|
9
|
+
default: "main"
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
release:
|
|
13
|
+
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_release.yml@main"
|
|
14
|
+
with:
|
|
15
|
+
target: "${{ github.event.inputs.target }}"
|
|
16
|
+
secrets: "inherit"
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
name: "release prep"
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
inputs:
|
|
6
|
+
target:
|
|
7
|
+
description: "The target for the release. This can be a commit sha or a branch."
|
|
8
|
+
required: false
|
|
9
|
+
default: "main"
|
|
10
|
+
version:
|
|
11
|
+
description: "Version of gem to be released."
|
|
12
|
+
required: true
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
release_prep:
|
|
16
|
+
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_release_prep.yml@main"
|
|
17
|
+
with:
|
|
18
|
+
target: "${{ github.event.inputs.target }}"
|
|
19
|
+
version: "${{ github.events.inputs.version }}"
|
|
20
|
+
secrets: "inherit"
|
data/.gitignore
CHANGED
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<!-- markdownlint-disable MD024 -->
|
|
2
|
+
# Changelog
|
|
3
|
+
|
|
4
|
+
All notable changes to this project will be documented in this file.
|
|
5
|
+
|
|
6
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
|
|
7
|
+
|
|
8
|
+
## [v0.9.5](https://github.com/puppetlabs/harrison/tree/v0.9.5) - 2023-11-04
|
|
9
|
+
|
|
10
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/v0.9.4...v0.9.5)
|
|
11
|
+
|
|
12
|
+
## [v0.9.4](https://github.com/puppetlabs/harrison/tree/v0.9.4) - 2023-10-20
|
|
13
|
+
|
|
14
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/v0.9.3...v0.9.4)
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- Adding release credence [#34](https://github.com/puppetlabs/harrison/pull/34) ([malikparvez](https://github.com/malikparvez))
|
|
19
|
+
|
|
20
|
+
## [v0.9.3](https://github.com/puppetlabs/harrison/tree/v0.9.3) - 2023-06-05
|
|
21
|
+
|
|
22
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/v0.9.2...v0.9.3)
|
|
23
|
+
|
|
24
|
+
## [v0.9.2](https://github.com/puppetlabs/harrison/tree/v0.9.2) - 2022-02-22
|
|
25
|
+
|
|
26
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/v0.9.1...v0.9.2)
|
|
27
|
+
|
|
28
|
+
## [v0.9.1](https://github.com/puppetlabs/harrison/tree/v0.9.1) - 2020-10-20
|
|
29
|
+
|
|
30
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/v0.9.0...v0.9.1)
|
|
31
|
+
|
|
32
|
+
## [v0.9.0](https://github.com/puppetlabs/harrison/tree/v0.9.0) - 2020-08-03
|
|
33
|
+
|
|
34
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/v0.8.0...v0.9.0)
|
|
35
|
+
|
|
36
|
+
## [v0.8.0](https://github.com/puppetlabs/harrison/tree/v0.8.0) - 2019-08-05
|
|
37
|
+
|
|
38
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/v0.7.0...v0.8.0)
|
|
39
|
+
|
|
40
|
+
## [v0.7.0](https://github.com/puppetlabs/harrison/tree/v0.7.0) - 2018-04-30
|
|
41
|
+
|
|
42
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/v0.6.0...v0.7.0)
|
|
43
|
+
|
|
44
|
+
## [v0.6.0](https://github.com/puppetlabs/harrison/tree/v0.6.0) - 2016-09-19
|
|
45
|
+
|
|
46
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/v0.5.0...v0.6.0)
|
|
47
|
+
|
|
48
|
+
## [v0.5.0](https://github.com/puppetlabs/harrison/tree/v0.5.0) - 2016-08-18
|
|
49
|
+
|
|
50
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/v0.4.0.b1...v0.5.0)
|
|
51
|
+
|
|
52
|
+
## [v0.4.0.b1](https://github.com/puppetlabs/harrison/tree/v0.4.0.b1) - 2016-07-12
|
|
53
|
+
|
|
54
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/v0.3.0...v0.4.0.b1)
|
|
55
|
+
|
|
56
|
+
## [v0.3.0](https://github.com/puppetlabs/harrison/tree/v0.3.0) - 2014-10-20
|
|
57
|
+
|
|
58
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/v0.2.0...v0.3.0)
|
|
59
|
+
|
|
60
|
+
## [v0.2.0](https://github.com/puppetlabs/harrison/tree/v0.2.0) - 2014-09-10
|
|
61
|
+
|
|
62
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/v0.1.0...v0.2.0)
|
|
63
|
+
|
|
64
|
+
## [v0.1.0](https://github.com/puppetlabs/harrison/tree/v0.1.0) - 2014-08-08
|
|
65
|
+
|
|
66
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/v0.0.1...v0.1.0)
|
|
67
|
+
|
|
68
|
+
## [v0.0.1](https://github.com/puppetlabs/harrison/tree/v0.0.1) - 2014-07-21
|
|
69
|
+
|
|
70
|
+
[Full Changelog](https://github.com/puppetlabs/harrison/compare/cef214380eda163ca292dd49a60a9d0a9facf2e7...v0.0.1)
|
data/harrison.gemspec
CHANGED
|
@@ -20,13 +20,12 @@ Gem::Specification.new do |spec|
|
|
|
20
20
|
spec.required_ruby_version = '>= 2.3.1'
|
|
21
21
|
|
|
22
22
|
spec.add_runtime_dependency "trollop", "~> 2.1.2"
|
|
23
|
-
spec.add_runtime_dependency "net-ssh", "~>
|
|
24
|
-
spec.add_runtime_dependency "net-scp", "~>
|
|
23
|
+
spec.add_runtime_dependency "net-ssh", "~> 7.0.0"
|
|
24
|
+
spec.add_runtime_dependency "net-scp", "~> 4.0.0"
|
|
25
25
|
spec.add_runtime_dependency "highline", "~> 2.0.3"
|
|
26
|
-
|
|
27
26
|
spec.add_development_dependency "bundler", "~> 2.3"
|
|
28
27
|
spec.add_development_dependency "rake"
|
|
29
|
-
spec.add_development_dependency "rspec", "~> 3.0"
|
|
28
|
+
spec.add_development_dependency "rspec", "~> 3.12.0"
|
|
30
29
|
spec.add_development_dependency "simplecov"
|
|
31
30
|
spec.add_development_dependency "pry-byebug"
|
|
32
31
|
spec.add_development_dependency "sourcify"
|
data/lib/harrison/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: harrison
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jesse Scott
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-11-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: trollop
|
|
@@ -30,28 +30,28 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: 7.0.0
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version:
|
|
40
|
+
version: 7.0.0
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: net-scp
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version:
|
|
47
|
+
version: 4.0.0
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version:
|
|
54
|
+
version: 4.0.0
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: highline
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -100,14 +100,14 @@ dependencies:
|
|
|
100
100
|
requirements:
|
|
101
101
|
- - "~>"
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
|
-
version:
|
|
103
|
+
version: 3.12.0
|
|
104
104
|
type: :development
|
|
105
105
|
prerelease: false
|
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
107
|
requirements:
|
|
108
108
|
- - "~>"
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
|
-
version:
|
|
110
|
+
version: 3.12.0
|
|
111
111
|
- !ruby/object:Gem::Dependency
|
|
112
112
|
name: simplecov
|
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -158,13 +158,17 @@ executables:
|
|
|
158
158
|
extensions: []
|
|
159
159
|
extra_rdoc_files: []
|
|
160
160
|
files:
|
|
161
|
+
- ".github/pull_request_template.md"
|
|
162
|
+
- ".github/workflows/labeller.yml"
|
|
163
|
+
- ".github/workflows/release.yml"
|
|
164
|
+
- ".github/workflows/release_prep.yml"
|
|
161
165
|
- ".github/workflows/ruby-spec.yml"
|
|
162
166
|
- ".gitignore"
|
|
163
167
|
- ".rspec"
|
|
164
|
-
- CHANGELOG
|
|
168
|
+
- CHANGELOG.md
|
|
165
169
|
- CODEOWNERS
|
|
166
170
|
- Gemfile
|
|
167
|
-
-
|
|
171
|
+
- History.md
|
|
168
172
|
- IDEAS
|
|
169
173
|
- LICENSE.txt
|
|
170
174
|
- README.md
|
data/Gemfile.lock
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
harrison (0.9.2)
|
|
5
|
-
highline (~> 2.0.3)
|
|
6
|
-
net-scp (~> 3.0)
|
|
7
|
-
net-ssh (~> 6.1)
|
|
8
|
-
trollop (~> 2.1.2)
|
|
9
|
-
|
|
10
|
-
GEM
|
|
11
|
-
remote: https://rubygems.org/
|
|
12
|
-
specs:
|
|
13
|
-
byebug (11.1.3)
|
|
14
|
-
coderay (1.1.3)
|
|
15
|
-
diff-lcs (1.5.0)
|
|
16
|
-
docile (1.4.0)
|
|
17
|
-
file-tail (1.2.0)
|
|
18
|
-
tins (~> 1.0)
|
|
19
|
-
highline (2.0.3)
|
|
20
|
-
method_source (1.0.0)
|
|
21
|
-
net-scp (3.0.0)
|
|
22
|
-
net-ssh (>= 2.6.5, < 7.0.0)
|
|
23
|
-
net-ssh (6.1.0)
|
|
24
|
-
pry (0.13.1)
|
|
25
|
-
coderay (~> 1.1)
|
|
26
|
-
method_source (~> 1.0)
|
|
27
|
-
pry-byebug (3.9.0)
|
|
28
|
-
byebug (~> 11.0)
|
|
29
|
-
pry (~> 0.13.0)
|
|
30
|
-
rake (13.0.6)
|
|
31
|
-
rspec (3.11.0)
|
|
32
|
-
rspec-core (~> 3.11.0)
|
|
33
|
-
rspec-expectations (~> 3.11.0)
|
|
34
|
-
rspec-mocks (~> 3.11.0)
|
|
35
|
-
rspec-core (3.11.0)
|
|
36
|
-
rspec-support (~> 3.11.0)
|
|
37
|
-
rspec-expectations (3.11.0)
|
|
38
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
39
|
-
rspec-support (~> 3.11.0)
|
|
40
|
-
rspec-mocks (3.11.0)
|
|
41
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
42
|
-
rspec-support (~> 3.11.0)
|
|
43
|
-
rspec-support (3.11.0)
|
|
44
|
-
ruby2ruby (2.4.4)
|
|
45
|
-
ruby_parser (~> 3.1)
|
|
46
|
-
sexp_processor (~> 4.6)
|
|
47
|
-
ruby_parser (3.18.1)
|
|
48
|
-
sexp_processor (~> 4.16)
|
|
49
|
-
sexp_processor (4.16.0)
|
|
50
|
-
simplecov (0.21.2)
|
|
51
|
-
docile (~> 1.1)
|
|
52
|
-
simplecov-html (~> 0.11)
|
|
53
|
-
simplecov_json_formatter (~> 0.1)
|
|
54
|
-
simplecov-html (0.12.3)
|
|
55
|
-
simplecov_json_formatter (0.1.4)
|
|
56
|
-
sourcify (0.5.0)
|
|
57
|
-
file-tail (>= 1.0.5)
|
|
58
|
-
ruby2ruby (>= 1.2.5)
|
|
59
|
-
ruby_parser (>= 2.0.5)
|
|
60
|
-
sexp_processor (>= 3.0.5)
|
|
61
|
-
sync (0.5.0)
|
|
62
|
-
tins (1.31.0)
|
|
63
|
-
sync
|
|
64
|
-
trollop (2.1.3)
|
|
65
|
-
|
|
66
|
-
PLATFORMS
|
|
67
|
-
x86_64-darwin-18
|
|
68
|
-
|
|
69
|
-
DEPENDENCIES
|
|
70
|
-
bundler (~> 2.3)
|
|
71
|
-
harrison!
|
|
72
|
-
pry-byebug
|
|
73
|
-
rake
|
|
74
|
-
rspec (~> 3.0)
|
|
75
|
-
simplecov
|
|
76
|
-
sourcify
|
|
77
|
-
|
|
78
|
-
BUNDLED WITH
|
|
79
|
-
2.3.7
|
/data/{CHANGELOG → History.md}
RENAMED
|
File without changes
|