Skip to content

Commit 3bf062f

Browse files
committed
Add version -preview.12
1 parent 8fb3142 commit 3bf062f

File tree

1 file changed

+115
-2
lines changed

1 file changed

+115
-2
lines changed

docs/prerelease-changelog.md

Lines changed: 115 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.date: 06/24/2024
88

99
# Changelog
1010

11-
<!-- markdownlint-disable-file MD033 -->
11+
<!-- markdownlint-disable-file MD033 MD024 MD053 -->
1212

1313
<!--
1414
Helpful docs snippets
@@ -46,7 +46,7 @@ This section includes a summary of user-facing changes since the last release. F
4646
changes since the last release, see the [diff on GitHub][unreleased].
4747

4848
<!-- Unreleased comparison link - always update version to match last release tag-->
49-
[unreleased]: https://github.com/PowerShell/DSC/compare/v3.0.0-preview.11...main
49+
[unreleased]: https://github.com/PowerShell/DSC/compare/v3.0.0-preview.12...main
5050

5151
<!--
5252
Unreleased change entry instructions:
@@ -73,6 +73,102 @@ changes since the last release, see the [diff on GitHub][unreleased].
7373

7474
<!-- Unreleased change links -->
7575

76+
77+
78+
## [v3.0.0-preview.12][release-v3.0.0-preview.12] - 2024-12-10
79+
80+
This section includes a summary of changes for the `preview.12` release. For the full list of changes
81+
in this release, see the [diff on GitHub][compare-v3.0.0-preview.12].
82+
83+
<!-- Release links -->
84+
[release-v3.0.0-preview.12]: https://github.com/PowerShell/DSC/releases/tag/v3.0.0-preview.12 "Link to the DSC v3.0.0-preview.12 release on GitHub"
85+
[compare-v3.0.0-preview.12]: https://github.com/PowerShell/DSC/compare/v3.0.0-preview.11...v3.0.0-preview.12
86+
87+
### Changed
88+
89+
- Allow multiple `export` methods for class-based PSDSC resources in the PowerShell adapter.
90+
91+
<details><summary>Related work items</summary>
92+
93+
- Issues: [#578][#578].
94+
- PRs: [#579][#579]
95+
96+
</details>
97+
98+
- Change how to pass STDIN via the CLI and rename several arguments for consistency:
99+
`--file -` indicates read-from-STDIN; `--format` is now `--output-format` (short `-o`);
100+
`--document` is now `--input`; and the shorthand for `--trace-format` is now `-t`.
101+
102+
<details><summary>Related work items</summary>
103+
104+
- Issues: [#588][#588].
105+
- PRs: [#601][#601]
106+
107+
</details>
108+
109+
- Internationalization updates for resources and packaging tweaks:
110+
- Make `Microsoft.DSC.Debug/dscecho` resource internationalization compliant.
111+
- Internationalize `Microsoft.DSC.Transitional/RunCommandOnSet`.
112+
113+
<details><summary>Related work items</summary>
114+
115+
- Issues: _None_.
116+
- PRs: [#606][#606], [#608][#608]
117+
118+
</details>
119+
120+
### Added
121+
122+
- Add `--system-root` parameter to `dsc`, plus new configuration functions `systemRoot()` and
123+
`path()` to support offline configuration scenarios and OS-appropriate path joining.
124+
125+
<details><summary>Related work items</summary>
126+
127+
- Issues: [#534][#534].
128+
- PRs: [#589][#589]
129+
130+
</details>
131+
132+
- Add DSC meta configuration support (settings/policy JSON files), including default and policy
133+
settings files.
134+
135+
<details><summary>Related work items</summary>
136+
137+
- Issues: [#282][#282].
138+
- PRs: [#574][#574]
139+
140+
</details>
141+
142+
- Include the `Microsoft/OSInfo` resource in release packages.
143+
144+
<details><summary>Related work items</summary>
145+
146+
- Issues: _None_.
147+
- PRs: [#606][#606]
148+
149+
</details>
150+
151+
### Fixed
152+
153+
- Fix output of the `Microsoft.DSC/Assertion` resource when running `test` so it resembles a
154+
configuration and add array comparison support to the synthetic diff.
155+
156+
<details><summary>Related work items</summary>
157+
158+
- Issues: [#165][#165].
159+
- PRs: [#595][#595]
160+
161+
</details>
162+
163+
- Fix VS Code settings for the `dscecho` resource to align with the renamed project.
164+
165+
<details><summary>Related work items</summary>
166+
167+
- Issues: _None_.
168+
- PRs: [#597][#597]
169+
170+
</details>
171+
76172
## [v3.0.0-preview.11][release-v3.0.0-preview.11] - 2024-10-24
77173

78174
This section includes a summary of changes for the `preview.11` release. For the full list of changes
@@ -2080,3 +2176,20 @@ For the full list of changes in this release, see the [diff on GitHub][compare-v
20802176
[#436]: https://github.com/PowerShell/DSC/issues/436
20812177
[#485]: https://github.com/PowerShell/DSC/issues/485
20822178
[#537]: https://github.com/PowerShell/DSC/issues/537
2179+
2180+
[#282]: https://github.com/PowerShell/DSC/issues/282
2181+
[#534]: https://github.com/PowerShell/DSC/issues/534
2182+
[#578]: https://github.com/PowerShell/DSC/issues/578
2183+
[#588]: https://github.com/PowerShell/DSC/issues/588
2184+
[#574]: https://github.com/PowerShell/DSC/pull/574
2185+
[#579]: https://github.com/PowerShell/DSC/pull/579
2186+
[#581]: https://github.com/PowerShell/DSC/pull/581
2187+
[#587]: https://github.com/PowerShell/DSC/pull/587
2188+
[#589]: https://github.com/PowerShell/DSC/pull/589
2189+
[#595]: https://github.com/PowerShell/DSC/pull/595
2190+
[#597]: https://github.com/PowerShell/DSC/pull/597
2191+
[#601]: https://github.com/PowerShell/DSC/pull/601
2192+
[#603]: https://github.com/PowerShell/DSC/pull/603
2193+
[#606]: https://github.com/PowerShell/DSC/pull/606
2194+
[#608]: https://github.com/PowerShell/DSC/pull/608
2195+
[#609]: https://github.com/PowerShell/DSC/pull/609

0 commit comments

Comments
 (0)