Skip to content

Commit 8fb3142

Browse files
committed
Add version -preview.11
1 parent bdc62b1 commit 8fb3142

File tree

1 file changed

+123
-2
lines changed

1 file changed

+123
-2
lines changed

docs/prerelease-changelog.md

Lines changed: 123 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.8...main
49+
[unreleased]: https://github.com/PowerShell/DSC/compare/v3.0.0-preview.11...main
5050

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

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

76+
## [v3.0.0-preview.11][release-v3.0.0-preview.11] - 2024-10-24
77+
78+
This section includes a summary of changes for the `preview.11` release. For the full list of changes
79+
in this release, see the [diff on GitHub][compare-v3.0.0-preview.11].
80+
81+
<!-- Release links -->
82+
[release-v3.0.0-preview.11]: https://github.com/PowerShell/DSC/releases/tag/v3.0.0-preview.11 "Link to the DSC v3.0.0-preview.11 release on GitHub"
83+
[compare-v3.0.0-preview.11]: https://github.com/PowerShell/DSC/compare/v3.0.0-preview.10...v3.0.0-preview.11
84+
85+
### Changed
86+
87+
- Renamed the resource `kind` value `Import` to `Importer`. If your resource manifest sets the
88+
`kind` property to `Import`, update it to `Importer`.
89+
90+
<details><summary>Related work items</summary>
91+
92+
- Issues:[#436][#436].
93+
- PRs: [#552][#552]
94+
95+
</details>
96+
97+
- Improved performance for the adapter lookup table used to resolve adapted resources, reducing
98+
lookup overhead during operations. See also [dsc resource list][p10-aa].
99+
100+
<details><summary>Related work items</summary>
101+
102+
- Issues: _None_.
103+
- PRs: [#568][#568]
104+
105+
</details>
106+
107+
- `dsc` now returns a non-zero exit code when a requested resource isn't found, making failures
108+
easier to detect in automation.
109+
110+
<details><summary>Related work items</summary>
111+
112+
- Issues: _None_.
113+
- PRs: [#561][#561]
114+
115+
</details>
116+
117+
- Changed the Echo test resource to `Microsoft.DSC.Debug/Echo`.
118+
119+
<details><summary>Related work items</summary>
120+
121+
- Issues: [#537][#537].
122+
- PRs: [#553][#553]
123+
124+
</details>
125+
126+
### Added
127+
128+
- Added example configurations for common Windows baselines to help users get started.
129+
130+
<details><summary>Related work items</summary>
131+
132+
- Issues: _None_.
133+
- PRs: [#572][#572]
134+
135+
</details>
136+
137+
### Fixed
138+
139+
- Class-based PowerShell DSC Resources no longer include hidden properties in their output.
140+
141+
<details><summary>Related work items</summary>
142+
143+
- Issues: [#157][#157].
144+
- PRs: [#556][#556]
145+
146+
</details>
147+
148+
- Improved trace messaging for the `Microsoft.Windows/Registry` resource, emitting messages at the
149+
proper levels.
150+
151+
<details><summary>Related work items</summary>
152+
153+
- Issues: _None_.
154+
- PRs: [#555][#555]
155+
156+
</details>
157+
158+
- Fixed input schema validation for the `Microsoft.Windows/RebootPending` resource.
159+
160+
<details><summary>Related work items</summary>
161+
162+
- Issues: [#485][#485].
163+
- PRs: [#488][#488]
164+
165+
</details>
166+
167+
- Fixed a regression in the PowerShell adapter `Test` operation.
168+
169+
<details><summary>Related work items</summary>
170+
171+
- Issues: _None_.
172+
- PRs: [#565][#565]
173+
174+
</details>
175+
76176
## [v3.0.0-preview.10][release-v3.0.0-preview.10] - 2024-09-17
77177

78178
This section includes a summary of changes for the `preview.10` release. For the full list of changes
@@ -1795,6 +1895,7 @@ For the full list of changes in this release, see the [diff on GitHub][compare-v
17951895
[#139]: https://github.com/PowerShell/DSC/issues/139
17961896
[#150]: https://github.com/PowerShell/DSC/issues/150
17971897
[#156]: https://github.com/PowerShell/DSC/issues/156
1898+
[#157]: https://github.com/PowerShell/DSC/issues/157
17981899
[#158]: https://github.com/PowerShell/DSC/issues/158
17991900
[#159]: https://github.com/PowerShell/DSC/issues/159
18001901
[#162]: https://github.com/PowerShell/DSC/issues/162
@@ -1905,6 +2006,7 @@ For the full list of changes in this release, see the [diff on GitHub][compare-v
19052006
[#432]: https://github.com/PowerShell/DSC/issues/432
19062007
[#434]: https://github.com/PowerShell/DSC/issues/434
19072008
[#435]: https://github.com/PowerShell/DSC/issues/435
2009+
[#436]: https://github.com/PowerShell/DSC/issues/436
19082010
[#438]: https://github.com/PowerShell/DSC/issues/438
19092011
[#439]: https://github.com/PowerShell/DSC/issues/439
19102012
[#441]: https://github.com/PowerShell/DSC/issues/441
@@ -1925,6 +2027,8 @@ For the full list of changes in this release, see the [diff on GitHub][compare-v
19252027
[#481]: https://github.com/PowerShell/DSC/issues/481
19262028
[#482]: https://github.com/PowerShell/DSC/issues/482
19272029
[#484]: https://github.com/PowerShell/DSC/issues/484
2030+
[#485]: https://github.com/PowerShell/DSC/issues/485
2031+
[#488]: https://github.com/PowerShell/DSC/issues/488
19282032
[#487]: https://github.com/PowerShell/DSC/issues/487
19292033
[#489]: https://github.com/PowerShell/DSC/issues/489
19302034
[#49]: https://github.com/PowerShell/DSC/issues/49
@@ -1938,7 +2042,7 @@ For the full list of changes in this release, see the [diff on GitHub][compare-v
19382042
[#503]: https://github.com/PowerShell/DSC/issues/503
19392043
[#504]: https://github.com/PowerShell/DSC/issues/504
19402044
[#505]: https://github.com/PowerShell/DSC/issues/505
1941-
[#506]: https://github.com/PowerShell/DSC/issues/504
2045+
[#506]: https://github.com/PowerShell/DSC/issues/506
19422046
[#509]: https://github.com/PowerShell/DSC/issues/509
19432047
[#511]: https://github.com/PowerShell/DSC/issues/511
19442048
[#512]: https://github.com/PowerShell/DSC/issues/512
@@ -1953,9 +2057,26 @@ For the full list of changes in this release, see the [diff on GitHub][compare-v
19532057
[#533]: https://github.com/PowerShell/DSC/issues/533
19542058
[#541]: https://github.com/PowerShell/DSC/issues/541
19552059
[#548]: https://github.com/PowerShell/DSC/issues/548
2060+
[#549]: https://github.com/PowerShell/DSC/issues/549
2061+
[#551]: https://github.com/PowerShell/DSC/issues/551
2062+
[#552]: https://github.com/PowerShell/DSC/issues/552
2063+
[#553]: https://github.com/PowerShell/DSC/issues/553
2064+
[#555]: https://github.com/PowerShell/DSC/issues/555
2065+
[#556]: https://github.com/PowerShell/DSC/issues/556
2066+
[#561]: https://github.com/PowerShell/DSC/issues/561
2067+
[#564]: https://github.com/PowerShell/DSC/issues/564
2068+
[#565]: https://github.com/PowerShell/DSC/issues/565
2069+
[#568]: https://github.com/PowerShell/DSC/issues/568
2070+
[#572]: https://github.com/PowerShell/DSC/issues/572
2071+
[#573]: https://github.com/PowerShell/DSC/issues/573
2072+
[#577]: https://github.com/PowerShell/DSC/issues/577
19562073
[#57]: https://github.com/PowerShell/DSC/issues/57
19572074
[#70]: https://github.com/PowerShell/DSC/issues/70
19582075
[#73]: https://github.com/PowerShell/DSC/issues/73
19592076
[#75]: https://github.com/PowerShell/DSC/issues/75
19602077
[#89]: https://github.com/PowerShell/DSC/issues/89
19612078
[#98]: https://github.com/PowerShell/DSC/issues/98
2079+
[#157]: https://github.com/PowerShell/DSC/issues/157
2080+
[#436]: https://github.com/PowerShell/DSC/issues/436
2081+
[#485]: https://github.com/PowerShell/DSC/issues/485
2082+
[#537]: https://github.com/PowerShell/DSC/issues/537

0 commit comments

Comments
 (0)