Skip to content

Commit

Permalink
Releasing version 7.3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kwirkykat committed Jun 26, 2019
1 parent 809053d commit d3a75ab
Show file tree
Hide file tree
Showing 2 changed files with 27 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

## 7.3.0.0

- DnsClientGlobalSettings:
- Fixed SuffixSearchList Empty String Handling - fixes [Issue #398](https://github.com/PowerShell/NetworkingDsc/issues/398).
- NetAdapterAdvancedProperty:
Expand Down
46 changes: 25 additions & 21 deletions NetworkingDsc.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
# Version number of this module.
moduleVersion = '7.2.0.0'
moduleVersion = '7.3.0.0'

# ID used to uniquely identify this module
GUID = 'e6647cc3-ce9c-4c86-9eb8-2ee8919bf358'
Expand Down Expand Up @@ -82,27 +82,30 @@
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '- NetAdapterAdvancedProperty:
- Added support for RegistryKeyword `MaxRxRing1Length` and
`NumRxBuffersSmall` - fixes [Issue 387](https://github.com/PowerShell/NetworkingDsc/issues/387).
ReleaseNotes = '- DnsClientGlobalSettings:
- Fixed SuffixSearchList Empty String Handling - fixes [Issue 398](https://github.com/PowerShell/NetworkingDsc/issues/398).
- NetAdapterAdvancedProperty:
- Removed validation from RegistryKeyword parameter because the list
of valid registry keywords is not fixed and will depend on adapter
driver - fixes [Issue 388](https://github.com/PowerShell/NetworkingDsc/issues/388).
- MSFT_WinsServerAddress
Added MSFT_WinsServerAddress to control the WINS servers for a given network adapter.
- Test-DscParameterState:
- This function was enhanced with an optional reversecheck, optional internal
sorting for arrays.
- The functions ConvertTo-CimInstance and ConvertTo-Hashtable were added
required by Test-DscParameterState.
- Fix missing context message content in unit tests - fixes [Issue 405](https://github.com/PowerShell/NetworkingDsc/issues/405).
- Correct style violations in unit tests:
- Adding `Get`, `Set` and `Test` tags to appropriate `describe` blocks.
- Removing uneccesary `region` blocks.
- Conversion of double quotes to single quotes where possible.
- Replace variables with string litterals in `describe` block description.
- Firewall:
- Prevent "Parameter set cannot be resolved using the specified named
parameters" error when updating rule when group name is specified - fixes
[Issue 130](https://github.com/PowerShell/NetworkingDsc/issues/130) and
[Issue 191](https://github.com/PowerShell/NetworkingDsc/issues/191).
- Opted into Common Tests "Common Tests - Validate Localization" -
fixes [Issue 393](https://github.com/PowerShell/NetworkingDsc/issues/393).
- Combined all `NetworkingDsc.ResourceHelper` module functions into
`NetworkingDsc.Common` module - fixes [Issue 394](https://github.com/PowerShell/NetworkingDsc/issues/394).
- Renamed all localization strings so that they are detected by
"Common Tests - Validate Localization".
- Fixed issues with mismatched localization strings.
- Updated all common functions with the latest versions from
[DSCResource.Template](https://github.com/PowerShell/DSCResource.Template).
- Fixed an issue with the helper function `Test-IsNanoServer` that
prevented it to work. Though the helper function is not used, so this
issue was not caught until now when unit tests was added.
- Corrected style violations in `NetworkingDsc.Common`.
- Fix bug when LocalAddress or RemoteAddress is specified using CIDR
notation with number of bits specified in subnet mask (e.g.
10.0.0.1/8) rather than using CIDR subnet mask notation (e.g
10.0.0.1/255.0.0.0) - fixes [Issue 404](https://github.com/PowerShell/NetworkingDsc/issues/404).
'

Expand All @@ -112,3 +115,4 @@




0 comments on commit d3a75ab

Please sign in to comment.