Skip to content

Commit

Permalink
Releasing version 12.1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kwirkykat committed Oct 24, 2018
1 parent 466aca7 commit 457082c
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 21 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

## 12.1.0.0

- Changes to SqlServerDsc
- Add support for validating the code with the DSC ResourceKit
Script Analyzer rules, both in Visual Studio Code and directly using
Expand Down
75 changes: 54 additions & 21 deletions SqlServerDsc.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
# Version number of this module.
moduleVersion = '12.0.0.0'
moduleVersion = '12.1.0.0'

# ID used to uniquely identify this module
GUID = '693ee082-ed36-45a7-b490-88b07c86b42f'
Expand Down Expand Up @@ -49,26 +49,58 @@
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '- Changes to SqlServerDatabaseMail
- DisplayName is now properly treated as display name
for the originating email address ([issue 1200](https://github.com/PowerShell/SqlServerDsc/issue/1200)).
[Nick Reilingh (@NReilingh)](https://github.com/NReilingh)
- DisplayName property now defaults to email address instead of server name.
- Minor improvements to documentation.
- Changes to SqlAGDatabase
- Corrected reference to "PsDscRunAsAccount" in documentation
([issue 1199](https://github.com/PowerShell/SqlServerDsc/issues/1199)).
[Nick Reilingh (@NReilingh)](https://github.com/NReilingh)
- Changes to SqlDatabaseOwner
- BREAKING CHANGE: Support multiple instances on the same node.
The parameter InstanceName is now Key and cannot be omitted
([issue 1197](https://github.com/PowerShell/SqlServerDsc/issues/1197)).
- Changes to SqlSetup
- Added new parameters to allow to define the startup types for the Sql Engine
service, the Agent service, the Analysis service and the Integration Service.
The new optional parameters are respectively SqlSvcStartupType, AgtSvcStartupType,
AsSvcStartupType, IsSvcStartupType and RsSvcStartupType ([issue 1165](https://github.com/PowerShell/SqlServerDsc/issues/1165).
[Maxime Daniou (@mdaniou)](https://github.com/mdaniou)
ReleaseNotes = '- Changes to SqlServerDsc
- Add support for validating the code with the DSC ResourceKit
Script Analyzer rules, both in Visual Studio Code and directly using
`Invoke-ScriptAnalyzer`.
- Opt-in for common test "Common Tests - Validate Markdown Links".
- Updated broken links in `\README.md` and in `\Examples\README.md`
- Opt-in for common test "Common Tests - Relative Path Length".
- Updated the Installation section in the README.md.
- Updated the Contributing section in the README.md after
[Style Guideline and Best Practices guidelines](https://github.com/PowerShell/DscResources/blob/master/StyleGuidelines.md)
has merged into one document.
- To speed up testing in AppVeyor, unit tests are now run in two containers.
- Adding the PowerShell script `Assert-TestEnvironment.ps1` which
must be run prior to running any unit tests locally with
`Invoke-Pester`.
Read more in the specific contributing guidelines, under the section
[Unit Tests](https://github.com/PowerShell/SqlServerDsc/blob/dev/CONTRIBUTING.mdunit-tests).
- Changes to SqlServerDscHelper
- Fix style guideline lint errors.
- Changes to Connect-SQL
- Adding verbose message in Connect-SQL so it
now shows the username that is connecting.
- Changes to Import-SQLPS
- Fixed so that when importing SQLPS it imports
using the path (and not the .psd1 file).
- Fixed so that the verbose message correctly
shows the name, version and path when importing
the module SQLPS (it did show correctly for the
SqlServer module).
- Changes to SqlAg, SqlAGDatabase, and SqlAGReplica examples
- Included configuration for SqlAlwaysOnService to enable
HADR on each node to avoid confusion
([issue 1182](https://github.com/PowerShell/SqlServerDsc/issues/1182)).
- Changes to SqlServerDatabaseMail
- Minor update to Ensure parameter description in the README.md.
- Changes to Write-ModuleStubFile.ps1
- Create aliases for cmdlets in the stubbed module which have aliases
([issue 1224](https://github.com/PowerShell/SqlServerDsc/issues/1224)).
[Dan Reist (@randomnote1)](https://github.com/randomnote1)
- Use a string builder to build the function stubs.
- Fixed formatting issues for the function to work with modules other
than SqlServer.
- New DSC resource SqlServerSecureConnection
- New resource to configure a SQL Server instance for encrypted SQL
connections.
- Changes to SqlAlwaysOnService
- Updated integration tests to use NetworkingDsc
([issue 1129](https://github.com/PowerShell/SqlServerDsc/issues/1129)).
- Changes to SqlServiceAccount
- Fix unit tests that didn"t mock some of the calls. It no longer fail
when a SQL Server installation is not present on the node running the
unit test ([issue 983](https://github.com/PowerShell/SqlServerDsc/issues/983)).
'

Expand All @@ -93,3 +125,4 @@




0 comments on commit 457082c

Please sign in to comment.