File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 = @ ()
You can’t perform that action at this time.
0 commit comments