kitchen-dsc 0.12.0 → 0.12.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/.github/CODEOWNERS +1 -0
- data/.github/workflows/lint.yml +3 -3
- data/.github/workflows/publish.yaml +1 -4
- data/.markdownlint.yaml +2 -5
- data/.release-please-manifest.json +3 -0
- data/CHANGELOG.md +7 -0
- data/README.md +1 -1
- data/lib/kitchen-dsc/version.rb +1 -1
- data/release-please-config.json +12 -0
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 71cf4605d081a3739cbd3e3d451a4c599a03714574a111d523f21e55799c2f5d
|
|
4
|
+
data.tar.gz: 2623b6f7c880531b5aacd631f08f9644314a6df9959093d4dd96ae66bb8f1d38
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0cca4ce55da4e0a10d0f68329d458814eee9e8f028abb055663a76547fff4ccb325255dc12e6a77d8b67b4afb43d73933dae8986edd69d3b4976c557e0abe21b
|
|
7
|
+
data.tar.gz: 02f7d8210f39206396a6103069e6723295d0a5a621e3776456ded437c6aea71be5f703233090a9a0f6d022d70da1f328cecd5395f025334d2f80bf84478fda29
|
data/.github/CODEOWNERS
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@test-kitchen/maintainers
|
data/.github/workflows/lint.yml
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
2
|
+
name: 'Lint, Unit & Integration Tests'
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
'on':
|
|
5
5
|
pull_request:
|
|
6
6
|
|
|
7
7
|
jobs:
|
|
8
8
|
lint-unit:
|
|
9
|
-
uses: test-kitchen/.github/.github/workflows/lint-unit.yml@
|
|
9
|
+
uses: test-kitchen/.github/.github/workflows/lint-unit.yml@main
|
|
@@ -9,12 +9,9 @@ jobs:
|
|
|
9
9
|
release-please:
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
steps:
|
|
12
|
-
- uses:
|
|
12
|
+
- uses: googleapis/release-please-action@v4
|
|
13
13
|
id: release
|
|
14
14
|
with:
|
|
15
|
-
release-type: ruby
|
|
16
|
-
package-name: kitchen-dsc
|
|
17
|
-
version-file: lib/kitchen-dsc/version.rb
|
|
18
15
|
token: ${{ secrets.PORTER_GITHUB_TOKEN }}
|
|
19
16
|
|
|
20
17
|
- name: Checkout
|
data/.markdownlint.yaml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [0.12.1](https://github.com/test-kitchen/kitchen-dsc/compare/v0.12.0...v0.12.1) (2024-07-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* release please ([#95](https://github.com/test-kitchen/kitchen-dsc/issues/95)) ([cd88b24](https://github.com/test-kitchen/kitchen-dsc/commit/cd88b249be85d599191793b25e28b33511c55d97))
|
|
9
|
+
|
|
3
10
|
## [0.12.0](https://github.com/test-kitchen/kitchen-dsc/compare/v0.11.1...v0.12.0) (2023-11-28)
|
|
4
11
|
|
|
5
12
|
|
data/README.md
CHANGED
|
@@ -16,7 +16,7 @@ You'll need a driver box with WMF4 or greater (ONLY WINDOWS SYSTEMS)
|
|
|
16
16
|
|
|
17
17
|
You'll need the test-kitchen & kitchen-dsc gems installed in your system, along with kitchen-vagrant or some ther suitable driver for test-kitchen.
|
|
18
18
|
|
|
19
|
-
### Note
|
|
19
|
+
### Note
|
|
20
20
|
|
|
21
21
|
You will see a delay in the return of the run details due to an difference in how the verbose stream is returned for DSC runs between WMF versions, so I return the verbose stream after the job completes. I'd love to live stream the results, but that'll take a bit more experimentation. (PR's welcome!)
|
|
22
22
|
|
data/lib/kitchen-dsc/version.rb
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"packages": {
|
|
3
|
+
".": {
|
|
4
|
+
"package-name": "kitchen-dsc",
|
|
5
|
+
"changelog-path": "CHANGELOG.md",
|
|
6
|
+
"release-type": "ruby",
|
|
7
|
+
"include-component-in-tag": false,
|
|
8
|
+
"version-file": "lib/kitchen-dsc/version.rb"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
|
|
12
|
+
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-dsc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.12.
|
|
4
|
+
version: 0.12.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Test Kitchen Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-07-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dsc_lcm_configuration
|
|
@@ -45,11 +45,13 @@ executables: []
|
|
|
45
45
|
extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
|
47
47
|
files:
|
|
48
|
+
- ".github/CODEOWNERS"
|
|
48
49
|
- ".github/dependabot.yml"
|
|
49
50
|
- ".github/workflows/lint.yml"
|
|
50
51
|
- ".github/workflows/publish.yaml"
|
|
51
52
|
- ".gitignore"
|
|
52
53
|
- ".markdownlint.yaml"
|
|
54
|
+
- ".release-please-manifest.json"
|
|
53
55
|
- ".rubocop.yml"
|
|
54
56
|
- CHANGELOG.md
|
|
55
57
|
- Gemfile
|
|
@@ -62,6 +64,7 @@ files:
|
|
|
62
64
|
- lib/kitchen/provisioner/dsc_lcm/lcm_base.rb
|
|
63
65
|
- lib/kitchen/provisioner/dsc_lcm/lcm_v4.rb
|
|
64
66
|
- lib/kitchen/provisioner/dsc_lcm/lcm_v5.rb
|
|
67
|
+
- release-please-config.json
|
|
65
68
|
- renovate.json
|
|
66
69
|
- spec/spec_helper.rb
|
|
67
70
|
homepage: https://github.com/test-kitchen/kitchen-dsc
|