Skip to content

Commit

Permalink
Changes to SqlServerDsc
Browse files Browse the repository at this point in the history
- Updated the ISSUE_TEMPLATE to hopefully be more intuitive and easier
  to use.
- Added information to ISSUE_TEMPLATE that issues must be reproducible
  in SqlServerDsc resource module (if running the older xSQLServer
  resource module (issue dsccommunity#1036).
  • Loading branch information
johlju committed Mar 11, 2018
1 parent be8f2ec commit ebe5a3a
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 9 deletions.
56 changes: 47 additions & 9 deletions .github/ISSUE_TEMPLATE.md
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.
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, SQL Server and PowerShell the DSC Target Node is running:**
#### 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}
-->

**What module (SqlServer or SQLPS) and which version of the module 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).InstalledInstances
$sqlInstance | ForEach-Object -Process {
**Version of the DSC module you're using, or 'dev' if you're using current dev branch:**
$instanceId = (Get-ItemProperty "$registryPath\Instance Names\SQL").$_
(Get-ItemProperty "$registryPath\$instanceId\Setup") | fl Edition,Version, Language
}
-->

#### 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
<!--
To help with this information, please run this command:
Get-Module -Name 'SqlServerDsc' -ListAvailable | ft Name,Version,Path
-->
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

- Changes to SqlServerDsc
- Updated the ISSUE_TEMPLATE to hopefully be more intuitive and easier to use.
- Added information to ISSUE_TEMPLATE that issues must be reproducible in
SqlServerDsc resource module (if running the older xSQLServer resource module)
([issue #1036](https://github.com/PowerShell/SqlServerDsc/issues/1036)).
- Changes to SqlServerLogin
- Fix password test fails for nativ sql users
([issue #1048](https://github.com/PowerShell/SqlServerDsc/issues/1048)).
Expand Down

0 comments on commit ebe5a3a

Please sign in to comment.