Skip to content

Commit

Permalink
Releasing version 11.4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kwirkykat committed Jul 25, 2018
1 parent 77a40f5 commit 6d42512
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 11.4.0.0

- Changes to SqlServerDsc
- Updated helper function Restart-SqlService to have to new optional parameters
`SkipClusterCheck` and `SkipWaitForOnline`. This was to support more aspects
Expand Down
39 changes: 30 additions & 9 deletions SqlServerDsc.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
# Version number of this module.
moduleVersion = '11.3.0.0'
moduleVersion = '11.4.0.0'

# ID used to uniquely identify this module
GUID = '693ee082-ed36-45a7-b490-88b07c86b42f'
Expand Down Expand Up @@ -50,14 +50,34 @@

# ReleaseNotes of this module
ReleaseNotes = '- Changes to SqlServerDsc
- Moved decoration for integration test to resolve a breaking change in
DscResource.Tests.
- Activated the GitHub App Stale on the GitHub repository.
- Added a CODE\_OF\_CONDUCT.md with the same content as in the README.md
[issue 939](https://github.com/PowerShell/SqlServerDsc/issues/939).
- New resources:
- Added SqlScriptQueryResource. [Chase Wilson (@chasewilson)](https://github.com/chasewilson)
- Fix for issue 779 [Paul Kelly (@prkelly)](https://github.com/prkelly)
- Updated helper function Restart-SqlService to have to new optional parameters
`SkipClusterCheck` and `SkipWaitForOnline`. This was to support more aspects
of the resource SqlServerNetwork.
- Updated helper function `Import-SQLPSModule`
- To only import module if the
module does not exist in the session.
- To always import the latest version of "SqlServer" or "SQLPS" module, if
more than one version exist on the target node. It will still prefer to
use "SqlServer" module.
- Updated all the examples and integration tests to not use
`PSDscAllowPlainTextPassword`, so examples using credentials or
passwords by default are secure.
- Changes to SqlAlwaysOnService
- Integration tests was updated to handle new IPv6 addresses on the AppVeyor
build worker ([issue 1155](https://github.com/PowerShell/SqlServerDsc/issues/1155)).
- Changes to SqlServerNetwork
- Refactor SqlServerNetwork to not load assembly from GAC ([issue 1151](https://github.com/PowerShell/SqlServerDsc/issues/1151)).
- The resource now supports restarting the SQL Server service when both
enabling and disabling the protocol.
- Added integration tests for this resource
([issue 751](https://github.com/PowerShell/SqlServerDsc/issues/751)).
- Changes to SqlAG
- Removed excess `Import-SQLPSModule` call.
- Changes to SqlSetup
- Now after a successful install the "SQL PowerShell module" is reevaluated and
forced to be reimported into the session. This is to support that a never
version of SQL Server was installed side-by-side so that SQLPS module should
be used instead.
'

Expand All @@ -80,3 +100,4 @@




0 comments on commit 6d42512

Please sign in to comment.