Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
72abc88
New-SqlDscDatabase: Add more properties
johlju Nov 30, 2025
b102c21
New-SqlDscDatabase: Suppress warning for credential name reference
johlju Nov 30, 2025
49b630e
Update parameter descriptions in New-SqlDscDatabase to specify SQL Se…
johlju Dec 1, 2025
f568cd5
Update parameter descriptions in Set-SqlDscDatabaseProperty to specif…
johlju Dec 1, 2025
e9937eb
Update CHANGELOG.md for clarity on recent changes and additions
johlju Dec 1, 2025
9fbc4be
Fix parameter types and descriptions for database-scoped configuratio…
johlju Dec 1, 2025
206d3a0
Fix parameter types for boolean properties in New-SqlDscDatabase to u…
johlju Dec 1, 2025
c7b92d7
Update parameter types in Set-SqlDscDatabaseProperty to use SwitchPar…
johlju Dec 1, 2025
9495019
Fix parameter syntax in examples of Set-SqlDscDatabaseProperty for bo…
johlju Dec 1, 2025
6e02ed2
Refactor Test-SqlDscDatabaseProperty to use SwitchParameter for boole…
johlju Dec 1, 2025
0735098
Add DatabaseScopedConfigurationOnOff enum for database configuration …
johlju Dec 1, 2025
af24e17
Merge branch 'main' into fix/issue-#2190
johlju Dec 1, 2025
700d675
Update CHANGELOG.md to add details for New-SqlDscDatabase properties
johlju Dec 1, 2025
4606b94
Update parameter syntax in Set-SqlDscDatabaseProperty and Test-SqlDsc…
johlju Dec 1, 2025
030f0e9
Add database-scoped configuration properties to test cases in Test-Sq…
johlju Dec 1, 2025
17fef58
Update UserAccess parameter description in Test-SqlDscDatabasePropert…
johlju Dec 1, 2025
a5a2ace
Fix typo in comment-based help for Set-SqlDscDatabaseProperty
johlju Dec 1, 2025
5b25222
Remove unnecessary blank line in New-SqlDscDatabase.Tests.ps1
johlju Dec 1, 2025
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
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- `New-SqlDscDatabase`
- Added comprehensive set of settable database properties that were previously
only available in `Set-SqlDscDatabaseProperty`
([issue #2190](https://github.com/dsccommunity/SqlServerDsc/issues/2190)).

### Changed

- `Set-SqlDscDatabaseProperty`
- Updated comment-based help to reference correct enum values.
- Added SQL Server version requirements to version-specific parameter help.

Comment thread
johlju marked this conversation as resolved.
### Fixed

- `New-SqlDscDatabase`
- Fixed parameter types for database-scoped configuration properties from
`System.Boolean` to `Microsoft.SqlServer.Management.Smo.DatabaseScopedConfigurationOnOff`
to match SMO property types and support all valid values (Off, On, Primary)
([issue #2190](https://github.com/dsccommunity/SqlServerDsc/issues/2190)).
- Fixed parameter types for boolean database properties from `System.Boolean` to
`System.Management.Automation.SwitchParameter` to follow PowerShell best practices.
([issue #2190](https://github.com/dsccommunity/SqlServerDsc/issues/2190)).
- `Set-SqlDscDatabaseProperty`
- Fixed parameter types for database-scoped configuration properties from
`System.Boolean` to `Microsoft.SqlServer.Management.Smo.DatabaseScopedConfigurationOnOff`
to match SMO property types and support all valid values (Off, On, Primary)
([issue #2190](https://github.com/dsccommunity/SqlServerDsc/issues/2190)).
- Fixed parameter types for boolean database properties from `System.Boolean` to
`System.Management.Automation.SwitchParameter` to follow PowerShell best practices.
([issue #2190](https://github.com/dsccommunity/SqlServerDsc/issues/2190)).

## [17.3.0] - 2025-12-01

### Removed
Expand Down
Loading
Loading