pdksync 0.5.0 → 0.8.0
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 +15 -0
- data/.github/workflows/ci.yml +23 -0
- data/.github/workflows/labeller.yml +22 -0
- data/.github/workflows/mend.yml +15 -0
- data/.github/workflows/nightly.yml +22 -0
- data/.github/workflows/release.yml +16 -0
- data/.github/workflows/release_prep.yml +20 -0
- data/.gitignore +2 -0
- data/.rubocop.yml +35 -46
- data/CHANGELOG.md +69 -44
- data/CODEOWNERS +2 -0
- data/Gemfile +10 -3
- data/README.md +330 -18
- data/Rakefile +8 -29
- data/lib/pdksync/conf/puppet_abs_supported_platforms.yaml +41 -0
- data/lib/pdksync/configuration.rb +155 -0
- data/lib/pdksync/githubclient.rb +3 -1
- data/lib/pdksync/gitplatformclient.rb +2 -2
- data/lib/pdksync/jenkinsclient.rb +50 -0
- data/lib/pdksync/logger.rb +120 -0
- data/lib/pdksync/rake_tasks.rb +100 -16
- data/lib/pdksync/utils.rb +1296 -0
- data/lib/pdksync/version.rb +3 -0
- data/lib/pdksync.rb +310 -450
- data/managed_modules.yml +16 -33
- data/pdksync.gemspec +20 -17
- data/spec/configuration_spec.rb +56 -0
- data/spec/fixtures/fake_managed_modules.yaml +2 -0
- data/spec/fixtures/pdksync.yml +2 -0
- data/spec/logger_spec.rb +44 -0
- data/spec/pdksync_spec.rb +185 -0
- data/spec/spec_helper.rb +74 -0
- data/spec/utils_spec.rb +134 -0
- metadata +88 -22
- data/.travis.yml +0 -27
- data/lib/pdksync/constants.rb +0 -78
- data/spec/lib/pdksync_spec.rb +0 -58
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 167daa2e3f6211d588249d856b2f7a7146649e48f8ad208790d4a7bdaadd9443
|
4
|
+
data.tar.gz: 5c214f25324c32d3b585b6b0de43c858a0acbe4afc81e22d149d3aef3c7af19e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df85f2394b095bb7d86dd342a7ef18d6a25028b1331768de29608b9c0c0714361c93ec67a801c52223e291431ecc8792d1448448e3e62eed7b65f3a39a508da4
|
7
|
+
data.tar.gz: 92b8351e50eef6f3678717379a82d4461e1d2fd90ebb45618a6a8bd18308e30ee71fba3d6c9113d2e1e563e24f2b78ce85469c8ed3147956eff8b27d16d7e75e
|
@@ -0,0 +1,15 @@
|
|
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.
|
11
|
+
|
12
|
+
## Checklist
|
13
|
+
- [ ] 🟢 Spec tests.
|
14
|
+
- [ ] 🟢 Acceptance tests.
|
15
|
+
- [ ] Manually verified.
|
@@ -0,0 +1,23 @@
|
|
1
|
+
name: "ci"
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request:
|
5
|
+
branches:
|
6
|
+
- "main"
|
7
|
+
workflow_dispatch:
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
|
11
|
+
spec:
|
12
|
+
strategy:
|
13
|
+
fail-fast: false
|
14
|
+
matrix:
|
15
|
+
ruby_version:
|
16
|
+
- '2.7'
|
17
|
+
- '3.2'
|
18
|
+
name: "spec (ruby ${{ matrix.ruby_version }})"
|
19
|
+
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
|
20
|
+
secrets: "inherit"
|
21
|
+
with:
|
22
|
+
ruby_version: ${{ matrix.ruby_version }}
|
23
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
name: community-labeller
|
2
|
+
|
3
|
+
on:
|
4
|
+
issues:
|
5
|
+
types:
|
6
|
+
- opened
|
7
|
+
pull_request_target:
|
8
|
+
types:
|
9
|
+
- opened
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
label:
|
13
|
+
runs-on: ubuntu-latest
|
14
|
+
steps:
|
15
|
+
|
16
|
+
- uses: puppetlabs/community-labeller@v0
|
17
|
+
name: Label issues or pull requests
|
18
|
+
with:
|
19
|
+
label_name: community
|
20
|
+
label_color: '5319e7'
|
21
|
+
org_membership: puppetlabs
|
22
|
+
token: ${{ secrets.IAC_COMMUNITY_LABELER }}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
name: "nightly"
|
2
|
+
|
3
|
+
on:
|
4
|
+
schedule:
|
5
|
+
- cron: "0 0 * * *"
|
6
|
+
workflow_dispatch:
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
|
10
|
+
spec:
|
11
|
+
strategy:
|
12
|
+
fail-fast: false
|
13
|
+
matrix:
|
14
|
+
ruby_version:
|
15
|
+
- '2.7'
|
16
|
+
- '3.2'
|
17
|
+
name: "spec (ruby ${{ matrix.ruby_version }})"
|
18
|
+
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
|
19
|
+
secrets: "inherit"
|
20
|
+
with:
|
21
|
+
ruby_version: ${{ matrix.ruby_version }}
|
22
|
+
|
@@ -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.event.inputs.version }}"
|
20
|
+
secrets: "inherit"
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,28 +1,40 @@
|
|
1
1
|
---
|
2
|
+
inherit_from: .rubocop_todo.yml
|
3
|
+
|
4
|
+
require:
|
5
|
+
- rubocop-performance
|
6
|
+
- rubocop-rspec
|
2
7
|
AllCops:
|
8
|
+
NewCops: enable
|
3
9
|
DisplayCopNames: true
|
4
|
-
|
10
|
+
ExtraDetails: true
|
11
|
+
DisplayStyleGuide: true
|
12
|
+
TargetRubyVersion: '2.7'
|
5
13
|
Include:
|
6
|
-
|
14
|
+
- "./**/*.rb"
|
7
15
|
Exclude:
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
+
- bin/*
|
17
|
+
- ".vendor/**/*"
|
18
|
+
- Gemfile
|
19
|
+
- Rakefile
|
20
|
+
- pkg/**/*
|
21
|
+
- spec/fixtures/**/*
|
22
|
+
- vendor/**/*
|
23
|
+
- modules_pdksync/**/*
|
16
24
|
Metrics/LineLength:
|
17
25
|
Description: People have wide screens, use them.
|
18
|
-
Max:
|
26
|
+
Max: 235
|
19
27
|
Style/BlockDelimiters:
|
20
|
-
Description:
|
28
|
+
Description:
|
29
|
+
Prefer braces for chaining. Mostly an aesthetical choice. Better to
|
21
30
|
be consistent then.
|
22
31
|
EnforcedStyle: braces_for_chaining
|
23
32
|
Style/ClassAndModuleChildren:
|
33
|
+
Enabled: false
|
24
34
|
Description: Compact style reduces the required amount of indentation.
|
25
35
|
EnforcedStyle: compact
|
36
|
+
Exclude:
|
37
|
+
- lib/pdksync/configuration.rb
|
26
38
|
Style/EmptyElse:
|
27
39
|
Description: Enforce against empty else clauses, but allow `nil` for clarity.
|
28
40
|
EnforcedStyle: empty
|
@@ -30,7 +42,8 @@ Style/FormatString:
|
|
30
42
|
Description: Following the main puppet project's style, prefer the % format format.
|
31
43
|
EnforcedStyle: percent
|
32
44
|
Style/FormatStringToken:
|
33
|
-
Description:
|
45
|
+
Description:
|
46
|
+
Following the main puppet project's style, prefer the simpler template
|
34
47
|
tokens over annotated ones.
|
35
48
|
EnforcedStyle: template
|
36
49
|
Style/Lambda:
|
@@ -40,45 +53,21 @@ Style/RegexpLiteral:
|
|
40
53
|
Description: Community preference. See https://github.com/voxpupuli/modulesync_config/issues/168
|
41
54
|
EnforcedStyle: percent_r
|
42
55
|
Style/TernaryParentheses:
|
43
|
-
Description:
|
56
|
+
Description:
|
57
|
+
Checks for use of parentheses around ternary conditions. Enforce parentheses
|
44
58
|
on complex expressions for better readability, but seriously consider breaking
|
45
59
|
it up.
|
46
60
|
EnforcedStyle: require_parentheses_when_complex
|
47
61
|
Style/TrailingCommaInArguments:
|
48
|
-
Description:
|
62
|
+
Description:
|
63
|
+
Prefer always trailing comma on multiline argument lists. This makes
|
49
64
|
diffs, and re-ordering nicer.
|
50
65
|
EnforcedStyleForMultiline: comma
|
51
66
|
Style/SymbolArray:
|
52
67
|
Description: Using percent style obscures symbolic intent of array's contents.
|
53
68
|
EnforcedStyle: brackets
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
Style/StringMethods:
|
60
|
-
Enabled: true
|
61
|
-
Layout/EndOfLine:
|
62
|
-
Enabled: false
|
63
|
-
Metrics/AbcSize:
|
64
|
-
Enabled: false
|
65
|
-
Metrics/BlockLength:
|
66
|
-
Enabled: false
|
67
|
-
Metrics/ClassLength:
|
68
|
-
Enabled: false
|
69
|
-
Metrics/CyclomaticComplexity:
|
70
|
-
Enabled: false
|
71
|
-
Metrics/MethodLength:
|
72
|
-
Enabled: false
|
73
|
-
Metrics/ModuleLength:
|
74
|
-
Enabled: false
|
75
|
-
Metrics/ParameterLists:
|
76
|
-
Enabled: false
|
77
|
-
Metrics/PerceivedComplexity:
|
78
|
-
Enabled: false
|
79
|
-
Style/AsciiComments:
|
80
|
-
Enabled: false
|
81
|
-
Style/IfUnlessModifier:
|
82
|
-
Enabled: false
|
83
|
-
Style/SymbolProc:
|
84
|
-
Enabled: false
|
69
|
+
Style/Documentation:
|
70
|
+
Exclude:
|
71
|
+
- lib/pdksync/utils.rb
|
72
|
+
- lib/pdksync/logger.rb
|
73
|
+
- lib/pdksync/configuration.rb
|
data/CHANGELOG.md
CHANGED
@@ -1,88 +1,113 @@
|
|
1
|
-
|
1
|
+
<!-- markdownlint-disable MD024 -->
|
2
|
+
# Changelog
|
2
3
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
4
|
+
All notable changes to this project will be documented in this file.
|
4
5
|
|
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).
|
6
7
|
|
7
|
-
[
|
8
|
+
## [v0.8.0](https://github.com/puppetlabs/pdksync/tree/v0.8.0) - 2023-07-14
|
9
|
+
|
10
|
+
[Full Changelog](https://github.com/puppetlabs/pdksync/compare/v0.7.0...v0.8.0)
|
8
11
|
|
9
12
|
### Added
|
10
13
|
|
11
|
-
-
|
12
|
-
-
|
14
|
+
- Improve module validation performance [#193](https://github.com/puppetlabs/pdksync/pull/193) ([seanmil](https://github.com/seanmil))
|
15
|
+
- (CONT-1138) - Add ruby 3.x compatibility [#191](https://github.com/puppetlabs/pdksync/pull/191) ([jordanbreen28](https://github.com/jordanbreen28))
|
13
16
|
|
14
17
|
### Fixed
|
15
18
|
|
16
|
-
-
|
19
|
+
- (CONT-1215) - Fix formatting for pdksync:show_config [#189](https://github.com/puppetlabs/pdksync/pull/189) ([jordanbreen28](https://github.com/jordanbreen28))
|
17
20
|
|
18
|
-
## [
|
21
|
+
## [v0.7.0](https://github.com/puppetlabs/pdksync/tree/v0.7.0) - 2023-05-25
|
19
22
|
|
20
|
-
[Full Changelog](https://github.com/puppetlabs/pdksync/compare/v0.
|
23
|
+
[Full Changelog](https://github.com/puppetlabs/pdksync/compare/v0.6.0...v0.7.0)
|
21
24
|
|
22
25
|
### Added
|
23
26
|
|
24
|
-
-
|
25
|
-
- \(MODULES-7233\) - Add configurable file option [\#81](https://github.com/puppetlabs/pdksync/pull/81) ([eimlav](https://github.com/eimlav))
|
27
|
+
- (maint) Add Support for AlmaLinux and Rocky [#165](https://github.com/puppetlabs/pdksync/pull/165) ([david22swan](https://github.com/david22swan))
|
26
28
|
|
27
29
|
### Fixed
|
28
30
|
|
29
|
-
-
|
30
|
-
- \(MODULES-8382\) - Fix API rate limit false positive [\#83](https://github.com/puppetlabs/pdksync/pull/83) ([eimlav](https://github.com/eimlav))
|
31
|
+
- Fix `Logger.error` [#173](https://github.com/puppetlabs/pdksync/pull/173) ([alexjfisher](https://github.com/alexjfisher))
|
31
32
|
|
32
|
-
## [v0.
|
33
|
+
## [v0.6.0](https://github.com/puppetlabs/pdksync/tree/v0.6.0) - 2021-08-16
|
33
34
|
|
34
|
-
[Full Changelog](https://github.com/puppetlabs/pdksync/compare/0.
|
35
|
+
[Full Changelog](https://github.com/puppetlabs/pdksync/compare/0.5.0...v0.6.0)
|
35
36
|
|
36
37
|
### Added
|
37
38
|
|
38
|
-
-
|
39
|
-
-
|
39
|
+
- (FEAT) Add tasks for updating supported platforms / requirements [#142](https://github.com/puppetlabs/pdksync/pull/142) ([sanfrancrisko](https://github.com/sanfrancrisko))
|
40
|
+
- Add tasks to add / update entries in module's provision.yaml [#136](https://github.com/puppetlabs/pdksync/pull/136) ([sanfrancrisko](https://github.com/sanfrancrisko))
|
41
|
+
- (MODULES-10379) Multi Gem testing [#128](https://github.com/puppetlabs/pdksync/pull/128) ([sheenaajay](https://github.com/sheenaajay))
|
42
|
+
- (maint) Add bundler tasks and pdk requirement [#120](https://github.com/puppetlabs/pdksync/pull/120) ([logicminds](https://github.com/logicminds))
|
43
|
+
- (MODULES-9786) Using pdksync to update the Gemfile [#114](https://github.com/puppetlabs/pdksync/pull/114) ([sheenaajay](https://github.com/sheenaajay))
|
44
|
+
- Major refactor and new features [#105](https://github.com/puppetlabs/pdksync/pull/105) ([logicminds](https://github.com/logicminds))
|
40
45
|
|
41
46
|
### Fixed
|
42
47
|
|
43
|
-
-
|
48
|
+
- (GH-148) Fix logging for pdksync:pdk_validate task [#150](https://github.com/puppetlabs/pdksync/pull/150) ([sanfrancrisko](https://github.com/sanfrancrisko))
|
49
|
+
- (MODULES-8440) Ensure pdksync works on windows [#133](https://github.com/puppetlabs/pdksync/pull/133) ([michaeltlombardi](https://github.com/michaeltlombardi))
|
50
|
+
- (maint) fix gemfury upload [#132](https://github.com/puppetlabs/pdksync/pull/132) ([sheenaajay](https://github.com/sheenaajay))
|
51
|
+
- fix gemfury testing upload [#131](https://github.com/puppetlabs/pdksync/pull/131) ([DavidS](https://github.com/DavidS))
|
52
|
+
- (IAC-354) Fix Gemfile update [#130](https://github.com/puppetlabs/pdksync/pull/130) ([sheenaajay](https://github.com/sheenaajay))
|
53
|
+
- (maint) 27x performance improvement [#123](https://github.com/puppetlabs/pdksync/pull/123) ([DavidS](https://github.com/DavidS))
|
54
|
+
- (maint) Add Requirements to README.md and fix travis [#118](https://github.com/puppetlabs/pdksync/pull/118) ([mihaibuzgau](https://github.com/mihaibuzgau))
|
44
55
|
|
45
|
-
## [0.
|
56
|
+
## [0.5.0](https://github.com/puppetlabs/pdksync/tree/0.5.0) - 2019-08-21
|
46
57
|
|
47
|
-
[Full Changelog](https://github.com/puppetlabs/pdksync/compare/0.
|
58
|
+
[Full Changelog](https://github.com/puppetlabs/pdksync/compare/0.4.0...0.5.0)
|
48
59
|
|
49
60
|
### Added
|
50
61
|
|
51
|
-
-
|
52
|
-
-
|
53
|
-
- \(feat\) adding git commit rake task [\#63](https://github.com/puppetlabs/pdksync/pull/63) ([tphoney](https://github.com/tphoney))
|
54
|
-
- \(FEAT\) add clone\_managed\_modules task [\#58](https://github.com/puppetlabs/pdksync/pull/58) ([tphoney](https://github.com/tphoney))
|
62
|
+
- pdksync externalisation fixes [#95](https://github.com/puppetlabs/pdksync/pull/95) ([DavidS](https://github.com/DavidS))
|
63
|
+
- (MODULES-8730) Display warning on outdated pdk version [#92](https://github.com/puppetlabs/pdksync/pull/92) ([eimlav](https://github.com/eimlav))
|
55
64
|
|
56
65
|
### Fixed
|
57
66
|
|
58
|
-
-
|
67
|
+
- (MODULES-9011) deal with modules that do not need updating [#101](https://github.com/puppetlabs/pdksync/pull/101) ([DavidS](https://github.com/DavidS))
|
59
68
|
|
60
|
-
## [0.
|
69
|
+
## [0.4.0](https://github.com/puppetlabs/pdksync/tree/0.4.0) - 2019-02-04
|
61
70
|
|
62
|
-
[Full Changelog](https://github.com/puppetlabs/pdksync/compare/
|
71
|
+
[Full Changelog](https://github.com/puppetlabs/pdksync/compare/v0.3.0...0.4.0)
|
72
|
+
|
73
|
+
### Added
|
74
|
+
|
75
|
+
- (MODULES-8419) Refactor to add support for GitLab [#85](https://github.com/puppetlabs/pdksync/pull/85) ([antaflos](https://github.com/antaflos))
|
76
|
+
- (MODULES-7233) - Add configurable file option [#81](https://github.com/puppetlabs/pdksync/pull/81) ([eimlav](https://github.com/eimlav))
|
77
|
+
|
78
|
+
### Fixed
|
79
|
+
|
80
|
+
- (MODULES-8283) - Fix PR title overwritten in pdksync runs [#84](https://github.com/puppetlabs/pdksync/pull/84) ([eimlav](https://github.com/eimlav))
|
81
|
+
- (MODULES-8382) - Fix API rate limit false positive [#83](https://github.com/puppetlabs/pdksync/pull/83) ([eimlav](https://github.com/eimlav))
|
82
|
+
|
83
|
+
## [v0.3.0](https://github.com/puppetlabs/pdksync/tree/v0.3.0) - 2018-11-15
|
84
|
+
|
85
|
+
[Full Changelog](https://github.com/puppetlabs/pdksync/compare/0.2.0...v0.3.0)
|
63
86
|
|
64
87
|
### Added
|
65
88
|
|
66
|
-
- Add
|
67
|
-
-
|
68
|
-
- \(MODULES-7021\) - Write README for pdksync [\#28](https://github.com/puppetlabs/pdksync/pull/28) ([david22swan](https://github.com/david22swan))
|
69
|
-
- \(MODULES-7121\) Addition of error handling inside functions [\#27](https://github.com/puppetlabs/pdksync/pull/27) ([HelenCampbell](https://github.com/HelenCampbell))
|
70
|
-
- \(MODULES-7085\) Notation added through the module [\#26](https://github.com/puppetlabs/pdksync/pull/26) ([david22swan](https://github.com/david22swan))
|
71
|
-
- \(MODULES-7005\) - Add a test for adding files and update test titles [\#25](https://github.com/puppetlabs/pdksync/pull/25) ([pmcmaw](https://github.com/pmcmaw))
|
72
|
-
- \(MODULES-7092\) - Read in managed\_modules.yml list [\#23](https://github.com/puppetlabs/pdksync/pull/23) ([david22swan](https://github.com/david22swan))
|
73
|
-
- \(MODULES-7007\) Added basic iteration to the module. [\#22](https://github.com/puppetlabs/pdksync/pull/22) ([david22swan](https://github.com/david22swan))
|
74
|
-
- \(MODULES-7049\) - Introduce pdk version and template url [\#21](https://github.com/puppetlabs/pdksync/pull/21) ([pmcmaw](https://github.com/pmcmaw))
|
75
|
-
- \(MODULES-7030\) - Introduce constants.rb [\#20](https://github.com/puppetlabs/pdksync/pull/20) ([david22swan](https://github.com/david22swan))
|
76
|
-
- Addition of PR creation [\#10](https://github.com/puppetlabs/pdksync/pull/10) ([HelenCampbell](https://github.com/HelenCampbell))
|
77
|
-
- Basic Functionality Added [\#5](https://github.com/puppetlabs/pdksync/pull/5) ([david22swan](https://github.com/david22swan))
|
78
|
-
- Setup of Files [\#1](https://github.com/puppetlabs/pdksync/pull/1) ([david22swan](https://github.com/david22swan))
|
89
|
+
- (MODULES-8231) - Add additional title info for pdksync runs [#76](https://github.com/puppetlabs/pdksync/pull/76) ([eimlav](https://github.com/eimlav))
|
90
|
+
- (MODULES-7695) - Add maintenance labels for PRs [#75](https://github.com/puppetlabs/pdksync/pull/75) ([eimlav](https://github.com/eimlav))
|
79
91
|
|
80
92
|
### Fixed
|
81
93
|
|
82
|
-
-
|
83
|
-
- Change push command to use git ruby [\#13](https://github.com/puppetlabs/pdksync/pull/13) ([HelenCampbell](https://github.com/HelenCampbell))
|
84
|
-
- PDK Update fix [\#8](https://github.com/puppetlabs/pdksync/pull/8) ([david22swan](https://github.com/david22swan))
|
94
|
+
- (MODULES-8002) - Fix bundle commands not running in correct dir [#79](https://github.com/puppetlabs/pdksync/pull/79) ([eimlav](https://github.com/eimlav))
|
85
95
|
|
96
|
+
## [0.2.0](https://github.com/puppetlabs/pdksync/tree/0.2.0) - 2018-11-02
|
86
97
|
|
98
|
+
[Full Changelog](https://github.com/puppetlabs/pdksync/compare/0.1.0...0.2.0)
|
99
|
+
|
100
|
+
### Added
|
87
101
|
|
88
|
-
|
102
|
+
- (feat) add colourised output, fix pdk path [#68](https://github.com/puppetlabs/pdksync/pull/68) ([tphoney](https://github.com/tphoney))
|
103
|
+
- (CLOUD-2094) adding container modules to the list [#67](https://github.com/puppetlabs/pdksync/pull/67) ([sheenaajay](https://github.com/sheenaajay))
|
104
|
+
- (feat) adding git commit rake task [#63](https://github.com/puppetlabs/pdksync/pull/63) ([tphoney](https://github.com/tphoney))
|
105
|
+
- (FEAT) add clone_managed_modules task [#58](https://github.com/puppetlabs/pdksync/pull/58) ([tphoney](https://github.com/tphoney))
|
106
|
+
|
107
|
+
### Fixed
|
108
|
+
|
109
|
+
- Use https instead of ssh for the clone [#72](https://github.com/puppetlabs/pdksync/pull/72) ([HelenCampbell](https://github.com/HelenCampbell))
|
110
|
+
|
111
|
+
## [0.1.0](https://github.com/puppetlabs/pdksync/tree/0.1.0) - 2018-05-23
|
112
|
+
|
113
|
+
[Full Changelog](https://github.com/puppetlabs/pdksync/compare/73bf282b297781bc26562bfb51b91b4f7b1632d1...0.1.0)
|
data/CODEOWNERS
ADDED
data/Gemfile
CHANGED
@@ -1,9 +1,16 @@
|
|
1
1
|
source "https://rubygems.org"
|
2
2
|
|
3
|
-
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
|
3
|
+
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
4
4
|
|
5
5
|
# Specify your gem's dependencies in pdksync.gemspec
|
6
6
|
gemspec
|
7
7
|
|
8
|
-
|
9
|
-
gem '
|
8
|
+
group :development do
|
9
|
+
gem 'rb-readline', require: true
|
10
|
+
end
|
11
|
+
|
12
|
+
group :rubocop do
|
13
|
+
gem 'rubocop', '~> 1.48.1', require: false
|
14
|
+
gem 'rubocop-rspec', '~> 2.19', require: false
|
15
|
+
gem 'rubocop-performance', '~> 1.16', require: false
|
16
|
+
end
|