diff --git a/README.md b/README.md index b4b5f33e3..3f32e4a51 100644 --- a/README.md +++ b/README.md @@ -347,6 +347,8 @@ Please check out common DSC Resources [contributing guidelines](https://github.c ## Versions ### Unreleased + +### 3.0.0.0 * xSQLServerHelper - added functions - Test-SQLDscParameterState diff --git a/appveyor.yml b/appveyor.yml index e4554f68e..a0cdc2303 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,7 @@ #---------------------------------# # environment configuration # #---------------------------------# -version: 2.0.{build}.0 +version: 3.0.{build}.0 install: - git clone https://github.com/PowerShell/DscResource.Tests - ps: | @@ -38,7 +38,7 @@ deploy_script: # Creating project artifact $stagingDirectory = (Resolve-Path ..).Path $manifest = Join-Path $pwd "xSQLServer.psd1" - (Get-Content $manifest -Raw).Replace("2.0.0.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest + (Get-Content $manifest -Raw).Replace("3.0.0.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest $zipFilePath = Join-Path $stagingDirectory "$(Split-Path $pwd -Leaf).zip" Add-Type -assemblyname System.IO.Compression.FileSystem [System.IO.Compression.ZipFile]::CreateFromDirectory($pwd, $zipFilePath) diff --git a/xSQLServer.psd1 b/xSQLServer.psd1 index 4c4e6e08c..9b39d6db6 100644 --- a/xSQLServer.psd1 +++ b/xSQLServer.psd1 @@ -1,6 +1,6 @@ @{ # Version number of this module. -ModuleVersion = '2.0.0.0' +ModuleVersion = '3.0.0.0' # ID used to uniquely identify this module GUID = '74e9ddb5-4cbc-4fa2-a222-2bcfb533fd66' @@ -47,37 +47,16 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added resources - - xSQLServerReplication - - xSQLServerScript - - xSQLAlias - - xSQLServerRole -* Added tests for resources - - xSQLServerPermission - - xSQLServerEndpointState - - xSQLServerEndpointPermission - - xSQLServerAvailabilityGroupListener - - xSQLServerLogin - - xSQLAOGroupEnsure - - xSQLAlias - - xSQLServerRole -* Fixes in xSQLServerAvailabilityGroupListener - - In one case the Get-method did not report that DHCP was configured. - - Now the resource will throw "Not supported" when IP is changed between Static and DHCP. - - Fixed an issue where sometimes the listener wasn"t removed. - - Fixed the issue when trying to add a static IP to a listener was ignored. -* Fix in xSQLServerDatabase - - Fixed so dropping a database no longer throws an error - - BREAKING CHANGE: Fixed an issue where it was not possible to add the same database to two instances on the same server. - - BREAKING CHANGE: The name of the parameter Database has changed. It is now called Name. -* Fixes in xSQLAOGroupEnsure - - Added parameters to New-ListenerADObject to allow usage of a named instance. - - pass setup credential correctly -* Changes to xSQLServerLogin - - Fixed an issue when dropping logins. - - BREAKING CHANGE: Fixed an issue where it was not possible to add the same login to two instances on the same server. -* Changes to xSQLServerMaxDop - - BREAKING CHANGE: Made SQLInstance parameter a key so that multiple instances on the same server can be configured + ReleaseNotes = '* xSQLServerHelper + - added functions + - Test-SQLDscParameterState + - Get-SqlDatabaseOwner + - Set-SqlDatabaseOwner +* Examples + - xSQLServerDatabaseOwner + - 1-SetDatabaseOwner.ps1 + * Added tests for resources + - MSFT_xSQLServerDatabaseOwner.Tests.Tests.ps1 ' @@ -87,3 +66,4 @@ PrivateData = @{ } +