Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Remove `windows-2019` images fixes [#2106](https://github.com/dsccommunity/SqlServerDsc/issues/2106).
- Move individual tasks to `windows-latest`.
- Added integration tests for `Assert-SqlDscLogin` command in Group 2.
- `SqlServerDsc.psd1`
- Set `CmdletsToExport` to `*` in module manifest to fix issue [#2109](https://github.com/dsccommunity/SqlServerDsc/issues/2109).

## [17.1.0] - 2025-05-22

Expand Down
3 changes: 2 additions & 1 deletion source/SqlServerDsc.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
FunctionsToExport = @()

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

# Variables to export from this module
VariablesToExport = @()
Expand Down
Loading