-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1094 from PowerShell/dev
Release of version 11.1.0.0 of SqlServerDsc
- Loading branch information
Showing
16 changed files
with
1,240 additions
and
1,198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,55 @@ | ||
<!-- | ||
Your feedback and support is greatly appreciated, thanks for contributing! | ||
Your feedback and support is greatly appreciated, thanks for contributing! | ||
Please prefix the issue title with the resource name, i.e. 'SqlSetup: Short description of my issue' | ||
Please provide the following information regarding your issue (place N/A if the fields that don't apply to your issue): | ||
ISSUE TITLE: | ||
Please prefix the issue title with the resource name, i.e. | ||
'SqlSetup: Short description of my issue' | ||
If you like to contribute more please feel free to read the contributing section at https://github.com/PowerShell/SQLServerDsc#contributing. | ||
ISSUE DESCRIPTION (this template): | ||
Please provide information regarding your issue under each header below. | ||
PLEASE KEEP THE HEADERS. Write N/A under any headers that don't apply to your issue. | ||
Any sensitive information can (and should) be obfuscated. | ||
You may remove this and the other comments, but again, please keep the headers. | ||
Note: If you are running the old xSQLServer resource module, then please make sure | ||
the problem is reproducible in the new SqlServerDsc resource module. | ||
If you like to contribute more please feel free to read the contributing section | ||
at https://github.com/PowerShell/SQLServerDsc#contributing. | ||
--> | ||
**Details of the scenario you tried and the problem that is occurring:** | ||
#### Details of the scenario you tried and the problem that is occurring | ||
|
||
**The DSC configuration that is using the resource (as detailed as possible):** | ||
#### The DSC configuration that is using the resource (as detailed as possible) | ||
``` | ||
<add configuration here> | ||
``` | ||
|
||
#### Version of the operating system and PowerShell the target node is running | ||
<!-- | ||
To help with this information, please run this command: | ||
Get-CimInstance -ClassName 'Win32_OperatingSystem' | ft Caption,OSArchitecture,Version,MUILanguages,{$PSVersionTable.PSVersion} | ||
--> | ||
|
||
**Version of the Operating System, SQL Server and PowerShell the DSC Target Node is running:** | ||
#### SQL Server edition and version the target node is running | ||
<!-- | ||
To help with this information, please run the below commands: | ||
$registryPath = 'HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server' | ||
$sqlInstance = (Get-ItemProperty -Path $registryPath -ErrorAction 'SilentlyContinue').InstalledInstances | ||
$sqlInstance | ForEach-Object -Process { | ||
$instanceId = (Get-ItemProperty "$registryPath\Instance Names\SQL" -ErrorAction 'SilentlyContinue').$_ | ||
(Get-ItemProperty "$registryPath\$instanceId\Setup" -ErrorAction 'SilentlyContinue') | fl Edition,Version, Language | ||
} | ||
--> | ||
|
||
**What module (SqlServer or SQLPS) and which version of the module the DSC Target Node is running:** | ||
#### What SQL Server PowerShell modules, and which version, are present on the target node. | ||
<!-- | ||
To help with this information, please run this command: | ||
Get-Module -Name '*sql*' -ListAvailable | ? Name -ne 'SqlServerDsc' | ft Name,Version,Path | ||
--> | ||
|
||
**Version of the DSC module you're using, or 'dev' if you're using current dev branch:** | ||
#### Version of the DSC module you're using, or write 'dev' if you're using current dev branch | ||
<!-- | ||
To help with this information, please run this command: | ||
Get-Module -Name 'SqlServerDsc' -ListAvailable | ft Name,Version,Path | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,53 @@ | ||
<!-- | ||
Thanks for submitting a Pull Request (PR) to this project. | ||
Your contribution to this project is greatly appreciated! | ||
Thanks for submitting a Pull Request (PR) to this project. | ||
Your contribution to this project is greatly appreciated! | ||
Please make sure you have read the contributing section | ||
at https://github.com/PowerShell/SqlServerDsc#contributing. | ||
Please make sure you have read the contributing section | ||
at https://github.com/PowerShell/SqlServerDsc#contributing. | ||
Please prefix the PR title with the resource name, | ||
i.e. 'SqlSetup: My short description' | ||
If this is a breaking change, then also prefix the PR title | ||
with 'BREAKING CHANGE:', | ||
i.e. 'BREAKING CHANGE: SqlSetup: My short description' | ||
Please prefix the PR title with the resource name, | ||
i.e. 'SqlSetup: My short description'. | ||
If this is a breaking change, then also prefix the PR title | ||
with 'BREAKING CHANGE:', | ||
i.e. 'BREAKING CHANGE: SqlSetup: My short description'. | ||
You may remove this and the other comments, but please keep the headers | ||
and the task list. | ||
--> | ||
#### Pull Request (PR) description | ||
<!-- | ||
Replace this comment with a description of your pull request. | ||
--> | ||
**Pull Request (PR) description** | ||
<!-- Replace this with a description of your pull request --> | ||
|
||
**This Pull Request (PR) fixes the following issues:** | ||
<!-- Replace this with the list of issues or n/a. Use format: Fixes #123 --> | ||
#### This Pull Request (PR) fixes the following issues | ||
<!-- | ||
Replace this comment with the list of issues or n/a. | ||
Use format: | ||
Fixes #123 | ||
Fixes #124 | ||
--> | ||
|
||
**Task list:** | ||
#### Task list | ||
<!-- | ||
To aid community reviewers in reviewing and merging your pull request (PR), please take | ||
the time to run through the below checklist. | ||
Change to [x] for each task in the task list that applies to your pull request (PR). | ||
To aid community reviewers in reviewing and merging your pull request (PR), | ||
please take the time to run through the below checklist. | ||
Change to [x] for each task in the task list that applies to your pull | ||
request (PR). For those task that don't apply to you pull request (PR), | ||
leave those as is. | ||
--> | ||
- [ ] Change details added to Unreleased section of CHANGELOG.md? | ||
- [ ] Added/updated documentation, comment-based help and descriptions in .schema.mof files where appropriate? | ||
- [ ] Examples appropriately updated? | ||
- [ ] New/changed code adheres to [Style Guidelines](https://github.com/PowerShell/DscResources/blob/master/StyleGuidelines.md)? | ||
- [ ] [Unit and (optional) Integration tests](https://github.com/PowerShell/DscResources/blob/master/TestsGuidelines.md) created/updated where possible? | ||
- [ ] Added an entry under the Unreleased section in the CHANGELOG.md? Entry | ||
should say what was changed, and how that affects users (if applicable). | ||
- [ ] Resource documentation added/updated in README.md? | ||
- [ ] Resource parameter descriptions added/updated in README.md, schema.mof | ||
and comment-based help? | ||
- [ ] Comment-based help added/updated? | ||
- [ ] Localization strings added/updated in all localization files as appropriate? | ||
- [ ] Examples appropriately added/updated? | ||
- [ ] Unit tests added/updated? | ||
See [DSC Resource Testing Guidelines](https://github.com/PowerShell/DscResources/blob/master/TestsGuidelines.md). | ||
- [ ] Integration tests added/updated (where possible)? | ||
See [DSC Resource Testing Guidelines](https://github.com/PowerShell/DscResources/blob/master/TestsGuidelines.md). | ||
- [ ] New/changed code adheres to | ||
[DSC Resource Style Guidelines](https://github.com/PowerShell/DscResources/blob/master/StyleGuidelines.md) | ||
and [Best Practices](https://github.com/PowerShell/DscResources/blob/master/BestPractices.md)? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.