Skip to content

Commit

Permalink
Bump to 4.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nohwnd committed Feb 1, 2020
1 parent 3dbf1f0 commit 1b0e03f
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 21 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## 4.10.0 (February 2, 2020)

- Remove all banners
- Fix path in TestRegistry check
- Remove drives on invocation and handle io error
- Update link to Pester limitations [#1440](https://github.com/pester/pester/pull/1440)
- Fix Get-Help links [#1432](https://github.com/pester/pester/pull/1432)
- Handle the case when the failure message contains an escape sequence [#1426](https://github.com/pester/pester/pull/1426)
- Remove logo from header because it is noisy [#1428](https://github.com/pester/pester/pull/1428)
- Fix JaCoCo report so it can be processed by Codecov.io [#1420](https://github.com/pester/pester/pull/1420)
- get-help: fix broken links [#1417](https://github.com/pester/pester/pull/1417)
- docs: fix dyslexic PS prompt [#1415](https://github.com/pester/pester/pull/1415)
- Skip symlink tests
- Adds code fencing to the multi-line Get-Help code examples [#1413](https://github.com/pester/pester/pull/1413)
- Add wiki lockdown note and call for help
- Fixed incorrect variable used for hooks with tags in Invoke-GherkinHook. [#1400](https://github.com/pester/pester/pull/1400)
- Upgrade AppVeyor image for PS Core test to 'Visual Studio 2019' to upgrade PS Core from 6.1 to 6.2 [#1368](https://github.com/pester/pester/pull/1368)
- Add an Example of Should Be with an Array [#1396](https://github.com/pester/pester/pull/1396)
- Handle when exceptions have no error messages. [#1382](https://github.com/pester/pester/pull/1382)
- Write header only when Header flag is specified [#1378](https://github.com/pester/pester/pull/1378)
- Invoke Set-ScriptBlockHint indirectly [#1371](https://github.com/pester/pester/pull/1371)
- Added financial contributors to the README [#1363](https://github.com/pester/pester/pull/1363)

## 4.9.0 (September 8, 2019)

- Add JUnit format for results [#1347](https://github.com/pester/Pester/pull/1347)
Expand Down
8 changes: 4 additions & 4 deletions Functions/Get-ShouldOperator.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ function Get-ShouldOperator {
Get-ShouldOperator -Name Be
Return help examples for the Be assertion operator.
-Name is a dynamic parameter that tab completes all available options.
.LINK
.LINK
https://pester.dev/docs/commands/Should
#>
Expand All @@ -46,8 +46,8 @@ function Get-ShouldOperator {
$AttributeCollection.Add($ParameterAttribute)

$arrSet = $AssertionOperators.Values |
Select-Object -Property Name, Alias |
ForEach-Object { $_.Name; $_.Alias }
Select-Object -Property Name, Alias |
ForEach-Object { $_.Name; $_.Alias }

$ValidateSetAttribute = New-Object System.Management.Automation.ValidateSetAttribute($arrSet)

Expand Down
2 changes: 1 addition & 1 deletion Functions/Gherkin.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ function Invoke-Gherkin {
Invoke-Pester
https://kevinmarquette.github.io/2017-03-17-Powershell-Gherkin-specification-validation/
.LINK
.LINK
https://kevinmarquette.github.io/2017-04-30-Powershell-Gherkin-advanced-features/
#>
[CmdletBinding(DefaultParameterSetName = 'Default')]
Expand Down
18 changes: 9 additions & 9 deletions Functions/GherkinHook.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ function BeforeEachFeature {
.LINK
https://pester.dev/docs/commands/AfterEachFeature
.LINK
.LINK
https://pester.dev/docs/commands/BeforeEachScenario
.LINK
.LINK
https://pester.dev/docs/commands/AfterEachScenario
#>
[CmdletBinding(DefaultParameterSetName = "All")]
Expand Down Expand Up @@ -64,10 +64,10 @@ function AfterEachFeature {
.LINK
https://pester.dev/docs/commands/BeforeEachFeature
.LINK
.LINK
https://pester.dev/docs/commands/BeforeEachScenario
.LINK
.LINK
https://pester.dev/docs/commands/AfterEachScenario
#>
[CmdletBinding(DefaultParameterSetName = "All")]
Expand Down Expand Up @@ -109,10 +109,10 @@ function BeforeEachScenario {
.PARAMETER Script
The ScriptBlock to run for the hook
.LINK
.LINK
https://pester.dev/docs/commands/AfterEachScenario
.LINK
.LINK
https://pester.dev/docs/commands/BeforeEachFeature
.LINK
Expand Down Expand Up @@ -156,13 +156,13 @@ function AfterEachScenario {
.PARAMETER Script
The ScriptBlock to run for the hook
.LINK
https://pester.dev/docs/commands/BeforeEachScenario
.LINK
https://pester.dev/docs/commands/BeforeEachScenario
.LINK
https://pester.dev/docs/commands/BeforeEachFeature
.LINK
.LINK
https://pester.dev/docs/commands/AfterEachFeature
#>
[CmdletBinding(DefaultParameterSetName = "All")]
Expand Down
10 changes: 5 additions & 5 deletions Functions/New-Fixture.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ function New-Fixture {
.LINK
https://pester.dev/docs/commands/Describe
.LINK
.LINK
https://pester.dev/docs/commands/Context
.LINK
.LINK
https://pester.dev/docs/commands/It
.LINK
https://pester.dev/docs/commands/Should
.LINK
https://pester.dev/docs/commands/Should
#>

Expand Down
4 changes: 2 additions & 2 deletions Pester.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ModuleToProcess = 'Pester.psm1'

# Version number of this module.
ModuleVersion = '4.9.0'
ModuleVersion = '4.10.0'

# ID used to uniquely identify this module
GUID = 'a699dea5-2c73-4616-a270-1f7abb777e71'
Expand Down Expand Up @@ -127,7 +127,7 @@
LicenseUri = "https://www.apache.org/licenses/LICENSE-2.0.html"

# Release notes for this particular version of the module
ReleaseNotes = 'https://github.com/pester/Pester/releases/tag/4.9.0'
ReleaseNotes = 'https://github.com/pester/Pester/releases/tag/4.10.0'

# Prerelease string of this module
Prerelease = ''
Expand Down

0 comments on commit 1b0e03f

Please sign in to comment.