Skip to content

Commit c3006ad

Browse files
authored
Fix module manifest and changelog
1 parent 77dda01 commit c3006ad

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2323
- Move individual tasks to `windows-latest`.
2424
- Added integration tests for `Assert-SqlDscLogin` command in Group 2.
2525
- `SqlServerDsc.psd`
26-
- Removed `CmdletsToExport` from psd1 to fix [#2109](https://github.com/dsccommunity/SqlServerDsc/issues/2109).
26+
- Set `CmdletsToExport` to `*` in module manifest to fix issue [#2109](https://github.com/dsccommunity/SqlServerDsc/issues/2109).
2727

2828
## [17.1.0] - 2025-05-22
2929

source/SqlServerDsc.psd1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
FunctionsToExport = @()
3131

3232
# Cmdlets to export from this module
33-
CmdletsToExport = @('*')
33+
# Use wildcard to avoid PSDesiredStateConfiguration 2.0.7 filtering class-based DSC resources (see #2109).
34+
CmdletsToExport = '*'
3435

3536
# Variables to export from this module
3637
VariablesToExport = @()

0 commit comments

Comments
 (0)