pdk 2.6.0 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +11 -10
- data/lib/pdk/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5fd048aa1b88cbb420fc9e68fdb4c0117bf20f3ea7e31786ead40dedb748d56
|
|
4
|
+
data.tar.gz: bfbcfc0b29a688a124b0e265666928841bc3fbde06ed3b8f4023704a3786e140
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ff4b2c3d6cba83c6e0890b845607f6c0dbd032967a5dde11e03576693ae1379513d8191b8587f1c5a1e7323ec5963ccafbc6dec2923f5bb130195a44bbedede9
|
|
7
|
+
data.tar.gz: 4168482e90168f9a05c6bb241497779ea812ca70c53c06f2cb16777c1232575eb61899ab490027a1ccb98a3a7b5fa72317f9bbd042a259c8eccbc0d26f207f78
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
|
|
6
6
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
|
|
7
7
|
|
|
8
|
+
## [v2.6.1](https://github.com/puppetlabs/pdk/tree/v2.6.1) - 2023-01-25
|
|
9
|
+
|
|
10
|
+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.6.0...v2.6.1)
|
|
11
|
+
|
|
8
12
|
## [v2.6.0](https://github.com/puppetlabs/pdk/tree/v2.6.0) - 2023-01-17
|
|
9
13
|
|
|
10
14
|
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.5.0...v2.6.0)
|
data/README.md
CHANGED
|
@@ -15,16 +15,17 @@ PDK includes testing tools, a complete module skeleton, and command line tools t
|
|
|
15
15
|
|
|
16
16
|
PDK includes the following tools:
|
|
17
17
|
|
|
18
|
-
Tool
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
puppet-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
puppet
|
|
18
|
+
|Tool|Description|Owned by Puppet|
|
|
19
|
+
|----|-----------|---------------|
|
|
20
|
+
|facterdb|A gem that contains facts for Operating Systems.| N |
|
|
21
|
+
|metadata-json-lint|Validates and lints `metadata.json` files in modules against Puppet module metadata style guidelines.| N |
|
|
22
|
+
|pdk|Tool to generate and test modules and module content, such as classes, from the command line.| Y |
|
|
23
|
+
|puppet-debugger|Provides a REPL based debugger console.| N |
|
|
24
|
+
|puppet-lint|Checks your Puppet code against the recommendations in the Puppet language style guide.| Y |
|
|
25
|
+
|puppet-syntax|Checks for correct syntax in Puppet manifests, templates, and Hiera YAML.| N |
|
|
26
|
+
|puppetlabs_spec_helper|Provides classes, methods, and Rake tasks to help with spec testing Puppet code.| Y |
|
|
27
|
+
|rspec-puppet|Tests the behavior of Puppet when it compiles your manifests into a catalog of Puppet resources.| Y |
|
|
28
|
+
|rspec-puppet-facts|Adds support for running `rspec-puppet` tests against the facts for your supported operating systems.| N |
|
|
28
29
|
|
|
29
30
|
|
|
30
31
|
## Installation
|
data/lib/pdk/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.
|
|
4
|
+
version: 2.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppet, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-01-
|
|
11
|
+
date: 2023-01-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|