Skip to content

Commit

Permalink
Releasing version 3.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kwirkykat committed Nov 2, 2016
1 parent 359f7c3 commit 8d70af3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 34 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -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: |
Expand Down Expand Up @@ -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)
Expand Down
44 changes: 12 additions & 32 deletions xSQLServer.psd1
Original file line number Diff line number Diff line change
@@ -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'
Expand Down Expand Up @@ -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
'

Expand All @@ -87,3 +66,4 @@ PrivateData = @{
}



0 comments on commit 8d70af3

Please sign in to comment.