Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SqlServerDsc: Update pipeline files from Sampler #1964

Merged
merged 6 commits into from
Aug 24, 2023
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
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- SqlServerDsc
- Updated pipeline files to support ModuleFast.

### Changed

- SqlRs
- Updated examples to use xPSDesiredStateConfiguration instead of PSDScResources.
- Updated integration tests to use xPSDesiredStateConfiguration instead of PSDScResources.
- SqlScript
- Updated examples to use xPSDesiredStateConfiguration instead of PSDScResources.
- Updated integration tests to use xPSDesiredStateConfiguration instead of PSDScResources.
- SqlScriptQuery
- Updated examples to use xPSDesiredStateConfiguration instead of PSDScResources.
- SqlSetup
- Updated examples to use xPSDesiredStateConfiguration instead of PSDScResources.
- Updated integration tests to use xPSDesiredStateConfiguration instead of PSDScResources.
- SqlAlwaysOnService
- Updated integration tests to use xPSDesiredStateConfiguration instead of PSDScResources.
- SqlLogin
- Updated integration tests to use xPSDesiredStateConfiguration instead of PSDScResources.
- SqlReplication
- Updated integration tests to use xPSDesiredStateConfiguration instead of PSDScResources.
- SqlRSSetup
- Updated integration tests to use xPSDesiredStateConfiguration instead of PSDScResources.
- SqlServiceAccount
- Updated integration tests to use xPSDesiredStateConfiguration instead of PSDScResources.
- SqlWindowsFirewall
- Updated integration tests to use xPSDesiredStateConfiguration instead of PSDScResources.

## [16.4.0] - 2023-08-22

### Added
Expand Down
20 changes: 11 additions & 9 deletions RequiredModules.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@
If preview release of Pester prevents release we should temporary shift
back to stable.
#>
Pester = @{
Version = 'latest'
Parameters = @{
AllowPrerelease = $true
}
}
# Pester = @{
# Version = 'latest'
# Parameters = @{
# AllowPrerelease = $true
# }
# }

Pester = 'latest'

Plaster = 'latest'
ModuleBuilder = 'latest'
Expand All @@ -47,8 +49,8 @@
PSPKI = '3.7.2'

# Prerequisites modules needed for examples or integration tests
PSDscResources = '2.12.0.0'
StorageDsc = '4.9.0.0'
NetworkingDsc = '7.4.0.0'
xPSDesiredStateConfiguration = '9.1.0'
StorageDsc = '5.1.0'
NetworkingDsc = '9.0.0'
WSManDsc = '3.1.1'
}
Loading