pdk 1.9.0 → 3.2.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 +5 -5
- data/CHANGELOG.md +744 -711
- data/README.md +23 -21
- data/lib/pdk/answer_file.rb +3 -112
- data/lib/pdk/bolt.rb +20 -0
- data/lib/pdk/cli/build.rb +51 -54
- data/lib/pdk/cli/bundle.rb +33 -29
- data/lib/pdk/cli/console.rb +148 -0
- data/lib/pdk/cli/convert.rb +46 -37
- data/lib/pdk/cli/env.rb +51 -0
- data/lib/pdk/cli/errors.rb +4 -3
- data/lib/pdk/cli/exec/command.rb +285 -0
- data/lib/pdk/cli/exec/interactive_command.rb +109 -0
- data/lib/pdk/cli/exec.rb +32 -201
- data/lib/pdk/cli/exec_group.rb +79 -43
- data/lib/pdk/cli/get/config.rb +26 -0
- data/lib/pdk/cli/get.rb +22 -0
- data/lib/pdk/cli/new/class.rb +20 -22
- data/lib/pdk/cli/new/defined_type.rb +21 -21
- data/lib/pdk/cli/new/fact.rb +27 -0
- data/lib/pdk/cli/new/function.rb +27 -0
- data/lib/pdk/cli/new/module.rb +40 -29
- data/lib/pdk/cli/new/provider.rb +18 -18
- data/lib/pdk/cli/new/task.rb +23 -22
- data/lib/pdk/cli/new/test.rb +52 -0
- data/lib/pdk/cli/new/transport.rb +27 -0
- data/lib/pdk/cli/new.rb +15 -9
- data/lib/pdk/cli/release/prep.rb +39 -0
- data/lib/pdk/cli/release/publish.rb +46 -0
- data/lib/pdk/cli/release.rb +185 -0
- data/lib/pdk/cli/remove/config.rb +83 -0
- data/lib/pdk/cli/remove.rb +22 -0
- data/lib/pdk/cli/set/config.rb +121 -0
- data/lib/pdk/cli/set.rb +22 -0
- data/lib/pdk/cli/test/unit.rb +71 -69
- data/lib/pdk/cli/test.rb +9 -8
- data/lib/pdk/cli/update.rb +38 -21
- data/lib/pdk/cli/util/command_redirector.rb +13 -3
- data/lib/pdk/cli/util/interview.rb +25 -9
- data/lib/pdk/cli/util/option_normalizer.rb +6 -6
- data/lib/pdk/cli/util/option_validator.rb +19 -9
- data/lib/pdk/cli/util/spinner.rb +13 -0
- data/lib/pdk/cli/util/update_manager_printer.rb +82 -0
- data/lib/pdk/cli/util.rb +105 -48
- data/lib/pdk/cli/validate.rb +96 -111
- data/lib/pdk/cli.rb +134 -87
- data/lib/pdk/config/errors.rb +5 -0
- data/lib/pdk/config/ini_file.rb +184 -0
- data/lib/pdk/config/ini_file_setting.rb +35 -0
- data/lib/pdk/config/json.rb +35 -0
- data/lib/pdk/config/json_schema_namespace.rb +137 -0
- data/lib/pdk/config/json_schema_setting.rb +51 -0
- data/lib/pdk/config/json_with_schema.rb +47 -0
- data/lib/pdk/config/namespace.rb +362 -0
- data/lib/pdk/config/setting.rb +134 -0
- data/lib/pdk/config/task_schema.json +116 -0
- data/lib/pdk/config/validator.rb +31 -0
- data/lib/pdk/config/yaml.rb +41 -0
- data/lib/pdk/config/yaml_with_schema.rb +51 -0
- data/lib/pdk/config.rb +304 -0
- data/lib/pdk/context/control_repo.rb +61 -0
- data/lib/pdk/context/module.rb +28 -0
- data/lib/pdk/context/none.rb +22 -0
- data/lib/pdk/context.rb +98 -0
- data/lib/pdk/control_repo.rb +89 -0
- data/lib/pdk/generate/defined_type.rb +27 -33
- data/lib/pdk/generate/fact.rb +26 -0
- data/lib/pdk/generate/function.rb +49 -0
- data/lib/pdk/generate/module.rb +160 -153
- data/lib/pdk/generate/provider.rb +16 -69
- data/lib/pdk/generate/puppet_class.rb +27 -32
- data/lib/pdk/generate/puppet_object.rb +100 -159
- data/lib/pdk/generate/task.rb +34 -51
- data/lib/pdk/generate/transport.rb +34 -0
- data/lib/pdk/generate.rb +21 -8
- data/lib/pdk/logger.rb +24 -6
- data/lib/pdk/module/build.rb +125 -37
- data/lib/pdk/module/convert.rb +146 -65
- data/lib/pdk/module/metadata.rb +72 -71
- data/lib/pdk/module/release.rb +255 -0
- data/lib/pdk/module/update.rb +48 -37
- data/lib/pdk/module/update_manager.rb +75 -39
- data/lib/pdk/module.rb +10 -2
- data/lib/pdk/monkey_patches.rb +268 -0
- data/lib/pdk/report/event.rb +36 -48
- data/lib/pdk/report.rb +35 -22
- data/lib/pdk/template/fetcher/git.rb +84 -0
- data/lib/pdk/template/fetcher/local.rb +29 -0
- data/lib/pdk/template/fetcher.rb +100 -0
- data/lib/pdk/template/renderer/v1/legacy_template_dir.rb +108 -0
- data/lib/pdk/template/renderer/v1/renderer.rb +131 -0
- data/lib/pdk/template/renderer/v1/template_file.rb +100 -0
- data/lib/pdk/template/renderer/v1.rb +25 -0
- data/lib/pdk/template/renderer.rb +97 -0
- data/lib/pdk/template/template_dir.rb +67 -0
- data/lib/pdk/template.rb +52 -0
- data/lib/pdk/tests/unit.rb +101 -51
- data/lib/pdk/util/bundler.rb +44 -42
- data/lib/pdk/util/changelog_generator.rb +138 -0
- data/lib/pdk/util/env.rb +48 -0
- data/lib/pdk/util/filesystem.rb +139 -2
- data/lib/pdk/util/git.rb +108 -8
- data/lib/pdk/util/json_finder.rb +86 -0
- data/lib/pdk/util/puppet_strings.rb +125 -0
- data/lib/pdk/util/puppet_version.rb +71 -87
- data/lib/pdk/util/ruby_version.rb +49 -25
- data/lib/pdk/util/template_uri.rb +283 -0
- data/lib/pdk/util/vendored_file.rb +34 -42
- data/lib/pdk/util/version.rb +11 -10
- data/lib/pdk/util/windows/api_types.rb +74 -44
- data/lib/pdk/util/windows/file.rb +31 -27
- data/lib/pdk/util/windows/process.rb +74 -0
- data/lib/pdk/util/windows/string.rb +19 -12
- data/lib/pdk/util/windows.rb +2 -0
- data/lib/pdk/util.rb +111 -124
- data/lib/pdk/validate/control_repo/control_repo_validator_group.rb +23 -0
- data/lib/pdk/validate/control_repo/environment_conf_validator.rb +98 -0
- data/lib/pdk/validate/external_command_validator.rb +213 -0
- data/lib/pdk/validate/internal_ruby_validator.rb +101 -0
- data/lib/pdk/validate/invokable_validator.rb +238 -0
- data/lib/pdk/validate/metadata/metadata_json_lint_validator.rb +84 -0
- data/lib/pdk/validate/metadata/metadata_syntax_validator.rb +76 -0
- data/lib/pdk/validate/metadata/metadata_validator_group.rb +20 -0
- data/lib/pdk/validate/puppet/puppet_epp_validator.rb +131 -0
- data/lib/pdk/validate/puppet/puppet_lint_validator.rb +66 -0
- data/lib/pdk/validate/puppet/puppet_plan_syntax_validator.rb +38 -0
- data/lib/pdk/validate/puppet/puppet_syntax_validator.rb +135 -0
- data/lib/pdk/validate/puppet/puppet_validator_group.rb +22 -0
- data/lib/pdk/validate/ruby/ruby_rubocop_validator.rb +79 -0
- data/lib/pdk/validate/ruby/ruby_validator_group.rb +19 -0
- data/lib/pdk/validate/tasks/tasks_metadata_lint_validator.rb +83 -0
- data/lib/pdk/validate/tasks/tasks_name_validator.rb +45 -0
- data/lib/pdk/validate/tasks/tasks_validator_group.rb +20 -0
- data/lib/pdk/validate/validator.rb +120 -0
- data/lib/pdk/validate/validator_group.rb +107 -0
- data/lib/pdk/validate/yaml/yaml_syntax_validator.rb +86 -0
- data/lib/pdk/validate/yaml/yaml_validator_group.rb +19 -0
- data/lib/pdk/validate.rb +86 -12
- data/lib/pdk/version.rb +2 -2
- data/lib/pdk.rb +60 -10
- metadata +138 -100
- data/lib/pdk/cli/module/build.rb +0 -14
- data/lib/pdk/cli/module/generate.rb +0 -45
- data/lib/pdk/cli/module.rb +0 -14
- data/lib/pdk/i18n.rb +0 -4
- data/lib/pdk/module/templatedir.rb +0 -321
- data/lib/pdk/template_file.rb +0 -95
- data/lib/pdk/validate/base_validator.rb +0 -215
- data/lib/pdk/validate/metadata/metadata_json_lint.rb +0 -86
- data/lib/pdk/validate/metadata/metadata_syntax.rb +0 -109
- data/lib/pdk/validate/metadata_validator.rb +0 -30
- data/lib/pdk/validate/puppet/puppet_lint.rb +0 -67
- data/lib/pdk/validate/puppet/puppet_syntax.rb +0 -112
- data/lib/pdk/validate/puppet_validator.rb +0 -30
- data/lib/pdk/validate/ruby/rubocop.rb +0 -77
- data/lib/pdk/validate/ruby_validator.rb +0 -29
- data/lib/pdk/validate/tasks/metadata_lint.rb +0 -126
- data/lib/pdk/validate/tasks/name.rb +0 -88
- data/lib/pdk/validate/tasks_validator.rb +0 -33
- data/lib/pdk/validate/yaml/syntax.rb +0 -109
- data/lib/pdk/validate/yaml_validator.rb +0 -31
- data/locales/config.yaml +0 -21
- data/locales/pdk.pot +0 -1291
data/CHANGELOG.md
CHANGED
|
@@ -1,854 +1,887 @@
|
|
|
1
|
+
<!-- markdownlint-disable MD024 -->
|
|
1
2
|
# Changelog
|
|
2
3
|
|
|
3
|
-
All changes to this
|
|
4
|
-
See the [release notes](https://puppet.com/docs/pdk/latest/release_notes.html) for a high-level summary.
|
|
4
|
+
All notable changes to this project will be documented in this file.
|
|
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
|
-
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.8.0...v1.9.0)
|
|
8
|
+
## [v3.2.0](https://github.com/puppetlabs/pdk/tree/v3.2.0) - 2024-05-02
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v3.1.0...v3.2.0)
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
### Fixed
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
- (CAT-1807) Remove analytics from the PDK [#1339](https://github.com/puppetlabs/pdk/pull/1339) ([david22swan](https://github.com/david22swan))
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
- \(PDK-1204\) pdk bundle execs in the context of the pwd [\#603](https://github.com/puppetlabs/pdk/pull/603) ([rodjek](https://github.com/rodjek))
|
|
16
|
+
## [v3.1.0](https://github.com/puppetlabs/pdk/tree/v3.1.0) - 2024-04-11
|
|
18
17
|
|
|
19
|
-
|
|
18
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v3.0.1...v3.1.0)
|
|
20
19
|
|
|
21
|
-
|
|
22
|
-
- 'unknown type yumrepo' during 'pdk test unit' [\#607](https://github.com/puppetlabs/pdk/issues/607)
|
|
20
|
+
### Added
|
|
23
21
|
|
|
24
|
-
|
|
22
|
+
- Allow `pdk convert` and `pdk update` to work in a ControlRepo context [#1310](https://github.com/puppetlabs/pdk/pull/1310) ([garrettrowell](https://github.com/garrettrowell))
|
|
23
|
+
- Support executable templates [#1289](https://github.com/puppetlabs/pdk/pull/1289) ([nabertrand](https://github.com/nabertrand))
|
|
25
24
|
|
|
26
|
-
|
|
27
|
-
- \(maint\) Fix package tests to remove hardcoding [\#613](https://github.com/puppetlabs/pdk/pull/613) ([bmjen](https://github.com/bmjen))
|
|
28
|
-
- \(MAINT\) Fix package acceptance tests to pass with any Ruby 2.4.x [\#611](https://github.com/puppetlabs/pdk/pull/611) ([scotje](https://github.com/scotje))
|
|
29
|
-
- \(MAINT\) Bump default packaged ruby version to 2.4.5 [\#608](https://github.com/puppetlabs/pdk/pull/608) ([scotje](https://github.com/scotje))
|
|
30
|
-
- \(PDK-1202\) Pass TemplateDir object through to TemplateFile [\#605](https://github.com/puppetlabs/pdk/pull/605) ([rodjek](https://github.com/rodjek))
|
|
31
|
-
- \(PDK-1231\) Update version for new dev cycle. [\#604](https://github.com/puppetlabs/pdk/pull/604) ([bmjen](https://github.com/bmjen))
|
|
32
|
-
- \(PDK-1001\) Chdir before execing git rather than "git -C" [\#602](https://github.com/puppetlabs/pdk/pull/602) ([rodjek](https://github.com/rodjek))
|
|
25
|
+
### Fixed
|
|
33
26
|
|
|
34
|
-
|
|
35
|
-
[
|
|
27
|
+
- (CAT-1796) Fix missing locale gem [#1337](https://github.com/puppetlabs/pdk/pull/1337) ([LukasAud](https://github.com/LukasAud))
|
|
28
|
+
- (CAT-1703) Convert concurrent-ruby from a pin to a pessimistic constraint [#1312](https://github.com/puppetlabs/pdk/pull/1312) ([david22swan](https://github.com/david22swan))
|
|
36
29
|
|
|
37
|
-
|
|
30
|
+
## [v3.0.1](https://github.com/puppetlabs/pdk/tree/v3.0.1) - 2023-12-13
|
|
38
31
|
|
|
39
|
-
|
|
32
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v3.0.0...v3.0.1)
|
|
40
33
|
|
|
41
|
-
|
|
34
|
+
### Fixed
|
|
42
35
|
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
- \(PDK-547\) Ensure all PDK created files use LF line endings [\#590](https://github.com/puppetlabs/pdk/pull/590) ([rodjek](https://github.com/rodjek))
|
|
48
|
-
- \(PDK-1172\) Call PDK::Util::Bundler.ensure\_bundle! after module creation [\#589](https://github.com/puppetlabs/pdk/pull/589) ([rodjek](https://github.com/rodjek))
|
|
49
|
-
- \(PDK-1192\) Add module\_root/vendor/ to default ignored paths [\#588](https://github.com/puppetlabs/pdk/pull/588) ([rodjek](https://github.com/rodjek))
|
|
50
|
-
- \(PDK-1194\) Exclude plans/\*\*/\*.pp from PDK::Validate::PuppetSyntax [\#586](https://github.com/puppetlabs/pdk/pull/586) ([rodjek](https://github.com/rodjek))
|
|
51
|
-
- \(PDK-972\) Don't register a pending change when deleting non-existent files [\#585](https://github.com/puppetlabs/pdk/pull/585) ([rodjek](https://github.com/rodjek))
|
|
52
|
-
- \(PDK-1093\) Replace null values and empty data structures in metadata when converting [\#584](https://github.com/puppetlabs/pdk/pull/584) ([rodjek](https://github.com/rodjek))
|
|
53
|
-
- \(PDK-400\) Output the rspec run wall time in test unit summary [\#583](https://github.com/puppetlabs/pdk/pull/583) ([rodjek](https://github.com/rodjek))
|
|
54
|
-
- \(PDK-1200\) Fix bundle env handling with puppet-dev [\#579](https://github.com/puppetlabs/pdk/pull/579) ([bmjen](https://github.com/bmjen))
|
|
55
|
-
- \(PDK-925\) Exclude files that wouldn't be packaged from being validated [\#578](https://github.com/puppetlabs/pdk/pull/578) ([rodjek](https://github.com/rodjek))
|
|
36
|
+
- (CAT-345) Update doc links where needed [#1285](https://github.com/puppetlabs/pdk/pull/1285) ([david22swan](https://github.com/david22swan))
|
|
37
|
+
- (CAT-270) Adjusting expected Puppet/Ruby versions [#1283](https://github.com/puppetlabs/pdk/pull/1283) ([LukasAud](https://github.com/LukasAud))
|
|
38
|
+
- (maint) - add stricter puppetlabs_spec_helper dependency [#1280](https://github.com/puppetlabs/pdk/pull/1280) ([jordanbreen28](https://github.com/jordanbreen28))
|
|
39
|
+
- (PUPDOC-5439) Add Trademark icon [#1277](https://github.com/puppetlabs/pdk/pull/1277) ([pmcmaw](https://github.com/pmcmaw))
|
|
56
40
|
|
|
57
|
-
|
|
41
|
+
## [v3.0.0](https://github.com/puppetlabs/pdk/tree/v3.0.0) - 2023-07-04
|
|
58
42
|
|
|
59
|
-
|
|
60
|
-
- Create configuration to Overide default parameters [\#542](https://github.com/puppetlabs/pdk/issues/542)
|
|
43
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.7.1...v3.0.0)
|
|
61
44
|
|
|
62
|
-
|
|
45
|
+
### Changed
|
|
46
|
+
- (CONT-1134) Bump PDK Templates REF [#1264](https://github.com/puppetlabs/pdk/pull/1264) ([chelnak](https://github.com/chelnak))
|
|
47
|
+
- (CONT-1154) Disable console command [#1263](https://github.com/puppetlabs/pdk/pull/1263) ([chelnak](https://github.com/chelnak))
|
|
48
|
+
- (CONT-1130) Bump PDK gem version [#1260](https://github.com/puppetlabs/pdk/pull/1260) ([chelnak](https://github.com/chelnak))
|
|
49
|
+
- (CONT-1027) Deprecate pe-version option [#1252](https://github.com/puppetlabs/pdk/pull/1252) ([chelnak](https://github.com/chelnak))
|
|
50
|
+
- (CONT-1025) Remove module command [#1250](https://github.com/puppetlabs/pdk/pull/1250) ([chelnak](https://github.com/chelnak))
|
|
51
|
+
- (CONT-1024) Remove config command [#1249](https://github.com/puppetlabs/pdk/pull/1249) ([chelnak](https://github.com/chelnak))
|
|
52
|
+
- (CONT-755) - Bump gem version [#1240](https://github.com/puppetlabs/pdk/pull/1240) ([chelnak](https://github.com/chelnak))
|
|
53
|
+
- (CONT-755) Ruby 3 / Puppet 8 support [#1230](https://github.com/puppetlabs/pdk/pull/1230) ([chelnak](https://github.com/chelnak))
|
|
63
54
|
|
|
64
|
-
|
|
65
|
-
- \(maint\) Update package tests to add task name validation [\#600](https://github.com/puppetlabs/pdk/pull/600) ([bmjen](https://github.com/bmjen))
|
|
66
|
-
- \(maint\) Fix package tests [\#596](https://github.com/puppetlabs/pdk/pull/596) ([rodjek](https://github.com/rodjek))
|
|
67
|
-
- \(maint\) Add --skip-bundle-install to `pdk new module` [\#595](https://github.com/puppetlabs/pdk/pull/595) ([rodjek](https://github.com/rodjek))
|
|
68
|
-
- \(PDK-1208\) Raise lower bound of 'puppet' requirement for new modules [\#581](https://github.com/puppetlabs/pdk/pull/581) ([scotje](https://github.com/scotje))
|
|
69
|
-
- \(maint\) Bump version for dev [\#577](https://github.com/puppetlabs/pdk/pull/577) ([bmjen](https://github.com/bmjen))
|
|
55
|
+
### Added
|
|
70
56
|
|
|
71
|
-
|
|
72
|
-
[
|
|
57
|
+
- (CONT-1053) Update bundle command [#1255](https://github.com/puppetlabs/pdk/pull/1255) ([chelnak](https://github.com/chelnak))
|
|
58
|
+
- (ISS-1123) Verbose output w/ junit file [#1246](https://github.com/puppetlabs/pdk/pull/1246) ([coreymbe](https://github.com/coreymbe))
|
|
59
|
+
- Take "operatingsystem_support" parameter from answer.json [#1165](https://github.com/puppetlabs/pdk/pull/1165) ([me-minus](https://github.com/me-minus))
|
|
73
60
|
|
|
74
|
-
|
|
61
|
+
### Fixed
|
|
75
62
|
|
|
76
|
-
-
|
|
77
|
-
-
|
|
78
|
-
- \(PDK-1099\) Merge Puppet::Util::Windows into PDK namespace [\#565](https://github.com/puppetlabs/pdk/pull/565) ([rodjek](https://github.com/rodjek))
|
|
63
|
+
- (CONT-1069) Update compatibility handling [#1259](https://github.com/puppetlabs/pdk/pull/1259) ([chelnak](https://github.com/chelnak))
|
|
64
|
+
- (CONT-935) Fix issues with PDK package and tests [#1248](https://github.com/puppetlabs/pdk/pull/1248) ([chelnak](https://github.com/chelnak))
|
|
79
65
|
|
|
80
|
-
|
|
66
|
+
## [v2.7.1](https://github.com/puppetlabs/pdk/tree/v2.7.1) - 2023-03-24
|
|
81
67
|
|
|
82
|
-
|
|
83
|
-
- \(PDK-1173\) Update pdk validate help output for powershell [\#573](https://github.com/puppetlabs/pdk/pull/573) ([rodjek](https://github.com/rodjek))
|
|
68
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.7.0...v2.7.1)
|
|
84
69
|
|
|
85
|
-
|
|
70
|
+
## [v2.7.0](https://github.com/puppetlabs/pdk/tree/v2.7.0) - 2023-03-14
|
|
86
71
|
|
|
87
|
-
|
|
88
|
-
- \(maint\) Update PDK metadata defaults to include Puppet 6 [\#572](https://github.com/puppetlabs/pdk/pull/572) ([bmjen](https://github.com/bmjen))
|
|
89
|
-
- \(maint\) Update package tests for ruby 2.5.1 as the new default [\#571](https://github.com/puppetlabs/pdk/pull/571) ([bmjen](https://github.com/bmjen))
|
|
90
|
-
- Bump version to 1.8.0.pre [\#564](https://github.com/puppetlabs/pdk/pull/564) ([bmjen](https://github.com/bmjen))
|
|
72
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.6.1...v2.7.0)
|
|
91
73
|
|
|
92
|
-
|
|
93
|
-
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.6.1...v1.7.0)
|
|
74
|
+
### Added
|
|
94
75
|
|
|
95
|
-
|
|
76
|
+
- (CONT-694) Bump PDK Template Version [#1216](https://github.com/puppetlabs/pdk/pull/1216) ([chelnak](https://github.com/chelnak))
|
|
77
|
+
- (CONT-370) Remove i18n support [#1211](https://github.com/puppetlabs/pdk/pull/1211) ([chelnak](https://github.com/chelnak))
|
|
78
|
+
- Add Puppet validator for plans [#1207](https://github.com/puppetlabs/pdk/pull/1207) ([jay7x](https://github.com/jay7x))
|
|
96
79
|
|
|
97
|
-
|
|
80
|
+
### Fixed
|
|
98
81
|
|
|
99
|
-
|
|
82
|
+
- (CONT-722) Patch pe to puppet mapping [#1221](https://github.com/puppetlabs/pdk/pull/1221) ([chelnak](https://github.com/chelnak))
|
|
83
|
+
- (GH-1210) Require uri [#1220](https://github.com/puppetlabs/pdk/pull/1220) ([chelnak](https://github.com/chelnak))
|
|
84
|
+
- (CONT-720) Fix default version selection [#1219](https://github.com/puppetlabs/pdk/pull/1219) ([chelnak](https://github.com/chelnak))
|
|
85
|
+
- (CONT-719) Require JSON gem [#1218](https://github.com/puppetlabs/pdk/pull/1218) ([chelnak](https://github.com/chelnak))
|
|
86
|
+
- (CONT-669) Use bundle info command [#1215](https://github.com/puppetlabs/pdk/pull/1215) ([chelnak](https://github.com/chelnak))
|
|
100
87
|
|
|
101
|
-
|
|
88
|
+
## [v2.6.1](https://github.com/puppetlabs/pdk/tree/v2.6.1) - 2023-01-26
|
|
102
89
|
|
|
103
|
-
|
|
90
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.6.0...v2.6.1)
|
|
104
91
|
|
|
105
|
-
|
|
106
|
-
- \(maint\) Fix package tests [\#562](https://github.com/puppetlabs/pdk/pull/562) ([bmjen](https://github.com/bmjen))
|
|
107
|
-
- \(PDK-1083\) Bump PDK version to 1.7.0.pre [\#556](https://github.com/puppetlabs/pdk/pull/556) ([rodjek](https://github.com/rodjek))
|
|
108
|
-
- \(PDK-1077\) Expand the package acceptance test suite [\#554](https://github.com/puppetlabs/pdk/pull/554) ([rodjek](https://github.com/rodjek))
|
|
92
|
+
## [v2.6.0](https://github.com/puppetlabs/pdk/tree/v2.6.0) - 2023-01-17
|
|
109
93
|
|
|
110
|
-
|
|
111
|
-
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.6.0...v1.6.1)
|
|
94
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.5.0...v2.6.0)
|
|
112
95
|
|
|
113
|
-
|
|
96
|
+
### Added
|
|
114
97
|
|
|
115
|
-
- PDK
|
|
98
|
+
- (CONT-422) PDK v2.6.0 [#1195](https://github.com/puppetlabs/pdk/pull/1195) ([chelnak](https://github.com/chelnak))
|
|
116
99
|
|
|
117
|
-
|
|
100
|
+
### Fixed
|
|
118
101
|
|
|
119
|
-
-
|
|
120
|
-
- PDK 1.6.0: parallel\_spec causes Puppet coverage reports to change badly [\#531](https://github.com/puppetlabs/pdk/issues/531)
|
|
121
|
-
- Support for deep directory structure in templates [\#445](https://github.com/puppetlabs/pdk/issues/445)
|
|
122
|
-
- \(PDK-1046\) Improve handling of unexpected errors from puppet parser. [\#541](https://github.com/puppetlabs/pdk/pull/541) ([bmjen](https://github.com/bmjen))
|
|
123
|
-
- Correct template path filter logic to only include regular files [\#524](https://github.com/puppetlabs/pdk/pull/524) ([nabertrand](https://github.com/nabertrand))
|
|
102
|
+
- Fixing deprecated message on api_types.rb [#1177](https://github.com/puppetlabs/pdk/pull/1177) ([davidsandilands](https://github.com/davidsandilands))
|
|
124
103
|
|
|
125
|
-
|
|
104
|
+
## [v2.5.0](https://github.com/puppetlabs/pdk/tree/v2.5.0) - 2022-05-17
|
|
126
105
|
|
|
127
|
-
|
|
128
|
-
- PDK 1.6.0: c.hiera\_config double quotes creates rubocop warning [\#530](https://github.com/puppetlabs/pdk/issues/530)
|
|
129
|
-
- PDK should support integration testing [\#481](https://github.com/puppetlabs/pdk/issues/481)
|
|
106
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.4.0...v2.5.0)
|
|
130
107
|
|
|
131
|
-
|
|
108
|
+
## [v2.4.0](https://github.com/puppetlabs/pdk/tree/v2.4.0) - 2022-02-07
|
|
132
109
|
|
|
133
|
-
|
|
134
|
-
- \(PDK-1088\) Remove unnecessary file enumeration loop during PDK build [\#553](https://github.com/puppetlabs/pdk/pull/553) ([scotje](https://github.com/scotje))
|
|
135
|
-
- \(PDK-1076\) Change version to 1.6.1.pre [\#552](https://github.com/puppetlabs/pdk/pull/552) ([rodjek](https://github.com/rodjek))
|
|
136
|
-
- \(PDK-1073\) Fix gem bin paths for CLI::Exec managed subprocesses [\#551](https://github.com/puppetlabs/pdk/pull/551) ([scotje](https://github.com/scotje))
|
|
137
|
-
- Set up issues templates for bug reports and feature requests [\#550](https://github.com/puppetlabs/pdk/pull/550) ([scotje](https://github.com/scotje))
|
|
138
|
-
- \(PDK-1045\) Send validation targets as relative file paths [\#549](https://github.com/puppetlabs/pdk/pull/549) ([bmjen](https://github.com/bmjen))
|
|
139
|
-
- \(PDK-1067\) Ensure rspec-core binstubs are created for `pdk test unit` [\#546](https://github.com/puppetlabs/pdk/pull/546) ([scotje](https://github.com/scotje))
|
|
140
|
-
- \(PDK-1041\) Improve handling of errors from PDK::Module::TemplateDir [\#545](https://github.com/puppetlabs/pdk/pull/545) ([rodjek](https://github.com/rodjek))
|
|
141
|
-
- \(PDK-1053\) Print validator output on parse\_output failure [\#543](https://github.com/puppetlabs/pdk/pull/543) ([rodjek](https://github.com/rodjek))
|
|
142
|
-
- \(PDK-1051\) Expose rspec-puppet coverage results to PDK [\#539](https://github.com/puppetlabs/pdk/pull/539) ([rodjek](https://github.com/rodjek))
|
|
143
|
-
- \(PDK-1048\) Improve docs for `pdk test unit --verbose` [\#537](https://github.com/puppetlabs/pdk/pull/537) ([rodjek](https://github.com/rodjek))
|
|
144
|
-
- \(PDK-1061\) Ensure rake binstub when building module [\#536](https://github.com/puppetlabs/pdk/pull/536) ([rodjek](https://github.com/rodjek))
|
|
145
|
-
- \(PDK-925\) Exclude files in spec/fixtures from globbed validation targets [\#532](https://github.com/puppetlabs/pdk/pull/532) ([rodjek](https://github.com/rodjek))
|
|
146
|
-
- \(maint\) Bump version for next dev cycle [\#529](https://github.com/puppetlabs/pdk/pull/529) ([bmjen](https://github.com/bmjen))
|
|
110
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.3.0...v2.4.0)
|
|
147
111
|
|
|
148
|
-
|
|
149
|
-
|
|
112
|
+
### Fixed
|
|
113
|
+
|
|
114
|
+
- (PDK-1758) supplement `in_module_root` with check for `metadata.json` [#1154](https://github.com/puppetlabs/pdk/pull/1154) ([da-ar](https://github.com/da-ar))
|
|
115
|
+
|
|
116
|
+
## [v2.3.0](https://github.com/puppetlabs/pdk/tree/v2.3.0) - 2021-10-21
|
|
117
|
+
|
|
118
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.2.0...v2.3.0)
|
|
119
|
+
|
|
120
|
+
### Fixed
|
|
121
|
+
|
|
122
|
+
- Account for Psych API changes [#1147](https://github.com/puppetlabs/pdk/pull/1147) ([binford2k](https://github.com/binford2k))
|
|
123
|
+
- (MAINT) Update install.md w/ supported OSs; release note fixes [#1138](https://github.com/puppetlabs/pdk/pull/1138) ([sanfrancrisko](https://github.com/sanfrancrisko))
|
|
124
|
+
- (maint) Docs for 2.2.0 [#1134](https://github.com/puppetlabs/pdk/pull/1134) ([da-ar](https://github.com/da-ar))
|
|
125
|
+
|
|
126
|
+
## [v2.2.0](https://github.com/puppetlabs/pdk/tree/v2.2.0) - 2021-08-02
|
|
127
|
+
|
|
128
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.1.1...v2.2.0)
|
|
129
|
+
|
|
130
|
+
### Added
|
|
131
|
+
|
|
132
|
+
- (GH-1118) Add ability to skip validating files [#1114](https://github.com/puppetlabs/pdk/pull/1114) ([jpogran](https://github.com/jpogran))
|
|
133
|
+
|
|
134
|
+
### Fixed
|
|
135
|
+
|
|
136
|
+
- (GH-1113) (GH-917) Fix forge-token handling [#1121](https://github.com/puppetlabs/pdk/pull/1121) ([sanfrancrisko](https://github.com/sanfrancrisko))
|
|
137
|
+
|
|
138
|
+
### Other
|
|
139
|
+
|
|
140
|
+
- (maint) Update beaker-hostgenerator to support newer platforms [#1125](https://github.com/puppetlabs/pdk/pull/1125) ([da-ar](https://github.com/da-ar))
|
|
141
|
+
- (GH-1115) Bump `json_pure` to `~> 2.5.1` on Ruby `>= 2.7` [#1124](https://github.com/puppetlabs/pdk/pull/1124) ([sanfrancrisko](https://github.com/sanfrancrisko))
|
|
142
|
+
|
|
143
|
+
## [v2.1.1](https://github.com/puppetlabs/pdk/tree/v2.1.1) - 2021-06-22
|
|
144
|
+
|
|
145
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.1.0...v2.1.1)
|
|
146
|
+
|
|
147
|
+
### Fixed
|
|
148
|
+
|
|
149
|
+
- (PDK-1085) Fail gracefully when no unit tests available [#1096](https://github.com/puppetlabs/pdk/pull/1096) ([sanfrancrisko](https://github.com/sanfrancrisko))
|
|
150
|
+
- (GH-1090) Verify the changelog top most version matches the metadata version [#1088](https://github.com/puppetlabs/pdk/pull/1088) ([carabasdaniel](https://github.com/carabasdaniel))
|
|
151
|
+
- (GH-1083) Bump childprocess to '~> 4.0.0'; Disable @process.leader [#1084](https://github.com/puppetlabs/pdk/pull/1084) ([sanfrancrisko](https://github.com/sanfrancrisko))
|
|
152
|
+
- (puppetlabs/devx#15) `pdk validate` overview ref doc [#1071](https://github.com/puppetlabs/pdk/pull/1071) ([sanfrancrisko](https://github.com/sanfrancrisko))
|
|
153
|
+
|
|
154
|
+
## [v2.1.0](https://github.com/puppetlabs/pdk/tree/v2.1.0) - 2021-04-06
|
|
155
|
+
|
|
156
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.0.0...v2.1.0)
|
|
157
|
+
|
|
158
|
+
### Added
|
|
159
|
+
|
|
160
|
+
- (PF-2332) Add `pdk env` subcommand [#957](https://github.com/puppetlabs/pdk/pull/957) ([nkanderson](https://github.com/nkanderson))
|
|
161
|
+
|
|
162
|
+
### Fixed
|
|
163
|
+
|
|
164
|
+
- (Docs)Updating docs metadata [#961](https://github.com/puppetlabs/pdk/pull/961) ([hestonhoffman](https://github.com/hestonhoffman))
|
|
165
|
+
|
|
166
|
+
## [v2.0.0](https://github.com/puppetlabs/pdk/tree/v2.0.0) - 2021-02-24
|
|
167
|
+
|
|
168
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.18.1...v2.0.0)
|
|
169
|
+
|
|
170
|
+
### Added
|
|
171
|
+
|
|
172
|
+
- (IAC-1438) - Removal of Inappropriate Terminology [#945](https://github.com/puppetlabs/pdk/pull/945) ([david22swan](https://github.com/david22swan))
|
|
173
|
+
- Remove pre-condition checks for RSAPI objects [#943](https://github.com/puppetlabs/pdk/pull/943) ([DavidS](https://github.com/DavidS))
|
|
174
|
+
- Update lower puppet requirements bound when creating new modules [#942](https://github.com/puppetlabs/pdk/pull/942) ([DavidS](https://github.com/DavidS))
|
|
175
|
+
- Allow Facter4 to be co-installed with PDK [#941](https://github.com/puppetlabs/pdk/pull/941) ([GabrielNagy](https://github.com/GabrielNagy))
|
|
176
|
+
- Add ability to generate functions [#932](https://github.com/puppetlabs/pdk/pull/932) ([logicminds](https://github.com/logicminds))
|
|
177
|
+
- (GH-905) Ensure release failure includes error message [#929](https://github.com/puppetlabs/pdk/pull/929) ([michaeltlombardi](https://github.com/michaeltlombardi))
|
|
178
|
+
- Adds AIX support when creating a new module [#927](https://github.com/puppetlabs/pdk/pull/927) ([logicminds](https://github.com/logicminds))
|
|
179
|
+
- Add ability to generate new facts [#921](https://github.com/puppetlabs/pdk/pull/921) ([logicminds](https://github.com/logicminds))
|
|
180
|
+
- Add forge token env [#913](https://github.com/puppetlabs/pdk/pull/913) ([scotje](https://github.com/scotje))
|
|
181
|
+
- (FORGE-339) Omit .DS_Store files from module builds [#910](https://github.com/puppetlabs/pdk/pull/910) ([binford2k](https://github.com/binford2k))
|
|
182
|
+
- (#876) Refactor text report output when validators are skipped [#904](https://github.com/puppetlabs/pdk/pull/904) ([scotje](https://github.com/scotje))
|
|
183
|
+
|
|
184
|
+
### Other
|
|
185
|
+
|
|
186
|
+
- (#902) Check for `github_changelog_generator` in proper bundler context [#907](https://github.com/puppetlabs/pdk/pull/907) ([scotje](https://github.com/scotje))
|
|
187
|
+
|
|
188
|
+
## [v1.18.1](https://github.com/puppetlabs/pdk/tree/v1.18.1) - 2020-07-17
|
|
189
|
+
|
|
190
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.18.0...v1.18.1)
|
|
191
|
+
|
|
192
|
+
### Fixed
|
|
193
|
+
|
|
194
|
+
- Don't attempt to modify a frozen string when parsing '--tests' paths [#891](https://github.com/puppetlabs/pdk/pull/891) ([natemccurdy](https://github.com/natemccurdy))
|
|
195
|
+
- (PDK-1653) Ensure template have access to metadata during update/convert [#883](https://github.com/puppetlabs/pdk/pull/883) ([scotje](https://github.com/scotje))
|
|
196
|
+
|
|
197
|
+
## [v1.18.0](https://github.com/puppetlabs/pdk/tree/v1.18.0) - 2020-05-12
|
|
198
|
+
|
|
199
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.17.0...v1.18.0)
|
|
200
|
+
|
|
201
|
+
### Added
|
|
202
|
+
|
|
203
|
+
- (PDK-1109) Add pdk remove config [#870](https://github.com/puppetlabs/pdk/pull/870) ([glennsarti](https://github.com/glennsarti))
|
|
204
|
+
- (PDK-1632) Only show validators that are available in the given PDK Context [#867](https://github.com/puppetlabs/pdk/pull/867) ([glennsarti](https://github.com/glennsarti))
|
|
205
|
+
- (PDK-1615) Add validator for environment.conf [#866](https://github.com/puppetlabs/pdk/pull/866) ([glennsarti](https://github.com/glennsarti))
|
|
206
|
+
- (FIXUP) Make system config path absolute instead of relative on POSIX hosts [#862](https://github.com/puppetlabs/pdk/pull/862) ([scotje](https://github.com/scotje))
|
|
207
|
+
- (PDK-1108) Add pdk set config command [#859](https://github.com/puppetlabs/pdk/pull/859) ([glennsarti](https://github.com/glennsarti))
|
|
208
|
+
|
|
209
|
+
### Fixed
|
|
210
|
+
|
|
211
|
+
- Fix PDK release command module validation [#880](https://github.com/puppetlabs/pdk/pull/880) ([carabasdaniel](https://github.com/carabasdaniel))
|
|
212
|
+
- (GH-828) Munge backslash in rake paths for unit tests [#878](https://github.com/puppetlabs/pdk/pull/878) ([glennsarti](https://github.com/glennsarti))
|
|
213
|
+
- (GH-874) Use PDK Context root for PDK Convert and Update [#877](https://github.com/puppetlabs/pdk/pull/877) ([glennsarti](https://github.com/glennsarti))
|
|
214
|
+
- (#869) Ensure bundle update on convert/update [#871](https://github.com/puppetlabs/pdk/pull/871) ([rodjek](https://github.com/rodjek))
|
|
215
|
+
- (#821) Allow for unbalanced JSON fragments in RSpec output [#822](https://github.com/puppetlabs/pdk/pull/822) ([scotje](https://github.com/scotje))
|
|
216
|
+
|
|
217
|
+
## [v1.17.0](https://github.com/puppetlabs/pdk/tree/v1.17.0) - 2020-02-27
|
|
218
|
+
|
|
219
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.16.0...v1.17.0)
|
|
220
|
+
|
|
221
|
+
### Added
|
|
222
|
+
|
|
223
|
+
- (#855) Use correct namespace for external Bundler call [#860](https://github.com/puppetlabs/pdk/pull/860) ([rodjek](https://github.com/rodjek))
|
|
224
|
+
- (PDK-1618)(PDK-1613)(PDK-1616) Add Control Repo support to Validators [#858](https://github.com/puppetlabs/pdk/pull/858) ([glennsarti](https://github.com/glennsarti))
|
|
225
|
+
- (PDK-1614) Add project.environment settings [#857](https://github.com/puppetlabs/pdk/pull/857) ([glennsarti](https://github.com/glennsarti))
|
|
226
|
+
- (PDK-1615) Add Ini File configuration support [#856](https://github.com/puppetlabs/pdk/pull/856) ([glennsarti](https://github.com/glennsarti))
|
|
227
|
+
- (PDK-1612) Add PDK::Context and context detection [#853](https://github.com/puppetlabs/pdk/pull/853) ([glennsarti](https://github.com/glennsarti))
|
|
228
|
+
- (PDK-1607)(PDK-1608) Implement system-level settings for PDK configuration [#841](https://github.com/puppetlabs/pdk/pull/841) ([glennsarti](https://github.com/glennsarti))
|
|
229
|
+
- (PDK-1592) Refactor PDK validators to be more singular purpose [#831](https://github.com/puppetlabs/pdk/pull/831) ([glennsarti](https://github.com/glennsarti))
|
|
230
|
+
|
|
231
|
+
### Other
|
|
232
|
+
|
|
233
|
+
- (PDK-1522) Update package tests for OSX 10.15 [#852](https://github.com/puppetlabs/pdk/pull/852) ([rodjek](https://github.com/rodjek))
|
|
234
|
+
- (PDK-1113) Use PDK configuration instead of AnswerFile class [#842](https://github.com/puppetlabs/pdk/pull/842) ([glennsarti](https://github.com/glennsarti))
|
|
235
|
+
|
|
236
|
+
## [v1.16.0](https://github.com/puppetlabs/pdk/tree/v1.16.0) - 2020-02-05
|
|
237
|
+
|
|
238
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.15.0...v1.16.0)
|
|
239
|
+
|
|
240
|
+
### Added
|
|
241
|
+
|
|
242
|
+
- (PDK-1545) Include template-ref in module generation output [#840](https://github.com/puppetlabs/pdk/pull/840) ([rodjek](https://github.com/rodjek))
|
|
243
|
+
- (PDK-1590) Remove Gemfile.lock before running bundle update [#834](https://github.com/puppetlabs/pdk/pull/834) ([rodjek](https://github.com/rodjek))
|
|
244
|
+
- (PDK-1587) Reject paths with non-ASCII characters when building [#832](https://github.com/puppetlabs/pdk/pull/832) ([rodjek](https://github.com/rodjek))
|
|
245
|
+
- (PDK-1588) Increase granularity of `pdk bundle` analytics [#827](https://github.com/puppetlabs/pdk/pull/827) ([rodjek](https://github.com/rodjek))
|
|
246
|
+
- (PDK-1557) Detect Control Repositories [#826](https://github.com/puppetlabs/pdk/pull/826) ([glennsarti](https://github.com/glennsarti))
|
|
247
|
+
- (PDK-1556) Use the module root when generating objects [#824](https://github.com/puppetlabs/pdk/pull/824) ([glennsarti](https://github.com/glennsarti))
|
|
248
|
+
|
|
249
|
+
## [v1.15.0](https://github.com/puppetlabs/pdk/tree/v1.15.0) - 2019-12-13
|
|
250
|
+
|
|
251
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.14.1...v1.15.0)
|
|
252
|
+
|
|
253
|
+
### Added
|
|
254
|
+
|
|
255
|
+
- (PDK-1488) Inform user if updating a pinned module [#816](https://github.com/puppetlabs/pdk/pull/816) ([rodjek](https://github.com/rodjek))
|
|
256
|
+
- (PDK-1487) Add --default-template flag to pdk convert [#814](https://github.com/puppetlabs/pdk/pull/814) ([rodjek](https://github.com/rodjek))
|
|
257
|
+
- (GH-808) Implement pdk release prep and publish subcommands [#813](https://github.com/puppetlabs/pdk/pull/813) ([glennsarti](https://github.com/glennsarti))
|
|
258
|
+
- (GH-808) Implement pdk release subcommand [#809](https://github.com/puppetlabs/pdk/pull/809) ([glennsarti](https://github.com/glennsarti))
|
|
259
|
+
- (#806) Use ASCII quotes instead of Unicode quotes [#807](https://github.com/puppetlabs/pdk/pull/807) ([rodjek](https://github.com/rodjek))
|
|
260
|
+
- (PDK-1364) Allow non-git template directories to be used [#803](https://github.com/puppetlabs/pdk/pull/803) ([glennsarti](https://github.com/glennsarti))
|
|
261
|
+
- (PDK-1523) Refactor filesystem operations to use PDK::Util::Filesystem [#799](https://github.com/puppetlabs/pdk/pull/799) ([rodjek](https://github.com/rodjek))
|
|
262
|
+
|
|
263
|
+
### Fixed
|
|
264
|
+
|
|
265
|
+
- (GH-808) Fix prompt for pdk release [#812](https://github.com/puppetlabs/pdk/pull/812) ([glennsarti](https://github.com/glennsarti))
|
|
266
|
+
- (PDK-1169) Add VMWare fallback to PDK::Util::Filesystem.mv [#802](https://github.com/puppetlabs/pdk/pull/802) ([rodjek](https://github.com/rodjek))
|
|
267
|
+
|
|
268
|
+
### Other
|
|
269
|
+
|
|
270
|
+
- (PDK-1563) Prepare 1.15.0 release [#817](https://github.com/puppetlabs/pdk/pull/817) ([rodjek](https://github.com/rodjek))
|
|
271
|
+
- (PDK-1546) Bump beaker-hostgenerator for Fedora 31 support [#805](https://github.com/puppetlabs/pdk/pull/805) ([rodjek](https://github.com/rodjek))
|
|
272
|
+
- (MAINT) Fixup package tests for unexpected key in .sync.yml [#804](https://github.com/puppetlabs/pdk/pull/804) ([scotje](https://github.com/scotje))
|
|
273
|
+
- (PDK-1541) Bump version (back) to 1.15.0.pre [#797](https://github.com/puppetlabs/pdk/pull/797) ([scotje](https://github.com/scotje))
|
|
274
|
+
- (PDK-1442) Add basic interactive pdk bundle test [#736](https://github.com/puppetlabs/pdk/pull/736) ([rodjek](https://github.com/rodjek))
|
|
275
|
+
|
|
276
|
+
## [v1.14.1](https://github.com/puppetlabs/pdk/tree/v1.14.1) - 2019-11-01
|
|
277
|
+
|
|
278
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.14.0...v1.14.1)
|
|
279
|
+
|
|
280
|
+
### Added
|
|
281
|
+
|
|
282
|
+
- (maint) Raise error when template content is empty or nil [#794](https://github.com/puppetlabs/pdk/pull/794) ([rodjek](https://github.com/rodjek))
|
|
283
|
+
- (PDK-1530) Disable schema validation of config files [#793](https://github.com/puppetlabs/pdk/pull/793) ([glennsarti](https://github.com/glennsarti))
|
|
284
|
+
- (#764) Ensure --puppet-dev checkout is always updated [#792](https://github.com/puppetlabs/pdk/pull/792) ([rodjek](https://github.com/rodjek))
|
|
285
|
+
- (#773) Respect --verbose in interactive pdk test unit [#791](https://github.com/puppetlabs/pdk/pull/791) ([rodjek](https://github.com/rodjek))
|
|
286
|
+
- (PDK-1443) Windows safe Tempfiles & environment variable access [#790](https://github.com/puppetlabs/pdk/pull/790) ([rodjek](https://github.com/rodjek))
|
|
287
|
+
- (PDK-1519) Print deprecation notice on Ruby < 2.4 [#785](https://github.com/puppetlabs/pdk/pull/785) ([rodjek](https://github.com/rodjek))
|
|
288
|
+
- (GH-768) Fix in_module_root? gives false positives [#783](https://github.com/puppetlabs/pdk/pull/783) ([glennsarti](https://github.com/glennsarti))
|
|
289
|
+
- (#770) Add missing require to PDK::Module::Metadata.from_file [#771](https://github.com/puppetlabs/pdk/pull/771) ([hajee](https://github.com/hajee))
|
|
290
|
+
|
|
291
|
+
### Fixed
|
|
292
|
+
|
|
293
|
+
- (PDK-1527) Handle pdk new module --skip-interview without module name [#788](https://github.com/puppetlabs/pdk/pull/788) ([rodjek](https://github.com/rodjek))
|
|
294
|
+
|
|
295
|
+
### Other
|
|
296
|
+
|
|
297
|
+
- (PDK-1536) Prepare 1.14.1 release [#796](https://github.com/puppetlabs/pdk/pull/796) ([rodjek](https://github.com/rodjek))
|
|
298
|
+
|
|
299
|
+
## [v1.14.0](https://github.com/puppetlabs/pdk/tree/v1.14.0) - 2019-10-09
|
|
300
|
+
|
|
301
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.13.0...v1.14.0)
|
|
302
|
+
|
|
303
|
+
### Added
|
|
304
|
+
|
|
305
|
+
- (fixup) Fix Bundle CLI lazy load [#767](https://github.com/puppetlabs/pdk/pull/767) ([glennsarti](https://github.com/glennsarti))
|
|
306
|
+
- (fixup) Missing require from lazy load PR [#766](https://github.com/puppetlabs/pdk/pull/766) ([rodjek](https://github.com/rodjek))
|
|
307
|
+
- Add new "pdk console" command [#758](https://github.com/puppetlabs/pdk/pull/758) ([logicminds](https://github.com/logicminds))
|
|
308
|
+
- (PDK-1495) Update pdk new test UX [#749](https://github.com/puppetlabs/pdk/pull/749) ([rodjek](https://github.com/rodjek))
|
|
309
|
+
- (PDK-680) Make `pdk test unit` interactive by default [#748](https://github.com/puppetlabs/pdk/pull/748) ([rodjek](https://github.com/rodjek))
|
|
310
|
+
- (PDK-1367) Deprecation warning for Puppet < 5.0.0 [#747](https://github.com/puppetlabs/pdk/pull/747) ([rodjek](https://github.com/rodjek))
|
|
311
|
+
- (PDK-1047) Add --add-tests to pdk convert [#746](https://github.com/puppetlabs/pdk/pull/746) ([rodjek](https://github.com/rodjek))
|
|
312
|
+
- (PDK-1112) Create json schema to validate pdk config file [#742](https://github.com/puppetlabs/pdk/pull/742) ([glennsarti](https://github.com/glennsarti))
|
|
313
|
+
|
|
314
|
+
### Other
|
|
315
|
+
|
|
316
|
+
- (PDK-1511) Release 1.14.0 [#769](https://github.com/puppetlabs/pdk/pull/769) ([rodjek](https://github.com/rodjek))
|
|
317
|
+
|
|
318
|
+
## [v1.13.0](https://github.com/puppetlabs/pdk/tree/v1.13.0) - 2019-08-29
|
|
319
|
+
|
|
320
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.12.0...v1.13.0)
|
|
321
|
+
|
|
322
|
+
### Added
|
|
323
|
+
|
|
324
|
+
- (PDK-1175) pdk new unit_test [#735](https://github.com/puppetlabs/pdk/pull/735) ([rodjek](https://github.com/rodjek))
|
|
325
|
+
- (PDK-1384) Updates to be compatible with latest Cri [#731](https://github.com/puppetlabs/pdk/pull/731) ([scotje](https://github.com/scotje))
|
|
326
|
+
- (PDK-871) Relax dependencies on tty-* gems [#730](https://github.com/puppetlabs/pdk/pull/730) ([rodjek](https://github.com/rodjek))
|
|
327
|
+
- (PDK-1363) Apply init templates during module convert [#729](https://github.com/puppetlabs/pdk/pull/729) ([rodjek](https://github.com/rodjek))
|
|
328
|
+
- (PDK-1107) Config fetch and [] should have no side effects [#726](https://github.com/puppetlabs/pdk/pull/726) ([glennsarti](https://github.com/glennsarti))
|
|
329
|
+
- (PDK-1107) Add pdk config get CLI command [#715](https://github.com/puppetlabs/pdk/pull/715) ([glennsarti](https://github.com/glennsarti))
|
|
330
|
+
- (PDK-1432) Autogenerate PowerShell modules from code [#701](https://github.com/puppetlabs/pdk/pull/701) ([glennsarti](https://github.com/glennsarti))
|
|
331
|
+
|
|
332
|
+
### Fixed
|
|
333
|
+
|
|
334
|
+
- Handle deleted template files for new module [#725](https://github.com/puppetlabs/pdk/pull/725) ([seanmil](https://github.com/seanmil))
|
|
335
|
+
- (GH-722) Do not emit nil targets for validators against a directory [#724](https://github.com/puppetlabs/pdk/pull/724) ([glennsarti](https://github.com/glennsarti))
|
|
336
|
+
|
|
337
|
+
### Other
|
|
338
|
+
|
|
339
|
+
- (PDK-1474) Prepare 1.13.0 release [#739](https://github.com/puppetlabs/pdk/pull/739) ([rodjek](https://github.com/rodjek))
|
|
340
|
+
|
|
341
|
+
## [v1.12.0](https://github.com/puppetlabs/pdk/tree/v1.12.0) - 2019-07-31
|
|
342
|
+
|
|
343
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.11.1...v1.12.0)
|
|
344
|
+
|
|
345
|
+
### Added
|
|
346
|
+
|
|
347
|
+
- (FIXUP) Bypass shell invocation for PDK::CLI::Exec::InteractiveCommand [#717](https://github.com/puppetlabs/pdk/pull/717) ([scotje](https://github.com/scotje))
|
|
348
|
+
- (PDK-641) Make `pdk bundle` fully interactive [#712](https://github.com/puppetlabs/pdk/pull/712) ([scotje](https://github.com/scotje))
|
|
349
|
+
- (PDK-1366) Update default operatingsystem versions [#711](https://github.com/puppetlabs/pdk/pull/711) ([rodjek](https://github.com/rodjek))
|
|
350
|
+
- (PDK-421) Update acceptance tests for EPP Validation [#709](https://github.com/puppetlabs/pdk/pull/709) ([glennsarti](https://github.com/glennsarti))
|
|
351
|
+
- (PDK-1434) Gracefully handle unparsable bolt analytics config [#705](https://github.com/puppetlabs/pdk/pull/705) ([rodjek](https://github.com/rodjek))
|
|
352
|
+
- (FM-8081) pdk new transport [#696](https://github.com/puppetlabs/pdk/pull/696) ([DavidS](https://github.com/DavidS))
|
|
353
|
+
- (PDK-421) Validate EPP syntax [#680](https://github.com/puppetlabs/pdk/pull/680) ([raphink](https://github.com/raphink))
|
|
354
|
+
- (FM-8081) pdk new transport [#666](https://github.com/puppetlabs/pdk/pull/666) ([DavidS](https://github.com/DavidS))
|
|
355
|
+
- (PDK-1333) command_spec rake task [#644](https://github.com/puppetlabs/pdk/pull/644) ([rodjek](https://github.com/rodjek))
|
|
356
|
+
|
|
357
|
+
### Fixed
|
|
358
|
+
|
|
359
|
+
- (PDK-1309) Ensure file modes in built modules are sane [#713](https://github.com/puppetlabs/pdk/pull/713) ([rodjek](https://github.com/rodjek))
|
|
360
|
+
- (PDK-1333) Fix command_spec rake task for newer CRI versions [#699](https://github.com/puppetlabs/pdk/pull/699) ([glennsarti](https://github.com/glennsarti))
|
|
361
|
+
|
|
362
|
+
### Other
|
|
363
|
+
|
|
364
|
+
- (PDK-1449) Prepare 1.12.0 release [#718](https://github.com/puppetlabs/pdk/pull/718) ([rodjek](https://github.com/rodjek))
|
|
150
365
|
|
|
151
|
-
|
|
366
|
+
## [v1.11.1](https://github.com/puppetlabs/pdk/tree/v1.11.1) - 2019-07-01
|
|
152
367
|
|
|
153
|
-
|
|
154
|
-
- \(PDK-636\) Make fixture cleaning optional [\#515](https://github.com/puppetlabs/pdk/pull/515) ([rodjek](https://github.com/rodjek))
|
|
155
|
-
- \(PDK-809\) Exit early if the module is not PDK compatible [\#506](https://github.com/puppetlabs/pdk/pull/506) ([rodjek](https://github.com/rodjek))
|
|
368
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.11.0...v1.11.1)
|
|
156
369
|
|
|
157
|
-
|
|
370
|
+
### Added
|
|
158
371
|
|
|
159
|
-
-
|
|
160
|
-
-
|
|
161
|
-
- \(PDK-979\) Set path to Gemfile when invoking `bundle lock` [\#513](https://github.com/puppetlabs/pdk/pull/513) ([scotje](https://github.com/scotje))
|
|
162
|
-
- \(PDK-985\) Split validation targets into chunks of 1000 [\#509](https://github.com/puppetlabs/pdk/pull/509) ([rodjek](https://github.com/rodjek))
|
|
163
|
-
- \(PDK-926\) Read rspec event context relative to module root [\#508](https://github.com/puppetlabs/pdk/pull/508) ([rodjek](https://github.com/rodjek))
|
|
164
|
-
- Change Metadata.from\_file to reliably raise [\#503](https://github.com/puppetlabs/pdk/pull/503) ([DavidS](https://github.com/DavidS))
|
|
165
|
-
- \(PDK-475\) Set BUNDLE\_IGNORE\_CONFIG for all commands [\#502](https://github.com/puppetlabs/pdk/pull/502) ([rodjek](https://github.com/rodjek))
|
|
166
|
-
- \(MAINT\) Fixup error in log output when parsing invalid .sync.yml [\#498](https://github.com/puppetlabs/pdk/pull/498) ([scotje](https://github.com/scotje))
|
|
167
|
-
- Add yaml header to make yamllint happy [\#496](https://github.com/puppetlabs/pdk/pull/496) ([wmuizelaar](https://github.com/wmuizelaar))
|
|
168
|
-
- \(PDK-802\) Work around OpenSSL multi-threading errors when needed [\#494](https://github.com/puppetlabs/pdk/pull/494) ([scotje](https://github.com/scotje))
|
|
372
|
+
- (PDK-1415) Allow analytics opt-out prompt to be disabled via ENV [#691](https://github.com/puppetlabs/pdk/pull/691) ([scotje](https://github.com/scotje))
|
|
373
|
+
- (PDK-1414) Detect common CI environments and set non-interactive [#689](https://github.com/puppetlabs/pdk/pull/689) ([glennsarti](https://github.com/glennsarti))
|
|
169
374
|
|
|
170
|
-
|
|
375
|
+
## [v1.11.0](https://github.com/puppetlabs/pdk/tree/v1.11.0) - 2019-06-27
|
|
171
376
|
|
|
172
|
-
|
|
173
|
-
- PDK fails to checkout template from git repo on CentOS 7 [\#490](https://github.com/puppetlabs/pdk/issues/490)
|
|
377
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.10.0...v1.11.0)
|
|
174
378
|
|
|
175
|
-
|
|
379
|
+
### Added
|
|
176
380
|
|
|
177
|
-
-
|
|
178
|
-
-
|
|
179
|
-
-
|
|
180
|
-
-
|
|
181
|
-
-
|
|
182
|
-
-
|
|
183
|
-
-
|
|
184
|
-
-
|
|
381
|
+
- (PDK-1366) Update default operatingsystem versions [#682](https://github.com/puppetlabs/pdk/pull/682) ([rodjek](https://github.com/rodjek))
|
|
382
|
+
- (PDK-1362) Warn user if updating module with older PDK version [#681](https://github.com/puppetlabs/pdk/pull/681) ([rodjek](https://github.com/rodjek))
|
|
383
|
+
- (PDK-1365) Use dynamic ruby detection for default ruby instance [#678](https://github.com/puppetlabs/pdk/pull/678) ([glennsarti](https://github.com/glennsarti))
|
|
384
|
+
- (PDK-1354) Default template ref for custom templates should always be master [#677](https://github.com/puppetlabs/pdk/pull/677) ([rodjek](https://github.com/rodjek))
|
|
385
|
+
- (PDK-1337) Warn and unset any of the legacy *_GEM_VERSION env vars [#671](https://github.com/puppetlabs/pdk/pull/671) ([rodjek](https://github.com/rodjek))
|
|
386
|
+
- (PDK-1345) Disable analytics during package tests [#670](https://github.com/puppetlabs/pdk/pull/670) ([rodjek](https://github.com/rodjek))
|
|
387
|
+
- (PDK-1342) Submit PDK analytics events [#668](https://github.com/puppetlabs/pdk/pull/668) ([rodjek](https://github.com/rodjek))
|
|
388
|
+
- (PDK-1341) Hook up PDK analytics to Google Analytics [#665](https://github.com/puppetlabs/pdk/pull/665) ([rodjek](https://github.com/rodjek))
|
|
389
|
+
- (PDK-1264) Display a nicer error when tarring long paths [#663](https://github.com/puppetlabs/pdk/pull/663) ([rodjek](https://github.com/rodjek))
|
|
390
|
+
- (PDK-1339) Read or interview for analytics config [#657](https://github.com/puppetlabs/pdk/pull/657) ([rodjek](https://github.com/rodjek))
|
|
391
|
+
- (PDK-1350) Handle SCP style URLs in metadata.json [#655](https://github.com/puppetlabs/pdk/pull/655) ([rodjek](https://github.com/rodjek))
|
|
392
|
+
- (PDK-1338) Initial import of analytics code from Bolt [#652](https://github.com/puppetlabs/pdk/pull/652) ([rodjek](https://github.com/rodjek))
|
|
393
|
+
- (PDK-1193) Saves packaged template-url in metadata as a keyword [#639](https://github.com/puppetlabs/pdk/pull/639) ([bmjen](https://github.com/bmjen))
|
|
394
|
+
|
|
395
|
+
### Fixed
|
|
396
|
+
|
|
397
|
+
- (FIXUP) Avoid attempting to append nokogiri pin to nil in package tests [#686](https://github.com/puppetlabs/pdk/pull/686) ([scotje](https://github.com/scotje))
|
|
398
|
+
- (PDK-1300) Ensure `test unit --list` uses correct Puppet/Ruby env [#660](https://github.com/puppetlabs/pdk/pull/660) ([scotje](https://github.com/scotje))
|
|
399
|
+
- (PDK-1348) remove unused constants throwing warns [#656](https://github.com/puppetlabs/pdk/pull/656) ([tphoney](https://github.com/tphoney))
|
|
400
|
+
- (PDK-1335) Add development note when on Windows [#649](https://github.com/puppetlabs/pdk/pull/649) ([glennsarti](https://github.com/glennsarti))
|
|
401
|
+
- (PDK-1167) Validator should honor case sensitive of the file system [#646](https://github.com/puppetlabs/pdk/pull/646) ([glennsarti](https://github.com/glennsarti))
|
|
402
|
+
|
|
403
|
+
## [v1.10.0](https://github.com/puppetlabs/pdk/tree/v1.10.0) - 2019-04-02
|
|
404
|
+
|
|
405
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.9.1...v1.10.0)
|
|
406
|
+
|
|
407
|
+
### Added
|
|
408
|
+
|
|
409
|
+
- (PDK-1086) Change `pdk build --force` to warn if missing module metadata and continue [#643](https://github.com/puppetlabs/pdk/pull/643) ([rodjek](https://github.com/rodjek))
|
|
410
|
+
- (PDK-1308) Ensure PDK-written non-templated files have trailing newline [#640](https://github.com/puppetlabs/pdk/pull/640) ([scotje](https://github.com/scotje))
|
|
411
|
+
- (PDK-718) Add --template-ref argument for upstream template repo tags [#434](https://github.com/puppetlabs/pdk/pull/434) ([hunner](https://github.com/hunner))
|
|
412
|
+
|
|
413
|
+
## [v1.9.1](https://github.com/puppetlabs/pdk/tree/v1.9.1) - 2019-03-05
|
|
414
|
+
|
|
415
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.9.0...v1.9.1)
|
|
416
|
+
|
|
417
|
+
### Fixed
|
|
418
|
+
|
|
419
|
+
- (IMAGES-1037) Make sure our paths are used [#630](https://github.com/puppetlabs/pdk/pull/630) ([mihaibuzgau](https://github.com/mihaibuzgau))
|
|
420
|
+
- (PDK-1266) Clear modulepath value when validating manifest syntax [#629](https://github.com/puppetlabs/pdk/pull/629) ([rodjek](https://github.com/rodjek))
|
|
421
|
+
- (PDK-1272) Convert user/module module names to user-module [#626](https://github.com/puppetlabs/pdk/pull/626) ([rodjek](https://github.com/rodjek))
|
|
422
|
+
- (PDK-1276) Skip non-file YAML validator targets [#625](https://github.com/puppetlabs/pdk/pull/625) ([rodjek](https://github.com/rodjek))
|
|
423
|
+
- (PDK-1273) Allowlist Ruby symbols in YAML validator [#624](https://github.com/puppetlabs/pdk/pull/624) ([rodjek](https://github.com/rodjek))
|
|
424
|
+
|
|
425
|
+
## [v1.9.0](https://github.com/puppetlabs/pdk/tree/v1.9.0) - 2019-01-29
|
|
426
|
+
|
|
427
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.8.0...v1.9.0)
|
|
428
|
+
|
|
429
|
+
### Added
|
|
430
|
+
|
|
431
|
+
- (PDK-735) Implement a YAML validator [#612](https://github.com/puppetlabs/pdk/pull/612) ([rodjek](https://github.com/rodjek))
|
|
432
|
+
|
|
433
|
+
### Fixed
|
|
434
|
+
|
|
435
|
+
- (PDK-914) Adjust default_template_url validation to accept local dirs [#606](https://github.com/puppetlabs/pdk/pull/606) ([rodjek](https://github.com/rodjek))
|
|
436
|
+
- (PDK-1202) Pass TemplateDir object through to TemplateFile [#605](https://github.com/puppetlabs/pdk/pull/605) ([rodjek](https://github.com/rodjek))
|
|
437
|
+
- (PDK-1204) pdk bundle execs in the context of the pwd [#603](https://github.com/puppetlabs/pdk/pull/603) ([rodjek](https://github.com/rodjek))
|
|
438
|
+
- (PDK-1001) Chdir before execing git rather than "git -C" [#602](https://github.com/puppetlabs/pdk/pull/602) ([rodjek](https://github.com/rodjek))
|
|
439
|
+
|
|
440
|
+
## [v1.8.0](https://github.com/puppetlabs/pdk/tree/v1.8.0) - 2018-11-27
|
|
441
|
+
|
|
442
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.7.1...v1.8.0)
|
|
443
|
+
|
|
444
|
+
### Added
|
|
445
|
+
|
|
446
|
+
- (PDK-1090) Add task name validator for existing tasks [#598](https://github.com/puppetlabs/pdk/pull/598) ([rodjek](https://github.com/rodjek))
|
|
447
|
+
- (PDK-1208) Raise lower bound of 'puppet' requirement for new modules [#581](https://github.com/puppetlabs/pdk/pull/581) ([scotje](https://github.com/scotje))
|
|
448
|
+
|
|
449
|
+
### Fixed
|
|
450
|
+
|
|
451
|
+
- (PDK-1180) Cleanly handle a null pdk-version in metadata.json [#599](https://github.com/puppetlabs/pdk/pull/599) ([rodjek](https://github.com/rodjek))
|
|
452
|
+
- (PDK-1104) Don't always override custom template url with default [#597](https://github.com/puppetlabs/pdk/pull/597) ([rodjek](https://github.com/rodjek))
|
|
453
|
+
- (PDK-654) Allow rubocop to determine its own targets by default [#594](https://github.com/puppetlabs/pdk/pull/594) ([rodjek](https://github.com/rodjek))
|
|
454
|
+
- (PDK-1187) Don't override bundler path on gem installs [#592](https://github.com/puppetlabs/pdk/pull/592) ([rodjek](https://github.com/rodjek))
|
|
455
|
+
- (PDK-547) Ensure all PDK created files use LF line endings [#590](https://github.com/puppetlabs/pdk/pull/590) ([rodjek](https://github.com/rodjek))
|
|
456
|
+
- (PDK-1172) Call PDK::Util::Bundler.ensure_bundle! after module creation [#589](https://github.com/puppetlabs/pdk/pull/589) ([rodjek](https://github.com/rodjek))
|
|
457
|
+
- (PDK-1192) Add module_root/vendor/ to default ignored paths [#588](https://github.com/puppetlabs/pdk/pull/588) ([rodjek](https://github.com/rodjek))
|
|
458
|
+
- (PDK-1194) Exclude plans/**/*.pp from PDK::Validate::PuppetSyntax [#586](https://github.com/puppetlabs/pdk/pull/586) ([rodjek](https://github.com/rodjek))
|
|
459
|
+
- (PDK-972) Don't register a pending change when deleting non-existent files [#585](https://github.com/puppetlabs/pdk/pull/585) ([rodjek](https://github.com/rodjek))
|
|
460
|
+
- (PDK-1093) Replace null values and empty data structures in metadata when converting [#584](https://github.com/puppetlabs/pdk/pull/584) ([rodjek](https://github.com/rodjek))
|
|
461
|
+
- (PDK-400) Output the rspec run wall time in test unit summary [#583](https://github.com/puppetlabs/pdk/pull/583) ([rodjek](https://github.com/rodjek))
|
|
462
|
+
- (PDK-1200) Fix bundle env handling with puppet-dev [#579](https://github.com/puppetlabs/pdk/pull/579) ([bmjen](https://github.com/bmjen))
|
|
463
|
+
- (PDK-925) Exclude files that wouldn't be packaged from being validated [#578](https://github.com/puppetlabs/pdk/pull/578) ([rodjek](https://github.com/rodjek))
|
|
464
|
+
|
|
465
|
+
## [v1.7.1](https://github.com/puppetlabs/pdk/tree/v1.7.1) - 2018-10-08
|
|
466
|
+
|
|
467
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.7.0...v1.7.1)
|
|
468
|
+
|
|
469
|
+
### Added
|
|
470
|
+
|
|
471
|
+
- (PDK-1100) Exclude known artifacts from build instead of cleaning [#575](https://github.com/puppetlabs/pdk/pull/575) ([rodjek](https://github.com/rodjek))
|
|
472
|
+
- (PDK-1056) Adds support for Ruby 2.5.1 in packaged PDK version [#568](https://github.com/puppetlabs/pdk/pull/568) ([bmjen](https://github.com/bmjen))
|
|
473
|
+
- (PDK-1099) Merge Puppet::Util::Windows into PDK namespace [#565](https://github.com/puppetlabs/pdk/pull/565) ([rodjek](https://github.com/rodjek))
|
|
474
|
+
|
|
475
|
+
### Fixed
|
|
476
|
+
|
|
477
|
+
- (PDK-1181) Display error when metadata.json missing or unreadable [#574](https://github.com/puppetlabs/pdk/pull/574) ([rodjek](https://github.com/rodjek))
|
|
478
|
+
- (PDK-1173) Update pdk validate help output for powershell [#573](https://github.com/puppetlabs/pdk/pull/573) ([rodjek](https://github.com/rodjek))
|
|
479
|
+
|
|
480
|
+
## [v1.7.0](https://github.com/puppetlabs/pdk/tree/v1.7.0) - 2018-08-20
|
|
481
|
+
|
|
482
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.6.1...v1.7.0)
|
|
483
|
+
|
|
484
|
+
### Added
|
|
485
|
+
|
|
486
|
+
- (PDK-1096, PDK-1097, PDK-1098) Add puppet-dev flag to validate and test unit [#559](https://github.com/puppetlabs/pdk/pull/559) ([bmjen](https://github.com/bmjen))
|
|
487
|
+
|
|
488
|
+
### Fixed
|
|
489
|
+
|
|
490
|
+
- (PDK-585) Unify metadata defaults with/without interview [#558](https://github.com/puppetlabs/pdk/pull/558) ([rodjek](https://github.com/rodjek))
|
|
491
|
+
|
|
492
|
+
## [v1.6.1](https://github.com/puppetlabs/pdk/tree/v1.6.1) - 2018-07-25
|
|
493
|
+
|
|
494
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.6.0...v1.6.1)
|
|
495
|
+
|
|
496
|
+
### Added
|
|
497
|
+
|
|
498
|
+
- (PDK-1045) Send validation targets as relative file paths [#549](https://github.com/puppetlabs/pdk/pull/549) ([bmjen](https://github.com/bmjen))
|
|
499
|
+
- (PDK-1067) Ensure rspec-core binstubs are created for `pdk test unit` [#546](https://github.com/puppetlabs/pdk/pull/546) ([scotje](https://github.com/scotje))
|
|
500
|
+
- (PDK-1041) Improve handling of errors from PDK::Module::TemplateDir [#545](https://github.com/puppetlabs/pdk/pull/545) ([rodjek](https://github.com/rodjek))
|
|
501
|
+
- (PDK-1053) Print validator output on parse_output failure [#543](https://github.com/puppetlabs/pdk/pull/543) ([rodjek](https://github.com/rodjek))
|
|
502
|
+
- (PDK-1051) Expose rspec-puppet coverage results to PDK [#539](https://github.com/puppetlabs/pdk/pull/539) ([rodjek](https://github.com/rodjek))
|
|
503
|
+
- (PDK-1061) Ensure rake binstub when building module [#536](https://github.com/puppetlabs/pdk/pull/536) ([rodjek](https://github.com/rodjek))
|
|
504
|
+
- (PDK-925) Exclude files in spec/fixtures from globbed validation targets [#532](https://github.com/puppetlabs/pdk/pull/532) ([rodjek](https://github.com/rodjek))
|
|
505
|
+
|
|
506
|
+
### Fixed
|
|
507
|
+
|
|
508
|
+
- (PDK-1088) Remove unnecessary file enumeration loop during PDK build [#553](https://github.com/puppetlabs/pdk/pull/553) ([scotje](https://github.com/scotje))
|
|
509
|
+
- (PDK-1073) Fix gem bin paths for CLI::Exec managed subprocesses [#551](https://github.com/puppetlabs/pdk/pull/551) ([scotje](https://github.com/scotje))
|
|
510
|
+
- (PDK-1046) Improve handling of unexpected errors from puppet parser. [#541](https://github.com/puppetlabs/pdk/pull/541) ([bmjen](https://github.com/bmjen))
|
|
511
|
+
- Correct template path filter logic to only include regular files [#524](https://github.com/puppetlabs/pdk/pull/524) ([nabertrand](https://github.com/nabertrand))
|
|
512
|
+
|
|
513
|
+
## [v1.6.0](https://github.com/puppetlabs/pdk/tree/v1.6.0) - 2018-06-20
|
|
514
|
+
|
|
515
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.5.0...v1.6.0)
|
|
516
|
+
|
|
517
|
+
### Added
|
|
518
|
+
|
|
519
|
+
- (PDK-949) Add a default knockout_prefix for options [#517](https://github.com/puppetlabs/pdk/pull/517) ([jarretlavallee](https://github.com/jarretlavallee))
|
|
520
|
+
- (PDK-636) Make fixture cleaning optional [#515](https://github.com/puppetlabs/pdk/pull/515) ([rodjek](https://github.com/rodjek))
|
|
521
|
+
- (PDK-809) Exit early if the module is not PDK compatible [#506](https://github.com/puppetlabs/pdk/pull/506) ([rodjek](https://github.com/rodjek))
|
|
522
|
+
|
|
523
|
+
### Fixed
|
|
524
|
+
|
|
525
|
+
- (PDK-979) Set path to Gemfile when invoking `bundle lock` [#513](https://github.com/puppetlabs/pdk/pull/513) ([scotje](https://github.com/scotje))
|
|
526
|
+
- (PDK-985) Split validation targets into chunks of 1000 [#509](https://github.com/puppetlabs/pdk/pull/509) ([rodjek](https://github.com/rodjek))
|
|
527
|
+
- (PDK-926) Read rspec event context relative to module root [#508](https://github.com/puppetlabs/pdk/pull/508) ([rodjek](https://github.com/rodjek))
|
|
528
|
+
- Change Metadata.from_file to reliably raise [#503](https://github.com/puppetlabs/pdk/pull/503) ([DavidS](https://github.com/DavidS))
|
|
529
|
+
- (PDK-475) Set BUNDLE_IGNORE_CONFIG for all commands [#502](https://github.com/puppetlabs/pdk/pull/502) ([rodjek](https://github.com/rodjek))
|
|
530
|
+
- Ensure that the report.txt ends with a newline [#501](https://github.com/puppetlabs/pdk/pull/501) ([DavidS](https://github.com/DavidS))
|
|
531
|
+
- (MAINT) Fixup error in log output when parsing invalid .sync.yml [#498](https://github.com/puppetlabs/pdk/pull/498) ([scotje](https://github.com/scotje))
|
|
532
|
+
- Add yaml header to make yamllint happy [#496](https://github.com/puppetlabs/pdk/pull/496) ([wmuizelaar](https://github.com/wmuizelaar))
|
|
533
|
+
- (PDK-802) Work around OpenSSL multi-threading errors when needed [#494](https://github.com/puppetlabs/pdk/pull/494) ([scotje](https://github.com/scotje))
|
|
534
|
+
|
|
535
|
+
## [v1.5.0](https://github.com/puppetlabs/pdk/tree/v1.5.0) - 2018-04-30
|
|
185
536
|
|
|
186
|
-
## [v1.5.0](https://github.com/puppetlabs/pdk/tree/v1.5.0) (2018-04-30)
|
|
187
537
|
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.4.1...v1.5.0)
|
|
188
538
|
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
-
|
|
192
|
-
-
|
|
193
|
-
-
|
|
194
|
-
-
|
|
195
|
-
-
|
|
196
|
-
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
-
|
|
204
|
-
-
|
|
205
|
-
-
|
|
206
|
-
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
- Repo Configs Contain Invalid URLs [\#319](https://github.com/puppetlabs/pdk/issues/319)
|
|
215
|
-
- Gems not found in pre-release [\#254](https://github.com/puppetlabs/pdk/issues/254)
|
|
216
|
-
- Running PDK behind a corporate proxy fails [\#227](https://github.com/puppetlabs/pdk/issues/227)
|
|
217
|
-
|
|
218
|
-
**Merged pull requests:**
|
|
219
|
-
|
|
220
|
-
- Release 1.5.0 [\#493](https://github.com/puppetlabs/pdk/pull/493) ([bmjen](https://github.com/bmjen))
|
|
221
|
-
- \(FIXUP\) Fix issue where PDK was invoking wrong Ruby on Windows [\#492](https://github.com/puppetlabs/pdk/pull/492) ([scotje](https://github.com/scotje))
|
|
222
|
-
- \(maint\) Update package testing for ruby 2.4.4. [\#488](https://github.com/puppetlabs/pdk/pull/488) ([bmjen](https://github.com/bmjen))
|
|
223
|
-
- \(MAINT\) Fix package tests for version selection and airgapped usage [\#485](https://github.com/puppetlabs/pdk/pull/485) ([scotje](https://github.com/scotje))
|
|
224
|
-
- \(maint\) Some minor corrections to CLI strings. [\#484](https://github.com/puppetlabs/pdk/pull/484) ([bmjen](https://github.com/bmjen))
|
|
225
|
-
- \(maint\) Remove static PE version map from PDK::Util::PuppetVersion [\#483](https://github.com/puppetlabs/pdk/pull/483) ([rodjek](https://github.com/rodjek))
|
|
226
|
-
- \(PDK-842\) Wire puppet-version and pe-version options into subcommands [\#480](https://github.com/puppetlabs/pdk/pull/480) ([scotje](https://github.com/scotje))
|
|
227
|
-
- \(FIXUP\) Revert incorrect path change in PDK::CLI::Exec.bundle\_bin [\#478](https://github.com/puppetlabs/pdk/pull/478) ([scotje](https://github.com/scotje))
|
|
228
|
-
- \(maint\) Allow users to major or major.minor versions [\#475](https://github.com/puppetlabs/pdk/pull/475) ([rodjek](https://github.com/rodjek))
|
|
229
|
-
- \(PDK-923\) Honour PDK::Util::RubyVersion.active\_ruby\_version when executing commands [\#474](https://github.com/puppetlabs/pdk/pull/474) ([rodjek](https://github.com/rodjek))
|
|
230
|
-
- \(MAINT\) Fix argument bug with BundleHelper\#update\_lock! [\#473](https://github.com/puppetlabs/pdk/pull/473) ([scotje](https://github.com/scotje))
|
|
231
|
-
- \(PDK-921\) Update PDK::Util::Bundler helpers to support gem switching [\#472](https://github.com/puppetlabs/pdk/pull/472) ([scotje](https://github.com/scotje))
|
|
232
|
-
- Link to PDK template repo [\#470](https://github.com/puppetlabs/pdk/pull/470) ([turbodog](https://github.com/turbodog))
|
|
233
|
-
- \(maint\) Update bundler before build because Ruby 2.5 [\#465](https://github.com/puppetlabs/pdk/pull/465) ([DavidS](https://github.com/DavidS))
|
|
234
|
-
- \(MAINT\) Refactor templatedir path\_or\_url calculation [\#462](https://github.com/puppetlabs/pdk/pull/462) ([scotje](https://github.com/scotje))
|
|
235
|
-
- \(PDK-840\) Add PDK::Util::PuppetVersion.from\_module\_metadata [\#461](https://github.com/puppetlabs/pdk/pull/461) ([rodjek](https://github.com/rodjek))
|
|
236
|
-
- \(maint\) bump dev version [\#458](https://github.com/puppetlabs/pdk/pull/458) ([bmjen](https://github.com/bmjen))
|
|
237
|
-
- \(MAINT\) Add Ruby 2.5 to Travis and Appveyor config [\#457](https://github.com/puppetlabs/pdk/pull/457) ([scotje](https://github.com/scotje))
|
|
238
|
-
- \(maint\) Fixup remaining ruby 2.4.3 issues [\#454](https://github.com/puppetlabs/pdk/pull/454) ([bmjen](https://github.com/bmjen))
|
|
239
|
-
|
|
240
|
-
## [v1.4.1](https://github.com/puppetlabs/pdk/tree/v1.4.1) (2018-02-26)
|
|
539
|
+
### Added
|
|
540
|
+
|
|
541
|
+
- (PDK-904) Warns users of pdk version compatibility [#482](https://github.com/puppetlabs/pdk/pull/482) ([bmjen](https://github.com/bmjen))
|
|
542
|
+
- (PDK-842) Wire puppet-version and pe-version options into subcommands [#480](https://github.com/puppetlabs/pdk/pull/480) ([scotje](https://github.com/scotje))
|
|
543
|
+
- (PDK-921) Update PDK::Util::Bundler helpers to support gem switching [#472](https://github.com/puppetlabs/pdk/pull/472) ([scotje](https://github.com/scotje))
|
|
544
|
+
- (maint) Allow `pdk bundle` to work without `--` [#466](https://github.com/puppetlabs/pdk/pull/466) ([DavidS](https://github.com/DavidS))
|
|
545
|
+
- (PDK-840) Add PDK::Util::PuppetVersion.from_module_metadata [#461](https://github.com/puppetlabs/pdk/pull/461) ([rodjek](https://github.com/rodjek))
|
|
546
|
+
- (PDK-877) Make PDK compatible with Ruby 2.5 [#459](https://github.com/puppetlabs/pdk/pull/459) ([scotje](https://github.com/scotje))
|
|
547
|
+
- Ruby 2.4.3 transition [#453](https://github.com/puppetlabs/pdk/pull/453) ([bmjen](https://github.com/bmjen))
|
|
548
|
+
- (PDK-846) add Resource API type unit test template [#451](https://github.com/puppetlabs/pdk/pull/451) ([tphoney](https://github.com/tphoney))
|
|
549
|
+
- (PDK-785) Add --puppet-version and --pe-version CLI options [#448](https://github.com/puppetlabs/pdk/pull/448) ([rodjek](https://github.com/rodjek))
|
|
550
|
+
|
|
551
|
+
### Fixed
|
|
552
|
+
|
|
553
|
+
- (FIXUP) Fix issue where PDK was invoking wrong Ruby on Windows [#492](https://github.com/puppetlabs/pdk/pull/492) ([scotje](https://github.com/scotje))
|
|
554
|
+
- (maint) Allow module name to contain underscores when verifying [#491](https://github.com/puppetlabs/pdk/pull/491) ([rodjek](https://github.com/rodjek))
|
|
555
|
+
- (MAINT) Make Bundler update_lock! helper more resilient [#489](https://github.com/puppetlabs/pdk/pull/489) ([scotje](https://github.com/scotje))
|
|
556
|
+
- (maint) Unhide parallel flag in test unit. [#486](https://github.com/puppetlabs/pdk/pull/486) ([bmjen](https://github.com/bmjen))
|
|
557
|
+
- (PDK-831, PDK-832) Fix ability to unmanage/delete files via .sync.yml [#479](https://github.com/puppetlabs/pdk/pull/479) ([bmjen](https://github.com/bmjen))
|
|
558
|
+
- (FIXUP) Revert incorrect path change in PDK::CLI::Exec.bundle_bin [#478](https://github.com/puppetlabs/pdk/pull/478) ([scotje](https://github.com/scotje))
|
|
559
|
+
- (PDK-923) Honour PDK::Util::RubyVersion.active_ruby_version when executing commands [#474](https://github.com/puppetlabs/pdk/pull/474) ([rodjek](https://github.com/rodjek))
|
|
560
|
+
- (MAINT) Use `bundle lock --update` to pin json to built-in versions [#460](https://github.com/puppetlabs/pdk/pull/460) ([scotje](https://github.com/scotje))
|
|
561
|
+
|
|
562
|
+
## [v1.4.1](https://github.com/puppetlabs/pdk/tree/v1.4.1) - 2018-02-26
|
|
563
|
+
|
|
241
564
|
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.4.0...v1.4.1)
|
|
242
565
|
|
|
243
|
-
|
|
566
|
+
### Added
|
|
567
|
+
|
|
568
|
+
- Updates msg in pdk update on unconverted module [#442](https://github.com/puppetlabs/pdk/pull/442) ([bmjen](https://github.com/bmjen))
|
|
244
569
|
|
|
245
|
-
|
|
570
|
+
### Fixed
|
|
246
571
|
|
|
247
|
-
|
|
572
|
+
- pdk update and convert fixes [#433](https://github.com/puppetlabs/pdk/pull/433) ([bmjen](https://github.com/bmjen))
|
|
248
573
|
|
|
249
|
-
|
|
250
|
-
- Updates msg in pdk update on unconverted module [\#442](https://github.com/puppetlabs/pdk/pull/442) ([bmjen](https://github.com/bmjen))
|
|
251
|
-
- Release 1.4.1 amend [\#441](https://github.com/puppetlabs/pdk/pull/441) ([bmjen](https://github.com/bmjen))
|
|
252
|
-
- \(maint\) pdk update checks if module is pdk compat [\#440](https://github.com/puppetlabs/pdk/pull/440) ([bmjen](https://github.com/bmjen))
|
|
253
|
-
- Release 1.4.1 amend [\#439](https://github.com/puppetlabs/pdk/pull/439) ([bmjen](https://github.com/bmjen))
|
|
254
|
-
- \(maint\) add a `pdk module build` command to point to `pdk build` [\#438](https://github.com/puppetlabs/pdk/pull/438) ([DavidS](https://github.com/DavidS))
|
|
255
|
-
- \(maint\) unhide the `update` command [\#437](https://github.com/puppetlabs/pdk/pull/437) ([DavidS](https://github.com/DavidS))
|
|
256
|
-
- \(maint\) update: don't mention deleted Gemfile.lock and .bundle/config [\#436](https://github.com/puppetlabs/pdk/pull/436) ([DavidS](https://github.com/DavidS))
|
|
257
|
-
- Release 1.4.1 [\#435](https://github.com/puppetlabs/pdk/pull/435) ([bmjen](https://github.com/bmjen))
|
|
574
|
+
## [v1.4.0](https://github.com/puppetlabs/pdk/tree/v1.4.0) - 2018-02-21
|
|
258
575
|
|
|
259
|
-
## [v1.4.0](https://github.com/puppetlabs/pdk/tree/v1.4.0) (2018-02-21)
|
|
260
576
|
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.3.2...v1.4.0)
|
|
261
577
|
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
- \(PDK-771\) Wireframe `pdk update` CLI [\#419](https://github.com/puppetlabs/pdk/pull/419) ([rodjek](https://github.com/rodjek))
|
|
265
|
-
- \(PDK-550\) Removes unrequired questions from module interview [\#410](https://github.com/puppetlabs/pdk/pull/410) ([bmjen](https://github.com/bmjen))
|
|
266
|
-
- \(PDK-506\) pdk new provider [\#409](https://github.com/puppetlabs/pdk/pull/409) ([DavidS](https://github.com/DavidS))
|
|
267
|
-
- \(PDK-748\) Wireframe `pdk build` CLI [\#407](https://github.com/puppetlabs/pdk/pull/407) ([rodjek](https://github.com/rodjek))
|
|
268
|
-
|
|
269
|
-
**Fixed bugs:**
|
|
270
|
-
|
|
271
|
-
- if a newer rubocop version is installed, pdk should fall-back to safe defaults [\#420](https://github.com/puppetlabs/pdk/issues/420)
|
|
272
|
-
- Update validation regex and error message for module name question [\#430](https://github.com/puppetlabs/pdk/pull/430) ([ardrigh](https://github.com/ardrigh))
|
|
273
|
-
- \(PDK-789\) Add pdk metadata to all generated templatedirs. [\#428](https://github.com/puppetlabs/pdk/pull/428) ([bmjen](https://github.com/bmjen))
|
|
274
|
-
|
|
275
|
-
**Closed issues:**
|
|
276
|
-
|
|
277
|
-
- WS1.Reputation - Symantec Endpoint Protection [\#403](https://github.com/puppetlabs/pdk/issues/403)
|
|
278
|
-
- task input\_method 'powershell' fails validation [\#369](https://github.com/puppetlabs/pdk/issues/369)
|
|
279
|
-
- PDK should have an option to disable progress indicator to make it usable in CI [\#323](https://github.com/puppetlabs/pdk/issues/323)
|
|
280
|
-
|
|
281
|
-
**Merged pull requests:**
|
|
282
|
-
|
|
283
|
-
- Release 1.4.0 [\#432](https://github.com/puppetlabs/pdk/pull/432) ([bmjen](https://github.com/bmjen))
|
|
284
|
-
- \(PDK-808\) Fix to pdk update when there are sync.yml changes [\#431](https://github.com/puppetlabs/pdk/pull/431) ([bmjen](https://github.com/bmjen))
|
|
285
|
-
- \(PDK-806\) Update metadata interview text if metadata.json already exists [\#429](https://github.com/puppetlabs/pdk/pull/429) ([rodjek](https://github.com/rodjek))
|
|
286
|
-
- \(FIXUP\) Make `pdk build` overwrite prompt consistent [\#427](https://github.com/puppetlabs/pdk/pull/427) ([scotje](https://github.com/scotje))
|
|
287
|
-
- \(maint\) Update unit tests to use exit\_zero/exit\_nonzero matchers [\#426](https://github.com/puppetlabs/pdk/pull/426) ([rodjek](https://github.com/rodjek))
|
|
288
|
-
- \(PDK-804\) Fixes error in build without ignore file [\#425](https://github.com/puppetlabs/pdk/pull/425) ([bmjen](https://github.com/bmjen))
|
|
289
|
-
- \(PDK-799\) Adds unit tests for the UX validation [\#423](https://github.com/puppetlabs/pdk/pull/423) ([bmjen](https://github.com/bmjen))
|
|
290
|
-
- \(PDK-754\) Interview for missing or Forge only metadata before build [\#422](https://github.com/puppetlabs/pdk/pull/422) ([bmjen](https://github.com/bmjen))
|
|
291
|
-
- \(PDK-772\) Refactor PDK::Module::Convert for re-use in PDK::Module::Update [\#421](https://github.com/puppetlabs/pdk/pull/421) ([rodjek](https://github.com/rodjek))
|
|
292
|
-
- Revert "\(maint\) pin pdk-templates version ref to workaround puppet 5.… [\#418](https://github.com/puppetlabs/pdk/pull/418) ([bmjen](https://github.com/bmjen))
|
|
293
|
-
- \(PDK-799\) Adds validations and checks to pdk build workflow [\#416](https://github.com/puppetlabs/pdk/pull/416) ([bmjen](https://github.com/bmjen))
|
|
294
|
-
- Small fixes [\#415](https://github.com/puppetlabs/pdk/pull/415) ([DavidS](https://github.com/DavidS))
|
|
295
|
-
- \(maint\) Make sure we use pdk-templates master if in development [\#414](https://github.com/puppetlabs/pdk/pull/414) ([bmjen](https://github.com/bmjen))
|
|
296
|
-
- \(maint\) bump version for dev. [\#412](https://github.com/puppetlabs/pdk/pull/412) ([bmjen](https://github.com/bmjen))
|
|
297
|
-
- \(PDK-758\) Initial port & cleanup of the module build code [\#411](https://github.com/puppetlabs/pdk/pull/411) ([rodjek](https://github.com/rodjek))
|
|
298
|
-
- \(maint\) Fix error templatedir error message [\#408](https://github.com/puppetlabs/pdk/pull/408) ([DavidS](https://github.com/DavidS))
|
|
299
|
-
- \(MAINT\) remove dead code [\#406](https://github.com/puppetlabs/pdk/pull/406) ([DavidS](https://github.com/DavidS))
|
|
300
|
-
- \(PDK-575\) Run puppet parser validate with an dummy empty puppet.conf [\#402](https://github.com/puppetlabs/pdk/pull/402) ([rodjek](https://github.com/rodjek))
|
|
301
|
-
|
|
302
|
-
## [v1.3.2](https://github.com/puppetlabs/pdk/tree/v1.3.2) (2018-01-17)
|
|
303
|
-
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.3.1...v1.3.2)
|
|
578
|
+
### Added
|
|
304
579
|
|
|
305
|
-
|
|
580
|
+
- (PDK-754) Interview for missing or Forge only metadata before build [#422](https://github.com/puppetlabs/pdk/pull/422) ([bmjen](https://github.com/bmjen))
|
|
581
|
+
- (PDK-772) Refactor PDK::Module::Convert for re-use in PDK::Module::Update [#421](https://github.com/puppetlabs/pdk/pull/421) ([rodjek](https://github.com/rodjek))
|
|
582
|
+
- (PDK-771) Wireframe `pdk update` CLI [#419](https://github.com/puppetlabs/pdk/pull/419) ([rodjek](https://github.com/rodjek))
|
|
583
|
+
- (PDK-799) Adds validations and checks to pdk build workflow [#416](https://github.com/puppetlabs/pdk/pull/416) ([bmjen](https://github.com/bmjen))
|
|
584
|
+
- (PDK-758) Initial port & cleanup of the module build code [#411](https://github.com/puppetlabs/pdk/pull/411) ([rodjek](https://github.com/rodjek))
|
|
585
|
+
- (PDK-550) Removes unrequired questions from module interview [#410](https://github.com/puppetlabs/pdk/pull/410) ([bmjen](https://github.com/bmjen))
|
|
586
|
+
- (PDK-506) pdk new provider [#409](https://github.com/puppetlabs/pdk/pull/409) ([DavidS](https://github.com/DavidS))
|
|
587
|
+
- (PDK-748) Wireframe `pdk build` CLI [#407](https://github.com/puppetlabs/pdk/pull/407) ([rodjek](https://github.com/rodjek))
|
|
588
|
+
- (PDK-575) Run puppet parser validate with an dummy empty puppet.conf [#402](https://github.com/puppetlabs/pdk/pull/402) ([rodjek](https://github.com/rodjek))
|
|
306
589
|
|
|
307
|
-
|
|
308
|
-
- Update shipped ruby [\#395](https://github.com/puppetlabs/pdk/issues/395)
|
|
309
|
-
- Puppet and PDK T-Shirts [\#381](https://github.com/puppetlabs/pdk/issues/381)
|
|
590
|
+
### Fixed
|
|
310
591
|
|
|
311
|
-
|
|
592
|
+
- (PDK-808) Fix to pdk update when there are sync.yml changes [#431](https://github.com/puppetlabs/pdk/pull/431) ([bmjen](https://github.com/bmjen))
|
|
593
|
+
- Update validation regex and error message for module name question [#430](https://github.com/puppetlabs/pdk/pull/430) ([ardrigh](https://github.com/ardrigh))
|
|
594
|
+
- (PDK-806) Update metadata interview text if metadata.json already exists [#429](https://github.com/puppetlabs/pdk/pull/429) ([rodjek](https://github.com/rodjek))
|
|
595
|
+
- (PDK-789) Add pdk metadata to all generated templatedirs. [#428](https://github.com/puppetlabs/pdk/pull/428) ([bmjen](https://github.com/bmjen))
|
|
596
|
+
- (FIXUP) Make `pdk build` overwrite prompt consistent [#427](https://github.com/puppetlabs/pdk/pull/427) ([scotje](https://github.com/scotje))
|
|
597
|
+
- (PDK-804) Fixes error in build without ignore file [#425](https://github.com/puppetlabs/pdk/pull/425) ([bmjen](https://github.com/bmjen))
|
|
598
|
+
- Small fixes [#415](https://github.com/puppetlabs/pdk/pull/415) ([DavidS](https://github.com/DavidS))
|
|
312
599
|
|
|
313
|
-
|
|
314
|
-
- 1.3.2 Release Prep [\#404](https://github.com/puppetlabs/pdk/pull/404) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
315
|
-
- \(PDK-552\) Soften PDK::CLI::Util.ensure\_in\_module! error messages [\#401](https://github.com/puppetlabs/pdk/pull/401) ([rodjek](https://github.com/rodjek))
|
|
316
|
-
- \(PDK-739\) Fall back to default template if necessary [\#400](https://github.com/puppetlabs/pdk/pull/400) ([rodjek](https://github.com/rodjek))
|
|
600
|
+
## [v1.3.2](https://github.com/puppetlabs/pdk/tree/v1.3.2) - 2018-01-17
|
|
317
601
|
|
|
318
|
-
|
|
319
|
-
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.3.0...v1.3.1)
|
|
602
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.3.1...v1.3.2)
|
|
320
603
|
|
|
321
|
-
|
|
604
|
+
### Added
|
|
322
605
|
|
|
323
|
-
-
|
|
606
|
+
- (PDK-552) Soften PDK::CLI::Util.ensure_in_module! error messages [#401](https://github.com/puppetlabs/pdk/pull/401) ([rodjek](https://github.com/rodjek))
|
|
607
|
+
- (PDK-739) Fall back to default template if necessary [#400](https://github.com/puppetlabs/pdk/pull/400) ([rodjek](https://github.com/rodjek))
|
|
324
608
|
|
|
325
|
-
|
|
609
|
+
## [v1.3.1](https://github.com/puppetlabs/pdk/tree/v1.3.1) - 2017-12-20
|
|
326
610
|
|
|
327
|
-
|
|
611
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.3.0...v1.3.1)
|
|
328
612
|
|
|
329
|
-
|
|
330
|
-
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.2.1...v1.3.0)
|
|
613
|
+
### Fixed
|
|
331
614
|
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
- \(PDK-715\) Transition pdk to use pdk-templates as template repo [\#380](https://github.com/puppetlabs/pdk/pull/380) ([bmjen](https://github.com/bmjen))
|
|
335
|
-
- \(PDK-622\) Unhide convert subcommand [\#367](https://github.com/puppetlabs/pdk/pull/367) ([bmjen](https://github.com/bmjen))
|
|
336
|
-
- \(maint\) Add/update template metadata on convert [\#366](https://github.com/puppetlabs/pdk/pull/366) ([rodjek](https://github.com/rodjek))
|
|
337
|
-
- \(PDK-625\) Formatting of modified status report and addition of full c… [\#365](https://github.com/puppetlabs/pdk/pull/365) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
338
|
-
- \(PDK-672\) List files changed from convert [\#363](https://github.com/puppetlabs/pdk/pull/363) ([bmjen](https://github.com/bmjen))
|
|
339
|
-
- \(PDK-668\) Templatedir now reads .sync.yml for config when rendering t… [\#354](https://github.com/puppetlabs/pdk/pull/354) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
340
|
-
- \(PDK-643\) Remove escape sequence spam when running in CI systems [\#353](https://github.com/puppetlabs/pdk/pull/353) ([rodjek](https://github.com/rodjek))
|
|
341
|
-
- \(PDK-671\) Makes module\_name optional for pdk new module. [\#344](https://github.com/puppetlabs/pdk/pull/344) ([bmjen](https://github.com/bmjen))
|
|
342
|
-
- \(PDK-628\) Addition of module\_name question to interview [\#327](https://github.com/puppetlabs/pdk/pull/327) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
343
|
-
- \(PDK-594\) mention the used template during `new module` [\#321](https://github.com/puppetlabs/pdk/pull/321) ([DavidS](https://github.com/DavidS))
|
|
344
|
-
|
|
345
|
-
**Fixed bugs:**
|
|
346
|
-
|
|
347
|
-
- add in readline support to ruby [\#305](https://github.com/puppetlabs/pdk/issues/305)
|
|
348
|
-
- \(PDK-643\) Disable non-exec validator spinners when noninteractive [\#385](https://github.com/puppetlabs/pdk/pull/385) ([rodjek](https://github.com/rodjek))
|
|
349
|
-
- \(PDK-596\) Accept "forgeuser-modulename" as argument to `new module` [\#358](https://github.com/puppetlabs/pdk/pull/358) ([DavidS](https://github.com/DavidS))
|
|
350
|
-
- \(PDK-429\) Fix --tests to pass through to unit test handler. [\#351](https://github.com/puppetlabs/pdk/pull/351) ([bmjen](https://github.com/bmjen))
|
|
351
|
-
|
|
352
|
-
**Closed issues:**
|
|
353
|
-
|
|
354
|
-
- Internal Server Error on PDK Download site [\#348](https://github.com/puppetlabs/pdk/issues/348)
|
|
355
|
-
- PDK 1.2.1 `test unit` fails for unsupported OSes [\#338](https://github.com/puppetlabs/pdk/issues/338)
|
|
356
|
-
|
|
357
|
-
**Merged pull requests:**
|
|
358
|
-
|
|
359
|
-
- Release 1.3.0 [\#394](https://github.com/puppetlabs/pdk/pull/394) ([bmjen](https://github.com/bmjen))
|
|
360
|
-
- \(PDK-729\) Remove Set usage in metadata [\#393](https://github.com/puppetlabs/pdk/pull/393) ([rodjek](https://github.com/rodjek))
|
|
361
|
-
- \(maint\) Various UX fixes [\#391](https://github.com/puppetlabs/pdk/pull/391) ([bmjen](https://github.com/bmjen))
|
|
362
|
-
- Minor updates to convert dialog [\#390](https://github.com/puppetlabs/pdk/pull/390) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
363
|
-
- \(maint\) pdk convert acceptance tests [\#389](https://github.com/puppetlabs/pdk/pull/389) ([rodjek](https://github.com/rodjek))
|
|
364
|
-
- \(maint\) Fixes module metadata interview to as for forge username [\#388](https://github.com/puppetlabs/pdk/pull/388) ([bmjen](https://github.com/bmjen))
|
|
365
|
-
- \(MAINT\) Update to released version of GCG [\#387](https://github.com/puppetlabs/pdk/pull/387) ([DavidS](https://github.com/DavidS))
|
|
366
|
-
- \(maint\) Manually load lib/pdk/version.rb in spec [\#386](https://github.com/puppetlabs/pdk/pull/386) ([rodjek](https://github.com/rodjek))
|
|
367
|
-
- \(PDK-489\) unhide experimental commands [\#384](https://github.com/puppetlabs/pdk/pull/384) ([DavidS](https://github.com/DavidS))
|
|
368
|
-
- \(PDK 719\) Directory layout and metadata fixes during convert [\#383](https://github.com/puppetlabs/pdk/pull/383) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
369
|
-
- \(maint\) Some tweaks to improve UX. [\#382](https://github.com/puppetlabs/pdk/pull/382) ([bmjen](https://github.com/bmjen))
|
|
370
|
-
- \(PDK-722\) Remove prompt to continue from start of convert [\#378](https://github.com/puppetlabs/pdk/pull/378) ([rodjek](https://github.com/rodjek))
|
|
371
|
-
- \(PDK-728\) Add default\_template\_ref handler. [\#377](https://github.com/puppetlabs/pdk/pull/377) ([bmjen](https://github.com/bmjen))
|
|
372
|
-
- \(PDK-725\) Add timestamp to PDK Convert Report [\#376](https://github.com/puppetlabs/pdk/pull/376) ([bmjen](https://github.com/bmjen))
|
|
373
|
-
- \(PDK-724\) Ensure dir exist before writing new files during updates. [\#375](https://github.com/puppetlabs/pdk/pull/375) ([bmjen](https://github.com/bmjen))
|
|
374
|
-
- \(PDK-723\) Fixes bug where sync.yml wasn't being applied on convert [\#374](https://github.com/puppetlabs/pdk/pull/374) ([bmjen](https://github.com/bmjen))
|
|
375
|
-
- \(PDK-713\) Clean up old bundler env during convert [\#373](https://github.com/puppetlabs/pdk/pull/373) ([rodjek](https://github.com/rodjek))
|
|
376
|
-
- \(PDK-715\) Use correct module template branch/ref [\#368](https://github.com/puppetlabs/pdk/pull/368) ([bmjen](https://github.com/bmjen))
|
|
377
|
-
- Tweaks to dialog around module conversion [\#362](https://github.com/puppetlabs/pdk/pull/362) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
378
|
-
- Additional user prompt [\#361](https://github.com/puppetlabs/pdk/pull/361) ([rickmonro](https://github.com/rickmonro))
|
|
379
|
-
- Making exit errors generic for interview qs [\#357](https://github.com/puppetlabs/pdk/pull/357) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
380
|
-
- \(maint\) Update PDK::Test::Unit.parallel\_with\_no\_tests? for PSH \#216 changes [\#356](https://github.com/puppetlabs/pdk/pull/356) ([rodjek](https://github.com/rodjek))
|
|
381
|
-
- \(PDK-624\) Add UpdateManager class to handle making changes to module files [\#355](https://github.com/puppetlabs/pdk/pull/355) ([rodjek](https://github.com/rodjek))
|
|
382
|
-
- \(PDK-627\) Support for generating/updating metadata.json during convert [\#352](https://github.com/puppetlabs/pdk/pull/352) ([rodjek](https://github.com/rodjek))
|
|
383
|
-
- \(PDK-674\) UX Improvement for listing unit test files. [\#349](https://github.com/puppetlabs/pdk/pull/349) ([bmjen](https://github.com/bmjen))
|
|
384
|
-
- \(PDK-673\) Moving git commands into a util class [\#347](https://github.com/puppetlabs/pdk/pull/347) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
385
|
-
- \(maint\) Fix generate/ and validate/ file layout to match namespace [\#345](https://github.com/puppetlabs/pdk/pull/345) ([rodjek](https://github.com/rodjek))
|
|
386
|
-
- \(PDK-626\) Templatedir can now handle multiple directories [\#340](https://github.com/puppetlabs/pdk/pull/340) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
387
|
-
- \(maint\) Tidy up package test [\#337](https://github.com/puppetlabs/pdk/pull/337) ([james-stocks](https://github.com/james-stocks))
|
|
388
|
-
- \(PDK-621\) Implement a skeleton `pdk convert` command [\#335](https://github.com/puppetlabs/pdk/pull/335) ([rodjek](https://github.com/rodjek))
|
|
389
|
-
|
|
390
|
-
## [v1.2.1](https://github.com/puppetlabs/pdk/tree/v1.2.1) (2017-10-26)
|
|
391
|
-
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.2.0...v1.2.1)
|
|
615
|
+
- (PDK-736) Improve handling of old template-url and template-ref [#397](https://github.com/puppetlabs/pdk/pull/397) ([scotje](https://github.com/scotje))
|
|
392
616
|
|
|
393
|
-
|
|
617
|
+
## [v1.3.0](https://github.com/puppetlabs/pdk/tree/v1.3.0) - 2017-12-15
|
|
394
618
|
|
|
395
|
-
|
|
619
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.2.1...v1.3.0)
|
|
620
|
+
|
|
621
|
+
### Added
|
|
622
|
+
|
|
623
|
+
- (PDK-489) unhide experimental commands [#384](https://github.com/puppetlabs/pdk/pull/384) ([DavidS](https://github.com/DavidS))
|
|
624
|
+
- (PDK-715) Transition pdk to use pdk-templates as template repo [#380](https://github.com/puppetlabs/pdk/pull/380) ([bmjen](https://github.com/bmjen))
|
|
625
|
+
- (PDK-728) Add default_template_ref handler. [#377](https://github.com/puppetlabs/pdk/pull/377) ([bmjen](https://github.com/bmjen))
|
|
626
|
+
- (PDK-725) Add timestamp to PDK Convert Report [#376](https://github.com/puppetlabs/pdk/pull/376) ([bmjen](https://github.com/bmjen))
|
|
627
|
+
- (PDK-724) Ensure dir exist before writing new files during updates. [#375](https://github.com/puppetlabs/pdk/pull/375) ([bmjen](https://github.com/bmjen))
|
|
628
|
+
- (PDK-713) Clean up old bundler env during convert [#373](https://github.com/puppetlabs/pdk/pull/373) ([rodjek](https://github.com/rodjek))
|
|
629
|
+
- (PDK-622) Unhide convert subcommand [#367](https://github.com/puppetlabs/pdk/pull/367) ([bmjen](https://github.com/bmjen))
|
|
630
|
+
- (maint) Add/update template metadata on convert [#366](https://github.com/puppetlabs/pdk/pull/366) ([rodjek](https://github.com/rodjek))
|
|
631
|
+
- (PDK-625) Formatting of modified status report and addition of full c… [#365](https://github.com/puppetlabs/pdk/pull/365) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
632
|
+
- (PDK-672) List files changed from convert [#363](https://github.com/puppetlabs/pdk/pull/363) ([bmjen](https://github.com/bmjen))
|
|
633
|
+
- Additional user prompt [#361](https://github.com/puppetlabs/pdk/pull/361) ([rickmonro](https://github.com/rickmonro))
|
|
634
|
+
- Making exit errors generic for interview qs [#357](https://github.com/puppetlabs/pdk/pull/357) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
635
|
+
- (PDK-624) Add UpdateManager class to handle making changes to module files [#355](https://github.com/puppetlabs/pdk/pull/355) ([rodjek](https://github.com/rodjek))
|
|
636
|
+
- (PDK-668) Templatedir now reads .sync.yml for config when rendering t… [#354](https://github.com/puppetlabs/pdk/pull/354) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
637
|
+
- (PDK-643) Remove escape sequence spam when running in CI systems [#353](https://github.com/puppetlabs/pdk/pull/353) ([rodjek](https://github.com/rodjek))
|
|
638
|
+
- (PDK-627) Support for generating/updating metadata.json during convert [#352](https://github.com/puppetlabs/pdk/pull/352) ([rodjek](https://github.com/rodjek))
|
|
639
|
+
- (PDK-674) UX Improvement for listing unit test files. [#349](https://github.com/puppetlabs/pdk/pull/349) ([bmjen](https://github.com/bmjen))
|
|
640
|
+
- (PDK-673) Moving git commands into a util class [#347](https://github.com/puppetlabs/pdk/pull/347) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
641
|
+
- (PDK-671) Makes module_name optional for pdk new module. [#344](https://github.com/puppetlabs/pdk/pull/344) ([bmjen](https://github.com/bmjen))
|
|
642
|
+
- (PDK-626) Templatedir can now handle multiple directories [#340](https://github.com/puppetlabs/pdk/pull/340) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
643
|
+
- (PDK-621) Implement a skeleton `pdk convert` command [#335](https://github.com/puppetlabs/pdk/pull/335) ([rodjek](https://github.com/rodjek))
|
|
644
|
+
- (PDK-628) Addition of module_name question to interview [#327](https://github.com/puppetlabs/pdk/pull/327) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
645
|
+
- (PDK-594) mention the used template during `new module` [#321](https://github.com/puppetlabs/pdk/pull/321) ([DavidS](https://github.com/DavidS))
|
|
646
|
+
|
|
647
|
+
### Fixed
|
|
648
|
+
|
|
649
|
+
- (PDK-729) Remove Set usage in metadata [#393](https://github.com/puppetlabs/pdk/pull/393) ([rodjek](https://github.com/rodjek))
|
|
650
|
+
- Minor updates to convert dialog [#390](https://github.com/puppetlabs/pdk/pull/390) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
651
|
+
- (PDK-643) Disable non-exec validator spinners when noninteractive [#385](https://github.com/puppetlabs/pdk/pull/385) ([rodjek](https://github.com/rodjek))
|
|
652
|
+
- (PDK 719) Directory layout and metadata fixes during convert [#383](https://github.com/puppetlabs/pdk/pull/383) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
653
|
+
- (PDK-722) Remove prompt to continue from start of convert [#378](https://github.com/puppetlabs/pdk/pull/378) ([rodjek](https://github.com/rodjek))
|
|
654
|
+
- (PDK-723) Fixes bug where sync.yml wasn't being applied on convert [#374](https://github.com/puppetlabs/pdk/pull/374) ([bmjen](https://github.com/bmjen))
|
|
655
|
+
- (PDK-715) Use correct module template branch/ref [#368](https://github.com/puppetlabs/pdk/pull/368) ([bmjen](https://github.com/bmjen))
|
|
656
|
+
- Tweaks to dialog around module conversion [#362](https://github.com/puppetlabs/pdk/pull/362) ([HelenCampbell](https://github.com/HelenCampbell))
|
|
657
|
+
- (PDK-596) Accept "forgeuser-modulename" as argument to `new module` [#358](https://github.com/puppetlabs/pdk/pull/358) ([DavidS](https://github.com/DavidS))
|
|
658
|
+
- (PDK-429) Fix --tests to pass through to unit test handler. [#351](https://github.com/puppetlabs/pdk/pull/351) ([bmjen](https://github.com/bmjen))
|
|
659
|
+
|
|
660
|
+
## [v1.2.1](https://github.com/puppetlabs/pdk/tree/v1.2.1) - 2017-10-26
|
|
396
661
|
|
|
397
|
-
|
|
662
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.2.0...v1.2.1)
|
|
398
663
|
|
|
399
|
-
|
|
400
|
-
- Support for future parser on Puppet \< 4.0.0 [\#330](https://github.com/puppetlabs/pdk/issues/330)
|
|
401
|
-
- Expose other executables into main bin directory [\#328](https://github.com/puppetlabs/pdk/issues/328)
|
|
402
|
-
- PDK should have yum/apt/choco repos [\#324](https://github.com/puppetlabs/pdk/issues/324)
|
|
403
|
-
- Fails to create new task on OSX [\#316](https://github.com/puppetlabs/pdk/issues/316)
|
|
404
|
-
- Allow validation of control repos [\#289](https://github.com/puppetlabs/pdk/issues/289)
|
|
664
|
+
### Fixed
|
|
405
665
|
|
|
406
|
-
|
|
666
|
+
- Add --relative cli argument for autoload layout testing in puppet-lint [#325](https://github.com/puppetlabs/pdk/pull/325) ([spacepants](https://github.com/spacepants))
|
|
407
667
|
|
|
408
|
-
|
|
409
|
-
- \(PDK-408\) adjusts known issue in README [\#326](https://github.com/puppetlabs/pdk/pull/326) ([jbondpdx](https://github.com/jbondpdx))
|
|
410
|
-
- \(maint\) Bump version for 1.3.0 dev cycle [\#322](https://github.com/puppetlabs/pdk/pull/322) ([bmjen](https://github.com/bmjen))
|
|
411
|
-
- \(maint\) Add pdk-maintainers email to README [\#318](https://github.com/puppetlabs/pdk/pull/318) ([bmjen](https://github.com/bmjen))
|
|
412
|
-
- Fix link to PDK docs [\#317](https://github.com/puppetlabs/pdk/pull/317) ([turbodog](https://github.com/turbodog))
|
|
668
|
+
## [v1.2.0](https://github.com/puppetlabs/pdk/tree/v1.2.0) - 2017-10-06
|
|
413
669
|
|
|
414
|
-
## [v1.2.0](https://github.com/puppetlabs/pdk/tree/v1.2.0) (2017-10-06)
|
|
415
670
|
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.1.0...v1.2.0)
|
|
416
671
|
|
|
417
|
-
|
|
672
|
+
### Added
|
|
418
673
|
|
|
419
|
-
-
|
|
420
|
-
-
|
|
421
|
-
-
|
|
674
|
+
- (PDK-577) Add info line that task metadata was also generated [#312](https://github.com/puppetlabs/pdk/pull/312) ([DavidS](https://github.com/DavidS))
|
|
675
|
+
- Tasks Generation and Validation [#310](https://github.com/puppetlabs/pdk/pull/310) ([bmjen](https://github.com/bmjen))
|
|
676
|
+
- (PDK-479) new module: create examples/, and files/ directory [#308](https://github.com/puppetlabs/pdk/pull/308) ([DavidS](https://github.com/DavidS))
|
|
677
|
+
- (PDK-470) Validation of task metadata. [#301](https://github.com/puppetlabs/pdk/pull/301) ([bmjen](https://github.com/bmjen))
|
|
678
|
+
- (PDK-468) Adding parameters field to task metadata [#300](https://github.com/puppetlabs/pdk/pull/300) ([bmjen](https://github.com/bmjen))
|
|
679
|
+
- (PDK-468) `new task` command [#299](https://github.com/puppetlabs/pdk/pull/299) ([rodjek](https://github.com/rodjek))
|
|
422
680
|
|
|
423
|
-
|
|
681
|
+
### Fixed
|
|
424
682
|
|
|
425
|
-
-
|
|
426
|
-
-
|
|
427
|
-
-
|
|
428
|
-
-
|
|
429
|
-
-
|
|
683
|
+
- (PDK-408) Explain PowerShell escaping for -- on `bundle` [#309](https://github.com/puppetlabs/pdk/pull/309) ([DavidS](https://github.com/DavidS))
|
|
684
|
+
- (PDK-482) Update help messages to be less ambiguous [#307](https://github.com/puppetlabs/pdk/pull/307) ([DavidS](https://github.com/DavidS))
|
|
685
|
+
- (PDK-555) Handle windows style (backslash separated) paths when validating [#306](https://github.com/puppetlabs/pdk/pull/306) ([rodjek](https://github.com/rodjek))
|
|
686
|
+
- (PDK-543) Fix spdx.org URLs in messages [#303](https://github.com/puppetlabs/pdk/pull/303) ([farkasmate](https://github.com/farkasmate))
|
|
687
|
+
- (PDK-502) make the private git available to module commands [#298](https://github.com/puppetlabs/pdk/pull/298) ([rodjek](https://github.com/rodjek))
|
|
430
688
|
|
|
431
|
-
|
|
689
|
+
## [v1.1.0](https://github.com/puppetlabs/pdk/tree/v1.1.0) - 2017-09-13
|
|
432
690
|
|
|
433
|
-
|
|
434
|
-
- Installing Gemfile dependencies on Windows fails [\#297](https://github.com/puppetlabs/pdk/issues/297)
|
|
691
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.0.1...v1.1.0)
|
|
435
692
|
|
|
436
|
-
|
|
693
|
+
### Added
|
|
437
694
|
|
|
438
|
-
-
|
|
439
|
-
-
|
|
440
|
-
-
|
|
441
|
-
-
|
|
442
|
-
-
|
|
695
|
+
- (PDK-369) Improve error context for pdk test unit failures [#294](https://github.com/puppetlabs/pdk/pull/294) ([rodjek](https://github.com/rodjek))
|
|
696
|
+
- (PDK-415) Convert user-input related problems from FATAL to ERROR [#293](https://github.com/puppetlabs/pdk/pull/293) ([rodjek](https://github.com/rodjek))
|
|
697
|
+
- (PDK-465) Improve output from spec_prep/spec_clean failures [#290](https://github.com/puppetlabs/pdk/pull/290) ([rodjek](https://github.com/rodjek))
|
|
698
|
+
- (PDK-465) Add vendored git to PATH for package installs [#287](https://github.com/puppetlabs/pdk/pull/287) ([rodjek](https://github.com/rodjek))
|
|
699
|
+
- (PDK-370) Adds a 'pdk module generate' redirect to 'pdk new module'. [#286](https://github.com/puppetlabs/pdk/pull/286) ([bmjen](https://github.com/bmjen))
|
|
700
|
+
- (PDK-459) Improve error message when the generation target exists [#285](https://github.com/puppetlabs/pdk/pull/285) ([DavidS](https://github.com/DavidS))
|
|
701
|
+
- (PDK-461) Update childprocess to current version [#282](https://github.com/puppetlabs/pdk/pull/282) ([DavidS](https://github.com/DavidS))
|
|
702
|
+
- (PDK-461) Make Version.git_ref more forgiving [#281](https://github.com/puppetlabs/pdk/pull/281) ([DavidS](https://github.com/DavidS))
|
|
703
|
+
- (PDK-459) Add defined type generator [#280](https://github.com/puppetlabs/pdk/pull/280) ([rodjek](https://github.com/rodjek))
|
|
704
|
+
- (MAINT) Copy-edited all the user-visible messages [#276](https://github.com/puppetlabs/pdk/pull/276) ([jbondpdx](https://github.com/jbondpdx))
|
|
705
|
+
- (PDK-365) Inform and prompt user following new module generate [#270](https://github.com/puppetlabs/pdk/pull/270) ([bmjen](https://github.com/bmjen))
|
|
706
|
+
- (maint) Debug output GEM_HOME and GEM_PATH before executing module commands [#268](https://github.com/puppetlabs/pdk/pull/268) ([james-stocks](https://github.com/james-stocks))
|
|
707
|
+
- (SDK-336) Add operating system question to the new module interview [#262](https://github.com/puppetlabs/pdk/pull/262) ([rodjek](https://github.com/rodjek))
|
|
443
708
|
|
|
444
|
-
|
|
445
|
-
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.0.1...v1.1.0)
|
|
709
|
+
### Fixed
|
|
446
710
|
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
- \(PDK-465\) Add vendored git to PATH for package installs [\#287](https://github.com/puppetlabs/pdk/pull/287) ([rodjek](https://github.com/rodjek))
|
|
453
|
-
- \(PDK-370\) Adds a 'pdk module generate' redirect to 'pdk new module'. [\#286](https://github.com/puppetlabs/pdk/pull/286) ([bmjen](https://github.com/bmjen))
|
|
454
|
-
- \(PDK-459\) Improve error message when the generation target exists [\#285](https://github.com/puppetlabs/pdk/pull/285) ([DavidS](https://github.com/DavidS))
|
|
455
|
-
- \(PDK-461\) Update childprocess to current version [\#282](https://github.com/puppetlabs/pdk/pull/282) ([DavidS](https://github.com/DavidS))
|
|
456
|
-
- \(PDK-459\) Add defined type generator [\#280](https://github.com/puppetlabs/pdk/pull/280) ([rodjek](https://github.com/rodjek))
|
|
457
|
-
- \(MAINT\) Copy-edited all the user-visible messages [\#276](https://github.com/puppetlabs/pdk/pull/276) ([jbondpdx](https://github.com/jbondpdx))
|
|
458
|
-
- \(PDK-365\) Inform and prompt user following new module generate [\#270](https://github.com/puppetlabs/pdk/pull/270) ([bmjen](https://github.com/bmjen))
|
|
459
|
-
- \(maint\) Debug output GEM\_HOME and GEM\_PATH before executing module commands [\#268](https://github.com/puppetlabs/pdk/pull/268) ([james-stocks](https://github.com/james-stocks))
|
|
460
|
-
- \(SDK-336\) Add operating system question to the new module interview [\#262](https://github.com/puppetlabs/pdk/pull/262) ([rodjek](https://github.com/rodjek))
|
|
461
|
-
|
|
462
|
-
**Fixed bugs:**
|
|
463
|
-
|
|
464
|
-
- Remove EOL style cop from default configuration [\#267](https://github.com/puppetlabs/pdk/issues/267)
|
|
465
|
-
- \(PDK-450\) remove stdlib dependency [\#278](https://github.com/puppetlabs/pdk/pull/278) ([DavidS](https://github.com/DavidS))
|
|
466
|
-
- \(PDK-420\) Ensure Puppet and Puppet::Util modules are defined [\#277](https://github.com/puppetlabs/pdk/pull/277) ([rodjek](https://github.com/rodjek))
|
|
467
|
-
- \(PDK-430\) Do not cache template-url answer if using the default template [\#265](https://github.com/puppetlabs/pdk/pull/265) ([rodjek](https://github.com/rodjek))
|
|
468
|
-
|
|
469
|
-
**Closed issues:**
|
|
470
|
-
|
|
471
|
-
- Write .fixtures.yml based on metadata.json [\#283](https://github.com/puppetlabs/pdk/issues/283)
|
|
472
|
-
- Default Gemfile for new module need linting [\#273](https://github.com/puppetlabs/pdk/issues/273)
|
|
473
|
-
- pdk executable not installed in path on Debian \(8.8 Jessie\) [\#272](https://github.com/puppetlabs/pdk/issues/272)
|
|
474
|
-
- File mode of generated files and directories are wrong [\#271](https://github.com/puppetlabs/pdk/issues/271)
|
|
475
|
-
- Missing bins should not be fatal [\#253](https://github.com/puppetlabs/pdk/issues/253)
|
|
476
|
-
|
|
477
|
-
**Merged pull requests:**
|
|
478
|
-
|
|
479
|
-
- \(maint\) Sync Windows api types with latest puppet. [\#296](https://github.com/puppetlabs/pdk/pull/296) ([bmjen](https://github.com/bmjen))
|
|
480
|
-
- Release v1.1.0 [\#295](https://github.com/puppetlabs/pdk/pull/295) ([bmjen](https://github.com/bmjen))
|
|
481
|
-
- \(PDK-459\) Docs for generating defined\_type [\#292](https://github.com/puppetlabs/pdk/pull/292) ([bmjen](https://github.com/bmjen))
|
|
482
|
-
- \(MAINT\) Run package test commands in a login shell [\#284](https://github.com/puppetlabs/pdk/pull/284) ([scotje](https://github.com/scotje))
|
|
483
|
-
- \(PDK-461\) Make Version.git\_ref more forgiving [\#281](https://github.com/puppetlabs/pdk/pull/281) ([DavidS](https://github.com/DavidS))
|
|
484
|
-
- \(PDK-446\) Package tests should expect pdk to already be on path [\#279](https://github.com/puppetlabs/pdk/pull/279) ([james-stocks](https://github.com/james-stocks))
|
|
485
|
-
- \(MAINT\) Add strings to POT file [\#269](https://github.com/puppetlabs/pdk/pull/269) ([austb](https://github.com/austb))
|
|
486
|
-
- \(maint\) Updates version to 1.1.0.pre [\#264](https://github.com/puppetlabs/pdk/pull/264) ([bmjen](https://github.com/bmjen))
|
|
487
|
-
|
|
488
|
-
## [v1.0.1](https://github.com/puppetlabs/pdk/tree/v1.0.1) (2017-08-17)
|
|
489
|
-
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.0.0...v1.0.1)
|
|
711
|
+
- (PDK-450) remove stdlib dependency [#278](https://github.com/puppetlabs/pdk/pull/278) ([DavidS](https://github.com/DavidS))
|
|
712
|
+
- (PDK-420) Ensure Puppet and Puppet::Util modules are defined [#277](https://github.com/puppetlabs/pdk/pull/277) ([rodjek](https://github.com/rodjek))
|
|
713
|
+
- (PDK-430) Do not cache template-url answer if using the default template [#265](https://github.com/puppetlabs/pdk/pull/265) ([rodjek](https://github.com/rodjek))
|
|
714
|
+
|
|
715
|
+
## [v1.0.1](https://github.com/puppetlabs/pdk/tree/v1.0.1) - 2017-08-17
|
|
490
716
|
|
|
491
|
-
|
|
717
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v1.0.0...v1.0.1)
|
|
492
718
|
|
|
493
|
-
|
|
494
|
-
- \(MAINT\) Bump tty-prompt ver, remove monkey patch [\#260](https://github.com/puppetlabs/pdk/pull/260) ([austb](https://github.com/austb))
|
|
719
|
+
### Fixed
|
|
495
720
|
|
|
496
|
-
|
|
721
|
+
- (MAINT) Add package bin path to subprocess PATH [#261](https://github.com/puppetlabs/pdk/pull/261) ([austb](https://github.com/austb))
|
|
722
|
+
- (MAINT) Bump tty-prompt ver, remove monkey patch [#260](https://github.com/puppetlabs/pdk/pull/260) ([austb](https://github.com/austb))
|
|
497
723
|
|
|
498
|
-
|
|
499
|
-
- \(MAINT\) Bump master version to 1.1.0.pre [\#259](https://github.com/puppetlabs/pdk/pull/259) ([bmjen](https://github.com/bmjen))
|
|
500
|
-
- Formatting fix [\#258](https://github.com/puppetlabs/pdk/pull/258) ([turbodog](https://github.com/turbodog))
|
|
724
|
+
## [v1.0.0](https://github.com/puppetlabs/pdk/tree/v1.0.0) - 2017-08-15
|
|
501
725
|
|
|
502
|
-
## [v1.0.0](https://github.com/puppetlabs/pdk/tree/v1.0.0) (2017-08-15)
|
|
503
726
|
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.6.0...v1.0.0)
|
|
504
727
|
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
- \(PDK-395\) Use vendored pdk-module-template repo when available [\#255](https://github.com/puppetlabs/pdk/pull/255) ([scotje](https://github.com/scotje))
|
|
508
|
-
- Move content from README to official docs site [\#252](https://github.com/puppetlabs/pdk/pull/252) ([jbondpdx](https://github.com/jbondpdx))
|
|
509
|
-
- \(PDK-367\) Update questionnaire wording [\#251](https://github.com/puppetlabs/pdk/pull/251) ([DavidS](https://github.com/DavidS))
|
|
510
|
-
- \(PDK-406\) Add GEM\_HOME and GEM\_PATH bin dirs to PATH when executing commands [\#249](https://github.com/puppetlabs/pdk/pull/249) ([rodjek](https://github.com/rodjek))
|
|
511
|
-
- \(PDK-401, PDK-402, PDK-403, PDK-404\) Update validators to handle targets better [\#248](https://github.com/puppetlabs/pdk/pull/248) ([bmjen](https://github.com/bmjen))
|
|
512
|
-
- \(maint\) Allow bundler to install gems in parallel [\#245](https://github.com/puppetlabs/pdk/pull/245) ([james-stocks](https://github.com/james-stocks))
|
|
513
|
-
- \(PDK-397\) Log output of bundler commands at appropriate levels [\#243](https://github.com/puppetlabs/pdk/pull/243) ([scotje](https://github.com/scotje))
|
|
514
|
-
- \(PDK-396\) Disable spinners in debug mode [\#233](https://github.com/puppetlabs/pdk/pull/233) ([rodjek](https://github.com/rodjek))
|
|
515
|
-
- \(PDK-388, PDK-392\) Add README, CHANGELOG, and puppet requirement to module generation [\#232](https://github.com/puppetlabs/pdk/pull/232) ([bmjen](https://github.com/bmjen))
|
|
516
|
-
- \(SDK-144\) Add option to run validate in parallel [\#144](https://github.com/puppetlabs/pdk/pull/144) ([austb](https://github.com/austb))
|
|
517
|
-
|
|
518
|
-
**Fixed bugs:**
|
|
519
|
-
|
|
520
|
-
- Running PDK native packages on Windows under ConEmu fails [\#220](https://github.com/puppetlabs/pdk/issues/220)
|
|
521
|
-
- \(PDK-407\) Validate module interview confirmation answer [\#237](https://github.com/puppetlabs/pdk/pull/237) ([rodjek](https://github.com/rodjek))
|
|
522
|
-
- \(PDK-386\) Remove parameter options from 'new class' [\#236](https://github.com/puppetlabs/pdk/pull/236) ([austb](https://github.com/austb))
|
|
523
|
-
|
|
524
|
-
**Merged pull requests:**
|
|
525
|
-
|
|
526
|
-
- \(maint\) monkey patch TTY::Prompt::Reader::WinConsole to make it blocking [\#257](https://github.com/puppetlabs/pdk/pull/257) ([rodjek](https://github.com/rodjek))
|
|
527
|
-
- \(MAINT\) Release prep for 1.0.0 [\#256](https://github.com/puppetlabs/pdk/pull/256) ([scotje](https://github.com/scotje))
|
|
528
|
-
- \(MAINT\) temporarily remove de translation [\#250](https://github.com/puppetlabs/pdk/pull/250) ([DavidS](https://github.com/DavidS))
|
|
529
|
-
- \(MAINT\) Bump master version to 1.0.0.pre [\#244](https://github.com/puppetlabs/pdk/pull/244) ([scotje](https://github.com/scotje))
|
|
530
|
-
- \(FIXUP\) Prevent unit tests from writing results.txt to real filesystem [\#242](https://github.com/puppetlabs/pdk/pull/242) ([scotje](https://github.com/scotje))
|
|
531
|
-
- \(MAINT\) Don't check coverage on gitignored files [\#241](https://github.com/puppetlabs/pdk/pull/241) ([scotje](https://github.com/scotje))
|
|
532
|
-
- \(MAINT\) Use non-forked tty-prompt gem [\#240](https://github.com/puppetlabs/pdk/pull/240) ([austb](https://github.com/austb))
|
|
533
|
-
- \(MAINT\) Add ISC to approved licenses [\#238](https://github.com/puppetlabs/pdk/pull/238) ([scotje](https://github.com/scotje))
|
|
534
|
-
- \(maint\) add license auditing to travis [\#205](https://github.com/puppetlabs/pdk/pull/205) ([DavidS](https://github.com/DavidS))
|
|
535
|
-
|
|
536
|
-
## [v0.6.0](https://github.com/puppetlabs/pdk/tree/v0.6.0) (2017-08-08)
|
|
537
|
-
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.5.0...v0.6.0)
|
|
728
|
+
### Added
|
|
538
729
|
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
-
|
|
542
|
-
-
|
|
543
|
-
-
|
|
544
|
-
-
|
|
545
|
-
-
|
|
546
|
-
-
|
|
547
|
-
-
|
|
548
|
-
-
|
|
549
|
-
- \(maint\) Remove unused vcs option from 'pdk new module' [\#192](https://github.com/puppetlabs/pdk/pull/192) ([rodjek](https://github.com/rodjek))
|
|
550
|
-
- Document compatibility policy and upgrade strategy [\#188](https://github.com/puppetlabs/pdk/pull/188) ([turbodog](https://github.com/turbodog))
|
|
551
|
-
- \(MAINT\) Remove spinner for `bundle check` command [\#187](https://github.com/puppetlabs/pdk/pull/187) ([scotje](https://github.com/scotje))
|
|
552
|
-
- \(SDK-321\) add `pdk validate help` [\#183](https://github.com/puppetlabs/pdk/pull/183) ([DavidS](https://github.com/DavidS))
|
|
553
|
-
- \(SDK-317\) Ensure parent of 'pdk new module' is writable before generation [\#175](https://github.com/puppetlabs/pdk/pull/175) ([rodjek](https://github.com/rodjek))
|
|
554
|
-
- \(SDK-312\) Add option --parallel to `pdk test unit` [\#154](https://github.com/puppetlabs/pdk/pull/154) ([austb](https://github.com/austb))
|
|
555
|
-
|
|
556
|
-
**Fixed bugs:**
|
|
557
|
-
|
|
558
|
-
- \(SDK-325\) Validate all should run all validators [\#230](https://github.com/puppetlabs/pdk/pull/230) ([bmjen](https://github.com/bmjen))
|
|
559
|
-
- \(PDK-373\) Make test unit --list consistent with test unit [\#216](https://github.com/puppetlabs/pdk/pull/216) ([james-stocks](https://github.com/james-stocks))
|
|
560
|
-
- \(MAINT\) Add --strict-dependencies to metadata-json-lint invocation [\#213](https://github.com/puppetlabs/pdk/pull/213) ([scotje](https://github.com/scotje))
|
|
561
|
-
- \(SDK-317\) Replace File.writable? test with actually creating a test file [\#207](https://github.com/puppetlabs/pdk/pull/207) ([scotje](https://github.com/scotje))
|
|
562
|
-
- \(SDK-333\) Rescue Interrupt cleanly [\#199](https://github.com/puppetlabs/pdk/pull/199) ([scotje](https://github.com/scotje))
|
|
563
|
-
- \(\#137\) Nicer response when binary doesn't exist [\#149](https://github.com/puppetlabs/pdk/pull/149) ([rodjek](https://github.com/rodjek))
|
|
564
|
-
|
|
565
|
-
**Closed issues:**
|
|
566
|
-
|
|
567
|
-
- Add /bin/ to .gitignore [\#208](https://github.com/puppetlabs/pdk/issues/208)
|
|
568
|
-
- How to run beaker with pdk? [\#138](https://github.com/puppetlabs/pdk/issues/138)
|
|
569
|
-
- Failed to create new module with "No such file or directory - git" [\#137](https://github.com/puppetlabs/pdk/issues/137)
|
|
570
|
-
|
|
571
|
-
**Merged pull requests:**
|
|
572
|
-
|
|
573
|
-
- \(MAINT\) Release prep for 0.6.0 [\#231](https://github.com/puppetlabs/pdk/pull/231) ([scotje](https://github.com/scotje))
|
|
574
|
-
- Enable rubocop for package-testing folder [\#229](https://github.com/puppetlabs/pdk/pull/229) ([james-stocks](https://github.com/james-stocks))
|
|
575
|
-
- \(PDK-390\) Implement spec:coverage rake task [\#228](https://github.com/puppetlabs/pdk/pull/228) ([DavidS](https://github.com/DavidS))
|
|
576
|
-
- \(MAINT\) Re-add package acceptance test for Gemfile.lock vendoring [\#226](https://github.com/puppetlabs/pdk/pull/226) ([scotje](https://github.com/scotje))
|
|
577
|
-
- \(PDK-385\) Support package testing on OSX [\#225](https://github.com/puppetlabs/pdk/pull/225) ([james-stocks](https://github.com/james-stocks))
|
|
578
|
-
- Pdk preview docs [\#223](https://github.com/puppetlabs/pdk/pull/223) ([jbondpdx](https://github.com/jbondpdx))
|
|
579
|
-
- Package testing: beaker needs to have keys configured [\#221](https://github.com/puppetlabs/pdk/pull/221) ([james-stocks](https://github.com/james-stocks))
|
|
580
|
-
- \(MAINT\) Add find\_all and find\_first json functions [\#219](https://github.com/puppetlabs/pdk/pull/219) ([austb](https://github.com/austb))
|
|
581
|
-
- \(MAINT\) Fix fatal error in test unit --parallel [\#218](https://github.com/puppetlabs/pdk/pull/218) ([austb](https://github.com/austb))
|
|
582
|
-
- \(MAINT\) Add ability to test locally built package with beaker [\#214](https://github.com/puppetlabs/pdk/pull/214) ([scotje](https://github.com/scotje))
|
|
583
|
-
- Give beaker package tests their own Gemfile [\#212](https://github.com/puppetlabs/pdk/pull/212) ([james-stocks](https://github.com/james-stocks))
|
|
584
|
-
- \(MAINT\) Update to official master of github-changelog-generator [\#211](https://github.com/puppetlabs/pdk/pull/211) ([DavidS](https://github.com/DavidS))
|
|
585
|
-
- Unit test baseline [\#210](https://github.com/puppetlabs/pdk/pull/210) ([james-stocks](https://github.com/james-stocks))
|
|
586
|
-
- \(maint\) Add unit tests for PDK::Util [\#204](https://github.com/puppetlabs/pdk/pull/204) ([rodjek](https://github.com/rodjek))
|
|
587
|
-
- \(maint\) Finish unit tests for PDK::Generate::PuppetObject [\#203](https://github.com/puppetlabs/pdk/pull/203) ([rodjek](https://github.com/rodjek))
|
|
588
|
-
- \(maint\) Add unit test for PDK.logger [\#202](https://github.com/puppetlabs/pdk/pull/202) ([rodjek](https://github.com/rodjek))
|
|
589
|
-
- \(maint\) enable coveralls [\#201](https://github.com/puppetlabs/pdk/pull/201) ([DavidS](https://github.com/DavidS))
|
|
590
|
-
- \(MAINT\) Add YARD gem and rake task [\#197](https://github.com/puppetlabs/pdk/pull/197) ([austb](https://github.com/austb))
|
|
591
|
-
- \(MAINT\) Replace \#sort.last with \#max [\#196](https://github.com/puppetlabs/pdk/pull/196) ([austb](https://github.com/austb))
|
|
592
|
-
- \(SDK-313\) Update acceptance tests following audit [\#193](https://github.com/puppetlabs/pdk/pull/193) ([james-stocks](https://github.com/james-stocks))
|
|
593
|
-
- \(MAINT\) Move all unit tests under spec/unit [\#190](https://github.com/puppetlabs/pdk/pull/190) ([scotje](https://github.com/scotje))
|
|
594
|
-
- \(MAINT\) Bump version to 0.6.0.pre [\#186](https://github.com/puppetlabs/pdk/pull/186) ([scotje](https://github.com/scotje))
|
|
595
|
-
- Clarity on running pdk from PowerShell [\#185](https://github.com/puppetlabs/pdk/pull/185) ([turbodog](https://github.com/turbodog))
|
|
596
|
-
- \(maint\) Change package testing to beaker tests [\#184](https://github.com/puppetlabs/pdk/pull/184) ([james-stocks](https://github.com/james-stocks))
|
|
597
|
-
- \(maint\) Move contributor's notes to separate file [\#181](https://github.com/puppetlabs/pdk/pull/181) ([DavidS](https://github.com/DavidS))
|
|
598
|
-
|
|
599
|
-
## [v0.5.0](https://github.com/puppetlabs/pdk/tree/v0.5.0) (2017-07-20)
|
|
600
|
-
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.4.4...v0.5.0)
|
|
730
|
+
- (PDK-395) Use vendored pdk-module-template repo when available [#255](https://github.com/puppetlabs/pdk/pull/255) ([scotje](https://github.com/scotje))
|
|
731
|
+
- Move content from README to official docs site [#252](https://github.com/puppetlabs/pdk/pull/252) ([jbondpdx](https://github.com/jbondpdx))
|
|
732
|
+
- (PDK-367) Update questionnaire wording [#251](https://github.com/puppetlabs/pdk/pull/251) ([DavidS](https://github.com/DavidS))
|
|
733
|
+
- (PDK-406) Add GEM_HOME and GEM_PATH bin dirs to PATH when executing commands [#249](https://github.com/puppetlabs/pdk/pull/249) ([rodjek](https://github.com/rodjek))
|
|
734
|
+
- (PDK-401, PDK-402, PDK-403, PDK-404) Update validators to handle targets better [#248](https://github.com/puppetlabs/pdk/pull/248) ([bmjen](https://github.com/bmjen))
|
|
735
|
+
- (maint) Allow bundler to install gems in parallel [#245](https://github.com/puppetlabs/pdk/pull/245) ([james-stocks](https://github.com/james-stocks))
|
|
736
|
+
- (PDK-397) Log output of bundler commands at appropriate levels [#243](https://github.com/puppetlabs/pdk/pull/243) ([scotje](https://github.com/scotje))
|
|
737
|
+
- (PDK-396) Disable spinners in debug mode [#233](https://github.com/puppetlabs/pdk/pull/233) ([rodjek](https://github.com/rodjek))
|
|
738
|
+
- (PDK-388, PDK-392) Add README, CHANGELOG, and puppet requirement to module generation [#232](https://github.com/puppetlabs/pdk/pull/232) ([bmjen](https://github.com/bmjen))
|
|
739
|
+
- (SDK-144) Add option to run validate in parallel [#144](https://github.com/puppetlabs/pdk/pull/144) ([austb](https://github.com/austb))
|
|
601
740
|
|
|
602
|
-
|
|
741
|
+
### Fixed
|
|
603
742
|
|
|
604
|
-
-
|
|
605
|
-
-
|
|
743
|
+
- (PDK-407) Validate module interview confirmation answer [#237](https://github.com/puppetlabs/pdk/pull/237) ([rodjek](https://github.com/rodjek))
|
|
744
|
+
- (PDK-386) Remove parameter options from 'new class' [#236](https://github.com/puppetlabs/pdk/pull/236) ([austb](https://github.com/austb))
|
|
606
745
|
|
|
607
|
-
|
|
746
|
+
## [v0.6.0](https://github.com/puppetlabs/pdk/tree/v0.6.0) - 2017-08-08
|
|
608
747
|
|
|
609
|
-
|
|
748
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.5.0...v0.6.0)
|
|
610
749
|
|
|
611
|
-
|
|
750
|
+
### Added
|
|
751
|
+
|
|
752
|
+
- (MAINT) Improve moduleroot error message [#224](https://github.com/puppetlabs/pdk/pull/224) ([DavidS](https://github.com/DavidS))
|
|
753
|
+
- (MAINT) workaround rspec-puppt-facts being case-sensitive for operatingsystem filters [#222](https://github.com/puppetlabs/pdk/pull/222) ([DavidS](https://github.com/DavidS))
|
|
754
|
+
- (PDK-354) Change PDK::Logger to write to STDERR [#217](https://github.com/puppetlabs/pdk/pull/217) ([scotje](https://github.com/scotje))
|
|
755
|
+
- (SDK-331) Use vendored Gemfile.lock when available and needed [#215](https://github.com/puppetlabs/pdk/pull/215) ([scotje](https://github.com/scotje))
|
|
756
|
+
- (maint) Expose message when FileUtils.mkdir_p fails during module generation [#209](https://github.com/puppetlabs/pdk/pull/209) ([rodjek](https://github.com/rodjek))
|
|
757
|
+
- (SDK-323) Change color of default answer to cyan [#206](https://github.com/puppetlabs/pdk/pull/206) ([austb](https://github.com/austb))
|
|
758
|
+
- (maint) Remove unimplemented `add provider` from docs [#200](https://github.com/puppetlabs/pdk/pull/200) ([DavidS](https://github.com/DavidS))
|
|
759
|
+
- Update PowerShell install instructions [#194](https://github.com/puppetlabs/pdk/pull/194) ([jpogran](https://github.com/jpogran))
|
|
760
|
+
- (maint) Remove unused vcs option from 'pdk new module' [#192](https://github.com/puppetlabs/pdk/pull/192) ([rodjek](https://github.com/rodjek))
|
|
761
|
+
- Document compatibility policy and upgrade strategy [#188](https://github.com/puppetlabs/pdk/pull/188) ([turbodog](https://github.com/turbodog))
|
|
762
|
+
- (MAINT) Remove spinner for `bundle check` command [#187](https://github.com/puppetlabs/pdk/pull/187) ([scotje](https://github.com/scotje))
|
|
763
|
+
- (SDK-321) add `pdk validate help` [#183](https://github.com/puppetlabs/pdk/pull/183) ([DavidS](https://github.com/DavidS))
|
|
764
|
+
- (SDK-317) Ensure parent of 'pdk new module' is writable before generation [#175](https://github.com/puppetlabs/pdk/pull/175) ([rodjek](https://github.com/rodjek))
|
|
765
|
+
- (SDK-312) Add option --parallel to `pdk test unit` [#154](https://github.com/puppetlabs/pdk/pull/154) ([austb](https://github.com/austb))
|
|
766
|
+
|
|
767
|
+
### Fixed
|
|
768
|
+
|
|
769
|
+
- (SDK-325) Validate all should run all validators [#230](https://github.com/puppetlabs/pdk/pull/230) ([bmjen](https://github.com/bmjen))
|
|
770
|
+
- (PDK-373) Make test unit --list consistent with test unit [#216](https://github.com/puppetlabs/pdk/pull/216) ([james-stocks](https://github.com/james-stocks))
|
|
771
|
+
- (MAINT) Add --strict-dependencies to metadata-json-lint invocation [#213](https://github.com/puppetlabs/pdk/pull/213) ([scotje](https://github.com/scotje))
|
|
772
|
+
- (SDK-317) Replace File.writable? test with actually creating a test file [#207](https://github.com/puppetlabs/pdk/pull/207) ([scotje](https://github.com/scotje))
|
|
773
|
+
- (SDK-333) Rescue Interrupt cleanly [#199](https://github.com/puppetlabs/pdk/pull/199) ([scotje](https://github.com/scotje))
|
|
774
|
+
- (#137) Nicer response when binary doesn't exist [#149](https://github.com/puppetlabs/pdk/pull/149) ([rodjek](https://github.com/rodjek))
|
|
775
|
+
|
|
776
|
+
## [v0.5.0](https://github.com/puppetlabs/pdk/tree/v0.5.0) - 2017-07-20
|
|
612
777
|
|
|
613
|
-
|
|
614
|
-
- \(SDK-322\) Acceptance test for spec tests of new class [\#177](https://github.com/puppetlabs/pdk/pull/177) ([james-stocks](https://github.com/james-stocks))
|
|
615
|
-
- \(MAINT\) Bump to 0.5.0.pre [\#174](https://github.com/puppetlabs/pdk/pull/174) ([scotje](https://github.com/scotje))
|
|
616
|
-
- \(maint\) Finish PDK::Validate::\* unit tests [\#139](https://github.com/puppetlabs/pdk/pull/139) ([rodjek](https://github.com/rodjek))
|
|
778
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.4.4...v0.5.0)
|
|
617
779
|
|
|
618
|
-
|
|
619
|
-
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.4.3...v0.4.4)
|
|
780
|
+
### Added
|
|
620
781
|
|
|
621
|
-
|
|
782
|
+
- (SDK-329) implement running arbitrary commands in PDK's environment [#179](https://github.com/puppetlabs/pdk/pull/179) ([DavidS](https://github.com/DavidS))
|
|
783
|
+
- (maint) Add 2.1.9 as the minimum required ruby version in the gemspec [#176](https://github.com/puppetlabs/pdk/pull/176) ([rodjek](https://github.com/rodjek))
|
|
622
784
|
|
|
623
|
-
|
|
624
|
-
- Validate fails on existing module [\#158](https://github.com/puppetlabs/pdk/issues/158)
|
|
625
|
-
- \(\#158\) \(\#166\) Resolve issue loading bundler from gem installs [\#170](https://github.com/puppetlabs/pdk/pull/170) ([scotje](https://github.com/scotje))
|
|
626
|
-
- \(SDK-319\) force usage of our ruby [\#168](https://github.com/puppetlabs/pdk/pull/168) ([DavidS](https://github.com/DavidS))
|
|
785
|
+
### Fixed
|
|
627
786
|
|
|
628
|
-
|
|
787
|
+
- (SDK-331) allow additional gems to be installed [#178](https://github.com/puppetlabs/pdk/pull/178) ([DavidS](https://github.com/DavidS))
|
|
629
788
|
|
|
630
|
-
|
|
789
|
+
## [v0.4.4](https://github.com/puppetlabs/pdk/tree/v0.4.4) - 2017-07-18
|
|
631
790
|
|
|
632
|
-
|
|
791
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.4.3...v0.4.4)
|
|
633
792
|
|
|
634
|
-
|
|
635
|
-
- \(maint\) mention the execution policy for windows [\#172](https://github.com/puppetlabs/pdk/pull/172) ([DavidS](https://github.com/DavidS))
|
|
636
|
-
- \(maint\) update README to point to current download location [\#171](https://github.com/puppetlabs/pdk/pull/171) ([DavidS](https://github.com/DavidS))
|
|
637
|
-
- \(maint\) fix `new module` description in README [\#169](https://github.com/puppetlabs/pdk/pull/169) ([DavidS](https://github.com/DavidS))
|
|
793
|
+
### Fixed
|
|
638
794
|
|
|
639
|
-
|
|
640
|
-
[
|
|
795
|
+
- (#158) (#166) Resolve issue loading bundler from gem installs [#170](https://github.com/puppetlabs/pdk/pull/170) ([scotje](https://github.com/scotje))
|
|
796
|
+
- (SDK-319) force usage of our ruby [#168](https://github.com/puppetlabs/pdk/pull/168) ([DavidS](https://github.com/DavidS))
|
|
641
797
|
|
|
642
|
-
|
|
798
|
+
## [v0.4.3](https://github.com/puppetlabs/pdk/tree/v0.4.3) - 2017-07-17
|
|
643
799
|
|
|
644
|
-
|
|
800
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.4.2...v0.4.3)
|
|
645
801
|
|
|
646
|
-
|
|
802
|
+
### Fixed
|
|
647
803
|
|
|
648
|
-
-
|
|
649
|
-
- \(MAINT\) Re-bump version to 0.5.0.pre [\#163](https://github.com/puppetlabs/pdk/pull/163) ([scotje](https://github.com/scotje))
|
|
804
|
+
- (FIXUP) Fix default subprocess success/failure messages on Windows [#164](https://github.com/puppetlabs/pdk/pull/164) ([scotje](https://github.com/scotje))
|
|
650
805
|
|
|
651
|
-
## [v0.4.2](https://github.com/puppetlabs/pdk/tree/v0.4.2)
|
|
652
|
-
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.4.1...v0.4.2)
|
|
806
|
+
## [v0.4.2](https://github.com/puppetlabs/pdk/tree/v0.4.2) - 2017-07-17
|
|
653
807
|
|
|
654
|
-
|
|
808
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.4.1...v0.4.2)
|
|
655
809
|
|
|
656
|
-
|
|
657
|
-
- \(FIXUP\) Add missing newlines in new module interview prompts [\#161](https://github.com/puppetlabs/pdk/pull/161) ([scotje](https://github.com/scotje))
|
|
658
|
-
- Use default username when Etc.getlogin fails [\#160](https://github.com/puppetlabs/pdk/pull/160) ([austb](https://github.com/austb))
|
|
810
|
+
### Fixed
|
|
659
811
|
|
|
660
|
-
|
|
812
|
+
- (FIXUP) Add missing newlines in new module interview prompts [#161](https://github.com/puppetlabs/pdk/pull/161) ([scotje](https://github.com/scotje))
|
|
813
|
+
- Use default username when Etc.getlogin fails [#160](https://github.com/puppetlabs/pdk/pull/160) ([austb](https://github.com/austb))
|
|
661
814
|
|
|
662
|
-
|
|
663
|
-
- \(maint\) Remove beaker pre-suite for updating rubygems [\#156](https://github.com/puppetlabs/pdk/pull/156) ([james-stocks](https://github.com/james-stocks))
|
|
664
|
-
- \(maint\) Bumps version for next dev cycle. [\#152](https://github.com/puppetlabs/pdk/pull/152) ([bmjen](https://github.com/bmjen))
|
|
815
|
+
## [v0.4.1](https://github.com/puppetlabs/pdk/tree/v0.4.1) - 2017-07-14
|
|
665
816
|
|
|
666
|
-
## [v0.4.1](https://github.com/puppetlabs/pdk/tree/v0.4.1) (2017-07-14)
|
|
667
817
|
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.4.0...v0.4.1)
|
|
668
818
|
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
- \(FIXUP\) Resolve conflation of cachedir concepts [\#153](https://github.com/puppetlabs/pdk/pull/153) ([scotje](https://github.com/scotje))
|
|
819
|
+
### Fixed
|
|
672
820
|
|
|
673
|
-
|
|
821
|
+
- (FIXUP) Resolve conflation of cachedir concepts [#153](https://github.com/puppetlabs/pdk/pull/153) ([scotje](https://github.com/scotje))
|
|
674
822
|
|
|
675
|
-
|
|
823
|
+
## [v0.4.0](https://github.com/puppetlabs/pdk/tree/v0.4.0) - 2017-07-14
|
|
676
824
|
|
|
677
|
-
## [v0.4.0](https://github.com/puppetlabs/pdk/tree/v0.4.0) (2017-07-14)
|
|
678
825
|
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.3.0...v0.4.0)
|
|
679
826
|
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
- \(SDK-306\) Use vendored development gems in package install [\#145](https://github.com/puppetlabs/pdk/pull/145) ([scotje](https://github.com/scotje))
|
|
683
|
-
- \(SDK-299\) Check metadata.json syntax before linting [\#133](https://github.com/puppetlabs/pdk/pull/133) ([rodjek](https://github.com/rodjek))
|
|
684
|
-
- \(SDK-305\) Answer file to cache module interview answers, template-url etc [\#132](https://github.com/puppetlabs/pdk/pull/132) ([rodjek](https://github.com/rodjek))
|
|
685
|
-
- \(SDK-296\) Allow target selection for the metadata validator [\#124](https://github.com/puppetlabs/pdk/pull/124) ([rodjek](https://github.com/rodjek))
|
|
686
|
-
|
|
687
|
-
**Fixed bugs:**
|
|
688
|
-
|
|
689
|
-
- \(maint\) Remove nil values from metadata before generating JSON [\#127](https://github.com/puppetlabs/pdk/pull/127) ([rodjek](https://github.com/rodjek))
|
|
690
|
-
- \(SDK-298\) Handle exception raised when an invalid report format is specified on the CLI [\#125](https://github.com/puppetlabs/pdk/pull/125) ([rodjek](https://github.com/rodjek))
|
|
691
|
-
|
|
692
|
-
**Merged pull requests:**
|
|
693
|
-
|
|
694
|
-
- v0.4.0 Release Prep [\#151](https://github.com/puppetlabs/pdk/pull/151) ([bmjen](https://github.com/bmjen))
|
|
695
|
-
- \(FIXUP\) Fixes spec tests for answer\_file [\#150](https://github.com/puppetlabs/pdk/pull/150) ([bmjen](https://github.com/bmjen))
|
|
696
|
-
- \(maint\) Pin activesupport to the last release that supported Ruby 2.1.9 [\#148](https://github.com/puppetlabs/pdk/pull/148) ([bmjen](https://github.com/bmjen))
|
|
697
|
-
- \(FIXUP\) Change rubocop default json\_data to a hash [\#147](https://github.com/puppetlabs/pdk/pull/147) ([scotje](https://github.com/scotje))
|
|
698
|
-
- \(FIXUP\) Flatten parsed JSON output from puppet-lint before processing [\#146](https://github.com/puppetlabs/pdk/pull/146) ([scotje](https://github.com/scotje))
|
|
699
|
-
- \(maint\) Improvements to acceptance testing packages [\#142](https://github.com/puppetlabs/pdk/pull/142) ([james-stocks](https://github.com/james-stocks))
|
|
700
|
-
- Acceptance tidy-up [\#140](https://github.com/puppetlabs/pdk/pull/140) ([james-stocks](https://github.com/james-stocks))
|
|
701
|
-
- removes some incorrect info from README [\#136](https://github.com/puppetlabs/pdk/pull/136) ([jbondpdx](https://github.com/jbondpdx))
|
|
702
|
-
- \(maint\) Changes sdk references to pdk [\#135](https://github.com/puppetlabs/pdk/pull/135) ([bmjen](https://github.com/bmjen))
|
|
703
|
-
- \(SDK-275\) Run tests against VM with package install [\#134](https://github.com/puppetlabs/pdk/pull/134) ([james-stocks](https://github.com/james-stocks))
|
|
704
|
-
- \(maint\) Extend unit tests for PDK::Util::Bundler [\#131](https://github.com/puppetlabs/pdk/pull/131) ([rodjek](https://github.com/rodjek))
|
|
705
|
-
- \(maint\) Add missing unit tests for PDK::Report::Event [\#130](https://github.com/puppetlabs/pdk/pull/130) ([rodjek](https://github.com/rodjek))
|
|
706
|
-
- \(maint\) Add unit tests for 'pdk new class' CLI [\#129](https://github.com/puppetlabs/pdk/pull/129) ([rodjek](https://github.com/rodjek))
|
|
707
|
-
- \(maint\) Finish off PDK::CLI::Validate unit tests [\#128](https://github.com/puppetlabs/pdk/pull/128) ([rodjek](https://github.com/rodjek))
|
|
708
|
-
- \(maint\) Updating version for new dev cycle [\#126](https://github.com/puppetlabs/pdk/pull/126) ([bmjen](https://github.com/bmjen))
|
|
709
|
-
- \(maint\) Performance improvements [\#120](https://github.com/puppetlabs/pdk/pull/120) ([rodjek](https://github.com/rodjek))
|
|
710
|
-
- \(idea\) More expressive RSpec matchers for JUnit XML content [\#117](https://github.com/puppetlabs/pdk/pull/117) ([rodjek](https://github.com/rodjek))
|
|
711
|
-
|
|
712
|
-
## [v0.3.0](https://github.com/puppetlabs/pdk/tree/v0.3.0) (2017-06-29)
|
|
713
|
-
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.2.0...v0.3.0)
|
|
827
|
+
### Added
|
|
714
828
|
|
|
715
|
-
|
|
829
|
+
- (SDK-306) Use vendored development gems in package install [#145](https://github.com/puppetlabs/pdk/pull/145) ([scotje](https://github.com/scotje))
|
|
830
|
+
- (SDK-299) Check metadata.json syntax before linting [#133](https://github.com/puppetlabs/pdk/pull/133) ([rodjek](https://github.com/rodjek))
|
|
831
|
+
- (SDK-305) Answer file to cache module interview answers, template-url etc [#132](https://github.com/puppetlabs/pdk/pull/132) ([rodjek](https://github.com/rodjek))
|
|
832
|
+
- (SDK-296) Allow target selection for the metadata validator [#124](https://github.com/puppetlabs/pdk/pull/124) ([rodjek](https://github.com/rodjek))
|
|
716
833
|
|
|
717
|
-
|
|
718
|
-
- \(MAINT\) Various CLI::Exec improvements and updates [\#111](https://github.com/puppetlabs/pdk/pull/111) ([scotje](https://github.com/scotje))
|
|
719
|
-
- \(SDK-148\) Add "test unit --list" [\#107](https://github.com/puppetlabs/pdk/pull/107) ([james-stocks](https://github.com/james-stocks))
|
|
720
|
-
- \(SDK-137\) Add puppet syntax validation [\#105](https://github.com/puppetlabs/pdk/pull/105) ([bmjen](https://github.com/bmjen))
|
|
721
|
-
- \(SDK-285\) Add --auto-correct flag to validators that support it [\#104](https://github.com/puppetlabs/pdk/pull/104) ([rodjek](https://github.com/rodjek))
|
|
722
|
-
- \(SDK-284\) Add guidance for users during new module interview [\#103](https://github.com/puppetlabs/pdk/pull/103) ([rodjek](https://github.com/rodjek))
|
|
723
|
-
- \(SDK-147\) Add 'test unit' runner and basic output formatting [\#98](https://github.com/puppetlabs/pdk/pull/98) ([scotje](https://github.com/scotje))
|
|
834
|
+
### Fixed
|
|
724
835
|
|
|
725
|
-
|
|
836
|
+
- (FIXUP) Fixes spec tests for answer_file [#150](https://github.com/puppetlabs/pdk/pull/150) ([bmjen](https://github.com/bmjen))
|
|
837
|
+
- (FIXUP) Change rubocop default json_data to a hash [#147](https://github.com/puppetlabs/pdk/pull/147) ([scotje](https://github.com/scotje))
|
|
838
|
+
- (FIXUP) Flatten parsed JSON output from puppet-lint before processing [#146](https://github.com/puppetlabs/pdk/pull/146) ([scotje](https://github.com/scotje))
|
|
839
|
+
- (maint) Remove nil values from metadata before generating JSON [#127](https://github.com/puppetlabs/pdk/pull/127) ([rodjek](https://github.com/rodjek))
|
|
840
|
+
- (SDK-298) Handle exception raised when an invalid report format is specified on the CLI [#125](https://github.com/puppetlabs/pdk/pull/125) ([rodjek](https://github.com/rodjek))
|
|
841
|
+
|
|
842
|
+
## [v0.3.0](https://github.com/puppetlabs/pdk/tree/v0.3.0) - 2017-06-29
|
|
843
|
+
|
|
844
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.2.0...v0.3.0)
|
|
726
845
|
|
|
727
|
-
|
|
728
|
-
- \(SDK-290\) Make sure that all usernames are processed when creating a new module [\#108](https://github.com/puppetlabs/pdk/pull/108) ([austb](https://github.com/austb))
|
|
729
|
-
- \(SDK-277\) Exit cleanly if pdk commands are run outside of a module [\#100](https://github.com/puppetlabs/pdk/pull/100) ([rodjek](https://github.com/rodjek))
|
|
846
|
+
### Added
|
|
730
847
|
|
|
731
|
-
|
|
848
|
+
- (MAINT) Add support for stacktrace to Report::Event class [#112](https://github.com/puppetlabs/pdk/pull/112) ([scotje](https://github.com/scotje))
|
|
849
|
+
- (MAINT) Various CLI::Exec improvements and updates [#111](https://github.com/puppetlabs/pdk/pull/111) ([scotje](https://github.com/scotje))
|
|
850
|
+
- (SDK-148) Add "test unit --list" [#107](https://github.com/puppetlabs/pdk/pull/107) ([james-stocks](https://github.com/james-stocks))
|
|
851
|
+
- (SDK-137) Add puppet syntax validation [#105](https://github.com/puppetlabs/pdk/pull/105) ([bmjen](https://github.com/bmjen))
|
|
852
|
+
- (SDK-285) Add --auto-correct flag to validators that support it [#104](https://github.com/puppetlabs/pdk/pull/104) ([rodjek](https://github.com/rodjek))
|
|
853
|
+
- (SDK-284) Add guidance for users during new module interview [#103](https://github.com/puppetlabs/pdk/pull/103) ([rodjek](https://github.com/rodjek))
|
|
854
|
+
- (SDK-147) Add 'test unit' runner and basic output formatting [#98](https://github.com/puppetlabs/pdk/pull/98) ([scotje](https://github.com/scotje))
|
|
732
855
|
|
|
733
|
-
|
|
856
|
+
### Fixed
|
|
734
857
|
|
|
735
|
-
|
|
858
|
+
- (SDK-297) Fixes writing reports to a file [#119](https://github.com/puppetlabs/pdk/pull/119) ([bmjen](https://github.com/bmjen))
|
|
859
|
+
- (SDK-290) Make sure that all usernames are processed when creating a new module [#108](https://github.com/puppetlabs/pdk/pull/108) ([austb](https://github.com/austb))
|
|
860
|
+
- (SDK-277) Exit cleanly if pdk commands are run outside of a module [#100](https://github.com/puppetlabs/pdk/pull/100) ([rodjek](https://github.com/rodjek))
|
|
736
861
|
|
|
737
|
-
|
|
738
|
-
- \(maint\) Remove incorrect space character in README [\#122](https://github.com/puppetlabs/pdk/pull/122) ([james-stocks](https://github.com/james-stocks))
|
|
739
|
-
- \(SDK-294\) Avoid module name conflict in acceptance tests. [\#121](https://github.com/puppetlabs/pdk/pull/121) ([james-stocks](https://github.com/james-stocks))
|
|
740
|
-
- \(maint\) Add release instructions [\#118](https://github.com/puppetlabs/pdk/pull/118) ([DavidS](https://github.com/DavidS))
|
|
741
|
-
- \(maint\) Support for skipped/pending tests [\#115](https://github.com/puppetlabs/pdk/pull/115) ([james-stocks](https://github.com/james-stocks))
|
|
742
|
-
- \(maint\) Update validate CLI help text & README [\#114](https://github.com/puppetlabs/pdk/pull/114) ([rodjek](https://github.com/rodjek))
|
|
743
|
-
- \(maint\) Make binstub generation quiet unless it fails [\#113](https://github.com/puppetlabs/pdk/pull/113) ([rodjek](https://github.com/rodjek))
|
|
744
|
-
- Cleanup rubocop todos [\#110](https://github.com/puppetlabs/pdk/pull/110) ([rodjek](https://github.com/rodjek))
|
|
745
|
-
- \(SDK-260\) Acceptance tests for puppet-lint integration [\#109](https://github.com/puppetlabs/pdk/pull/109) ([rodjek](https://github.com/rodjek))
|
|
746
|
-
- \(maint\) update bundler on travis to current version [\#101](https://github.com/puppetlabs/pdk/pull/101) ([DavidS](https://github.com/DavidS))
|
|
747
|
-
- \(SDK-256\) Acceptance tests for metadata validator behavior and output [\#99](https://github.com/puppetlabs/pdk/pull/99) ([rodjek](https://github.com/rodjek))
|
|
862
|
+
## [v0.2.0](https://github.com/puppetlabs/pdk/tree/v0.2.0) - 2017-06-21
|
|
748
863
|
|
|
749
|
-
## [v0.2.0](https://github.com/puppetlabs/pdk/tree/v0.2.0) (2017-06-21)
|
|
750
864
|
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v0.1.0...v0.2.0)
|
|
751
865
|
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
-
|
|
755
|
-
-
|
|
756
|
-
-
|
|
757
|
-
-
|
|
758
|
-
-
|
|
759
|
-
-
|
|
760
|
-
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
-
|
|
767
|
-
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
- \(maint\) Release 0.2.0 [\#97](https://github.com/puppetlabs/pdk/pull/97) ([DavidS](https://github.com/DavidS))
|
|
776
|
-
- \(SDK-245\) Add acceptance tests for the output of the ruby validator [\#96](https://github.com/puppetlabs/pdk/pull/96) ([rodjek](https://github.com/rodjek))
|
|
777
|
-
- \(SDK-247\) Add tests for rubocop target selection [\#95](https://github.com/puppetlabs/pdk/pull/95) ([rodjek](https://github.com/rodjek))
|
|
778
|
-
- \(maint\) update travis badge to public instance [\#93](https://github.com/puppetlabs/pdk/pull/93) ([DavidS](https://github.com/DavidS))
|
|
779
|
-
- \(maint\) Guard PDK::Util::Bundle.ensure\_bundle! to only run once [\#91](https://github.com/puppetlabs/pdk/pull/91) ([rodjek](https://github.com/rodjek))
|
|
780
|
-
- \(maint\) release prep prep [\#89](https://github.com/puppetlabs/pdk/pull/89) ([DavidS](https://github.com/DavidS))
|
|
781
|
-
- \(MAINT\) Create a class-based subprocess executor. [\#88](https://github.com/puppetlabs/pdk/pull/88) ([scotje](https://github.com/scotje))
|
|
782
|
-
- \(maint\) Fixes travis-ci hipchat notifications [\#85](https://github.com/puppetlabs/pdk/pull/85) ([bmjen](https://github.com/bmjen))
|
|
783
|
-
- \(maint\) Rubocop rake task, and shared context [\#84](https://github.com/puppetlabs/pdk/pull/84) ([DavidS](https://github.com/DavidS))
|
|
784
|
-
- \(SDK-244\) Add basic ruby validation acceptance tests. [\#83](https://github.com/puppetlabs/pdk/pull/83) ([DavidS](https://github.com/DavidS))
|
|
785
|
-
- \(maint\) Expand Windows 8.3 paths in templatedir [\#82](https://github.com/puppetlabs/pdk/pull/82) ([james-stocks](https://github.com/james-stocks))
|
|
786
|
-
- Report format implementation [\#81](https://github.com/puppetlabs/pdk/pull/81) ([rodjek](https://github.com/rodjek))
|
|
787
|
-
- \(FIXUP\) Add a GEM\_PATH for bundler when running acceptance tests [\#80](https://github.com/puppetlabs/pdk/pull/80) ([scotje](https://github.com/scotje))
|
|
788
|
-
- Naming fix [\#79](https://github.com/puppetlabs/pdk/pull/79) ([turbodog](https://github.com/turbodog))
|
|
789
|
-
- \(SDK-276\) Rubocop rules and cleanup [\#78](https://github.com/puppetlabs/pdk/pull/78) ([DavidS](https://github.com/DavidS))
|
|
790
|
-
- \(maint\) Windows cache folder should not be roaming [\#77](https://github.com/puppetlabs/pdk/pull/77) ([james-stocks](https://github.com/james-stocks))
|
|
791
|
-
- \(SDK-190\) Acceptance tests for using commands outside module folder [\#76](https://github.com/puppetlabs/pdk/pull/76) ([james-stocks](https://github.com/james-stocks))
|
|
792
|
-
- \(FIXUP\) Fixes module\_root typo and validate nil handling [\#72](https://github.com/puppetlabs/pdk/pull/72) ([bmjen](https://github.com/bmjen))
|
|
793
|
-
- \(SDK-269\) Add acceptance tests for bundle management. [\#68](https://github.com/puppetlabs/pdk/pull/68) ([scotje](https://github.com/scotje))
|
|
794
|
-
- \(maint\) refactor CLI initialisation to recommended CRI pattern [\#67](https://github.com/puppetlabs/pdk/pull/67) ([DavidS](https://github.com/DavidS))
|
|
795
|
-
- \(SDK-197\) add acceptance tests for new class command [\#65](https://github.com/puppetlabs/pdk/pull/65) ([DavidS](https://github.com/DavidS))
|
|
796
|
-
- \(SDK-218\) Prepare for CI tests against built packages [\#64](https://github.com/puppetlabs/pdk/pull/64) ([james-stocks](https://github.com/james-stocks))
|
|
797
|
-
- Relax data type validation to warn when non-standard types used [\#59](https://github.com/puppetlabs/pdk/pull/59) ([rodjek](https://github.com/rodjek))
|
|
798
|
-
|
|
799
|
-
## [v0.1.0](https://github.com/puppetlabs/pdk/tree/v0.1.0) (2017-06-05)
|
|
800
|
-
**Implemented enhancements:**
|
|
801
|
-
|
|
802
|
-
- \(maint\) update Contributing section [\#56](https://github.com/puppetlabs/pdk/pull/56) ([DavidS](https://github.com/DavidS))
|
|
803
|
-
- \(SDK-197\) Add 'new class' generator command [\#48](https://github.com/puppetlabs/pdk/pull/48) ([rodjek](https://github.com/rodjek))
|
|
804
|
-
- \(SDK-201\) Add 'new module' generator command [\#41](https://github.com/puppetlabs/pdk/pull/41) ([rodjek](https://github.com/rodjek))
|
|
805
|
-
- \(maint\) make debug output optional [\#40](https://github.com/puppetlabs/pdk/pull/40) ([rodjek](https://github.com/rodjek))
|
|
806
|
-
- \(maint\) Print help for 'new' command if no type provided [\#35](https://github.com/puppetlabs/pdk/pull/35) ([rodjek](https://github.com/rodjek))
|
|
807
|
-
- \(SDK-214\) Add gettext and externalize strings [\#32](https://github.com/puppetlabs/pdk/pull/32) ([scotje](https://github.com/scotje))
|
|
808
|
-
- \(SDK-178\) interactive license and module name query [\#30](https://github.com/puppetlabs/pdk/pull/30) ([DavidS](https://github.com/DavidS))
|
|
809
|
-
- \(SDK-200\) Add user interview for `new module` info gathering [\#26](https://github.com/puppetlabs/pdk/pull/26) ([whopper](https://github.com/whopper))
|
|
810
|
-
- \(maint\) Replace --report-\* options with --format. [\#24](https://github.com/puppetlabs/pdk/pull/24) ([whopper](https://github.com/whopper))
|
|
811
|
-
- \(SDK-191\) Allow validators and targets as arguments rather than options [\#22](https://github.com/puppetlabs/pdk/pull/22) ([whopper](https://github.com/whopper))
|
|
812
|
-
- \(SDK-185\) Include the command in usage help output [\#19](https://github.com/puppetlabs/pdk/pull/19) ([james-stocks](https://github.com/james-stocks))
|
|
813
|
-
|
|
814
|
-
**Fixed bugs:**
|
|
815
|
-
|
|
816
|
-
- \(maint\) use correct basedir for windows execs [\#51](https://github.com/puppetlabs/pdk/pull/51) ([DavidS](https://github.com/DavidS))
|
|
817
|
-
- \(maint\) Update pdk.gemspec to not depend on git to assign files. [\#27](https://github.com/puppetlabs/pdk/pull/27) ([scotje](https://github.com/scotje))
|
|
818
|
-
|
|
819
|
-
**Merged pull requests:**
|
|
820
|
-
|
|
821
|
-
- \(maint\) Add CI badges to README [\#57](https://github.com/puppetlabs/pdk/pull/57) ([james-stocks](https://github.com/james-stocks))
|
|
822
|
-
- \(maint\) Add local acceptance tests to Github CI [\#55](https://github.com/puppetlabs/pdk/pull/55) ([james-stocks](https://github.com/james-stocks))
|
|
823
|
-
- \(MAINT\) Ignore bundler generated binstubs but keep bin/\(setup|console\) [\#54](https://github.com/puppetlabs/pdk/pull/54) ([scotje](https://github.com/scotje))
|
|
824
|
-
- Fixes to acceptance [\#53](https://github.com/puppetlabs/pdk/pull/53) ([james-stocks](https://github.com/james-stocks))
|
|
825
|
-
- \(SDK-259\) Add NOTICE file [\#50](https://github.com/puppetlabs/pdk/pull/50) ([DavidS](https://github.com/DavidS))
|
|
826
|
-
- \(SDK-223\) Allow running acceptance tests against current checkout [\#49](https://github.com/puppetlabs/pdk/pull/49) ([james-stocks](https://github.com/james-stocks))
|
|
827
|
-
- \(SDK-222\) Enable rubocop checking in travis [\#44](https://github.com/puppetlabs/pdk/pull/44) ([james-stocks](https://github.com/james-stocks))
|
|
828
|
-
- \(MAINT\) Fixup usage of Tempfile in PDK::CLI::Exec [\#39](https://github.com/puppetlabs/pdk/pull/39) ([scotje](https://github.com/scotje))
|
|
829
|
-
- \(maint\) Rephrase and tighten CLI spec test [\#38](https://github.com/puppetlabs/pdk/pull/38) ([DavidS](https://github.com/DavidS))
|
|
830
|
-
- \(SDK-217\) Prepare acceptance testing for CI [\#37](https://github.com/puppetlabs/pdk/pull/37) ([james-stocks](https://github.com/james-stocks))
|
|
831
|
-
- \(maint, l10n, de\) remove obsolete msgids [\#36](https://github.com/puppetlabs/pdk/pull/36) ([DavidS](https://github.com/DavidS))
|
|
832
|
-
- \(MAINT\) Add Appveyor HipChat config. [\#34](https://github.com/puppetlabs/pdk/pull/34) ([scotje](https://github.com/scotje))
|
|
833
|
-
- \(MAINT\) Add Hipchat notifications to Travis config. [\#33](https://github.com/puppetlabs/pdk/pull/33) ([scotje](https://github.com/scotje))
|
|
834
|
-
- \(SDK-195\) Initial commit of acceptance spec tests [\#29](https://github.com/puppetlabs/pdk/pull/29) ([james-stocks](https://github.com/james-stocks))
|
|
835
|
-
- \(MAINT\) Remove Ruby 2.3.x heredoc syntax usage and add 2.1.9 to travis. [\#25](https://github.com/puppetlabs/pdk/pull/25) ([scotje](https://github.com/scotje))
|
|
836
|
-
- \(maint\) SDK to Puppet Development Kit naming change [\#21](https://github.com/puppetlabs/pdk/pull/21) ([whopper](https://github.com/whopper))
|
|
837
|
-
- \(MAINT\) Rename "generate provider" to "add provider" in README. [\#17](https://github.com/puppetlabs/pdk/pull/17) ([scotje](https://github.com/scotje))
|
|
838
|
-
- \(SDK-120\) Remove old Pick logo [\#16](https://github.com/puppetlabs/pdk/pull/16) ([whopper](https://github.com/whopper))
|
|
839
|
-
- \(SDK-120\) Add skeleton for unit test subcommand [\#15](https://github.com/puppetlabs/pdk/pull/15) ([whopper](https://github.com/whopper))
|
|
840
|
-
- \(PDK-176\) Rename Pick to PDK [\#14](https://github.com/puppetlabs/pdk/pull/14) ([whopper](https://github.com/whopper))
|
|
841
|
-
- \(MAINT\) Add basic logging facility. [\#13](https://github.com/puppetlabs/pdk/pull/13) ([scotje](https://github.com/scotje))
|
|
842
|
-
- \(MAINT\) Update Pick::Report specs to use and clean up a tmpdir. [\#12](https://github.com/puppetlabs/pdk/pull/12) ([scotje](https://github.com/scotje))
|
|
843
|
-
- \(MAINT\) Minor adjustments to CLI setup. [\#11](https://github.com/puppetlabs/pdk/pull/11) ([scotje](https://github.com/scotje))
|
|
844
|
-
- \(SDK-105\) Add Cri option parsing and static analysis functionality [\#10](https://github.com/puppetlabs/pdk/pull/10) ([whopper](https://github.com/whopper))
|
|
845
|
-
- \(maint\) Tidy up Gemfile [\#8](https://github.com/puppetlabs/pdk/pull/8) ([james-stocks](https://github.com/james-stocks))
|
|
846
|
-
- \(SDK-99\) Enable travis and appveyor spec tests [\#7](https://github.com/puppetlabs/pdk/pull/7) ([james-stocks](https://github.com/james-stocks))
|
|
847
|
-
- Remove 'Code Management' section. [\#6](https://github.com/puppetlabs/pdk/pull/6) ([scotje](https://github.com/scotje))
|
|
848
|
-
- Rename 'test static' to 'validate' and refine [\#4](https://github.com/puppetlabs/pdk/pull/4) ([scotje](https://github.com/scotje))
|
|
849
|
-
- Rename 'generate module' to 'new' [\#2](https://github.com/puppetlabs/pdk/pull/2) ([scotje](https://github.com/scotje))
|
|
850
|
-
- for review: \(docs\) first edit on pick README [\#1](https://github.com/puppetlabs/pdk/pull/1) ([jbondpdx](https://github.com/jbondpdx))
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
|
866
|
+
### Added
|
|
867
|
+
|
|
868
|
+
- (SDK-137) Adds Puppet Parser syntax validation [#94](https://github.com/puppetlabs/pdk/pull/94) ([bmjen](https://github.com/bmjen))
|
|
869
|
+
- (SDK-274) Adds --version option [#90](https://github.com/puppetlabs/pdk/pull/90) ([bmjen](https://github.com/bmjen))
|
|
870
|
+
- Report format implementation [#81](https://github.com/puppetlabs/pdk/pull/81) ([rodjek](https://github.com/rodjek))
|
|
871
|
+
- (SDK-244) Add rubocop validation subcommand [#75](https://github.com/puppetlabs/pdk/pull/75) ([rodjek](https://github.com/rodjek))
|
|
872
|
+
- (maint) Add hints for gem installation [#74](https://github.com/puppetlabs/pdk/pull/74) ([DavidS](https://github.com/DavidS))
|
|
873
|
+
- (SDK-240) Adds puppet-lint validation subcommand [#71](https://github.com/puppetlabs/pdk/pull/71) ([bmjen](https://github.com/bmjen))
|
|
874
|
+
- (SDK-261) Manage basic bundler operations for module dev [#62](https://github.com/puppetlabs/pdk/pull/62) ([scotje](https://github.com/scotje))
|
|
875
|
+
- Relax data type validation to warn when non-standard types used [#59](https://github.com/puppetlabs/pdk/pull/59) ([rodjek](https://github.com/rodjek))
|
|
876
|
+
- (SDK-232) Add operatingsystem_support defaults [#58](https://github.com/puppetlabs/pdk/pull/58) ([DavidS](https://github.com/DavidS))
|
|
877
|
+
|
|
878
|
+
### Fixed
|
|
879
|
+
|
|
880
|
+
- (maint) avoid interfering with local ruby configs [#86](https://github.com/puppetlabs/pdk/pull/86) ([DavidS](https://github.com/DavidS))
|
|
881
|
+
- (FIXUP) Fixes module_root typo and validate nil handling [#72](https://github.com/puppetlabs/pdk/pull/72) ([bmjen](https://github.com/bmjen))
|
|
882
|
+
- (SDK-262) Populate default metadata to match interview defaults [#63](https://github.com/puppetlabs/pdk/pull/63) ([rodjek](https://github.com/rodjek))
|
|
883
|
+
- (maint) nokogiri: avoid versions without ruby 2.1 support [#60](https://github.com/puppetlabs/pdk/pull/60) ([DavidS](https://github.com/DavidS))
|
|
884
|
+
|
|
885
|
+
## [v0.1.0](https://github.com/puppetlabs/pdk/tree/v0.1.0) - 2017-06-05
|
|
886
|
+
|
|
887
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/2be9329bed4715c888f273814b99f2cf37ee9341...v0.1.0)
|