File tree Expand file tree Collapse file tree 13 files changed +36
-29
lines changed Expand file tree Collapse file tree 13 files changed +36
-29
lines changed Original file line number Diff line number Diff line change @@ -16,17 +16,17 @@ $modulesToInstall = New-Object System.Collections.Generic.List[object]
16
16
# https://github.com/pester/Pester
17
17
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
18
18
ModuleName = ' Pester'
19
- ModuleVersion = ' 5.6 .1'
19
+ ModuleVersion = ' 5.7 .1'
20
20
}))
21
21
# https://github.com/nightroman/Invoke-Build
22
22
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
23
23
ModuleName = ' InvokeBuild'
24
- ModuleVersion = ' 5.11.3 '
24
+ ModuleVersion = ' 5.12.1 '
25
25
}))
26
26
# https://github.com/PowerShell/PSScriptAnalyzer
27
27
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
28
28
ModuleName = ' PSScriptAnalyzer'
29
- ModuleVersion = ' 1.22 .0'
29
+ ModuleVersion = ' 1.23 .0'
30
30
}))
31
31
# https://github.com/PowerShell/platyPS
32
32
# older version used due to: https://github.com/PowerShell/platyPS/issues/457
Original file line number Diff line number Diff line change @@ -5,12 +5,19 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
- ## [ 2.23 .0]
8
+ ## [ 2.24 .0]
9
9
10
10
- Catesta template module changes
11
11
- Updated all GitHub actions workflows from ` actions/upload-artifact@v3 ` to ` actions/upload-artifact@v4 `
12
+ - CI/CD Changes:
13
+ - Pester bumped from ` 5.6.1 ` to ` 5.7.1 `
14
+ - InvokeBuild bumped from ` 5.11.3 ` to ` 5.12.1 `
15
+ - PSScriptAnalyzer bumped from ` 1.22.0 ` to ` 1.23.0 `
12
16
- Catesta primary module changes
13
17
- Updated GitHub actions workflows from ` actions/upload-artifact@v3 ` to ` actions/upload-artifact@v4 `
18
+ - Pester bumped from ` 5.6.1 ` to ` 5.7.1 `
19
+ - InvokeBuild bumped from ` 5.11.3 ` to ` 5.12.1 `
20
+ - PSScriptAnalyzer bumped from ` 1.22.0 ` to ` 1.23.0 `
14
21
15
22
## [ 2.22.2]
16
23
Original file line number Diff line number Diff line change 2
2
Module Name : Catesta
3
3
Module Guid : 6796b193-9013-468a-b022-837749af2d06
4
4
Download Help Link : NA
5
- Help Version : 2.23 .0
5
+ Help Version : 2.24 .0
6
6
Locale : en-US
7
7
---
8
8
Original file line number Diff line number Diff line change 12
12
RootModule = ' Catesta.psm1'
13
13
14
14
# Version number of this module.
15
- ModuleVersion = ' 2.23 .0'
15
+ ModuleVersion = ' 2.24 .0'
16
16
17
17
# Supported PSEditions
18
18
# CompatiblePSEditions = @()
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ elseif ($PLASTER_PARAM_Pester-eq '5') {
59
59
# https://github.com/pester/Pester
60
60
[void]$modulesToInstall.Add(([PSCustomObject]@{
61
61
ModuleName = 'Pester'
62
- ModuleVersion = '5.6 .1'
62
+ ModuleVersion = '5.7 .1'
63
63
BucketName = '<%=$PLASTER_PARAM_S3Bucket%>'
64
64
KeyPrefix = ''
65
65
}))
@@ -68,13 +68,13 @@ elseif ($PLASTER_PARAM_Pester-eq '5') {
68
68
% >
69
69
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
70
70
ModuleName = ' InvokeBuild'
71
- ModuleVersion = ' 5.11.3 '
71
+ ModuleVersion = ' 5.12.1 '
72
72
BucketName = ' <%=$PLASTER_PARAM_S3Bucket%>'
73
73
KeyPrefix = ' '
74
74
}))
75
75
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
76
76
ModuleName = ' PSScriptAnalyzer'
77
- ModuleVersion = ' 1.22 .0'
77
+ ModuleVersion = ' 1.23 .0'
78
78
BucketName = ' <%=$PLASTER_PARAM_S3Bucket%>'
79
79
KeyPrefix = ' '
80
80
}))
Original file line number Diff line number Diff line change @@ -23,20 +23,20 @@ elseif ($PLASTER_PARAM_Pester-eq '5') {
23
23
# https://github.com/pester/Pester
24
24
[void]$modulesToInstall.Add(([PSCustomObject]@{
25
25
ModuleName = 'Pester'
26
- ModuleVersion = '5.6 .1'
26
+ ModuleVersion = '5.7 .1'
27
27
}))
28
28
'@
29
29
}
30
30
% >
31
31
# https://github.com/nightroman/Invoke-Build
32
32
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
33
33
ModuleName = ' InvokeBuild'
34
- ModuleVersion = ' 5.11.3 '
34
+ ModuleVersion = ' 5.12.1 '
35
35
}))
36
36
# https://github.com/PowerShell/PSScriptAnalyzer
37
37
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
38
38
ModuleName = ' PSScriptAnalyzer'
39
- ModuleVersion = ' 1.22 .0'
39
+ ModuleVersion = ' 1.23 .0'
40
40
}))
41
41
# https://github.com/PowerShell/platyPS
42
42
# older version used due to: https://github.com/PowerShell/platyPS/issues/457
Original file line number Diff line number Diff line change @@ -23,20 +23,20 @@ elseif ($PLASTER_PARAM_Pester-eq '5') {
23
23
# https://github.com/pester/Pester
24
24
[void]$modulesToInstall.Add(([PSCustomObject]@{
25
25
ModuleName = 'Pester'
26
- ModuleVersion = '5.6 .1'
26
+ ModuleVersion = '5.7 .1'
27
27
}))
28
28
'@
29
29
}
30
30
% >
31
31
# https://github.com/nightroman/Invoke-Build
32
32
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
33
33
ModuleName = ' InvokeBuild'
34
- ModuleVersion = ' 5.11.3 '
34
+ ModuleVersion = ' 5.12.1 '
35
35
}))
36
36
# https://github.com/PowerShell/PSScriptAnalyzer
37
37
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
38
38
ModuleName = ' PSScriptAnalyzer'
39
- ModuleVersion = ' 1.22 .0'
39
+ ModuleVersion = ' 1.23 .0'
40
40
}))
41
41
# https://github.com/PowerShell/platyPS
42
42
# older version used due to: https://github.com/PowerShell/platyPS/issues/457
Original file line number Diff line number Diff line change @@ -23,20 +23,20 @@ elseif ($PLASTER_PARAM_Pester-eq '5') {
23
23
# https://github.com/pester/Pester
24
24
[void]$modulesToInstall.Add(([PSCustomObject]@{
25
25
ModuleName = 'Pester'
26
- ModuleVersion = '5.6 .1'
26
+ ModuleVersion = '5.7 .1'
27
27
}))
28
28
'@
29
29
}
30
30
% >
31
31
# https://github.com/nightroman/Invoke-Build
32
32
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
33
33
ModuleName = ' InvokeBuild'
34
- ModuleVersion = ' 5.11.3 '
34
+ ModuleVersion = ' 5.12.1 '
35
35
}))
36
36
# https://github.com/PowerShell/PSScriptAnalyzer
37
37
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
38
38
ModuleName = ' PSScriptAnalyzer'
39
- ModuleVersion = ' 1.22 .0'
39
+ ModuleVersion = ' 1.23 .0'
40
40
}))
41
41
# https://github.com/PowerShell/platyPS
42
42
# older version used due to: https://github.com/PowerShell/platyPS/issues/457
Original file line number Diff line number Diff line change @@ -23,20 +23,20 @@ elseif ($PLASTER_PARAM_Pester-eq '5') {
23
23
# https://github.com/pester/Pester
24
24
[void]$modulesToInstall.Add(([PSCustomObject]@{
25
25
ModuleName = 'Pester'
26
- ModuleVersion = '5.6 .1'
26
+ ModuleVersion = '5.7 .1'
27
27
}))
28
28
'@
29
29
}
30
30
% >
31
31
# https://github.com/nightroman/Invoke-Build
32
32
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
33
33
ModuleName = ' InvokeBuild'
34
- ModuleVersion = ' 5.11.3 '
34
+ ModuleVersion = ' 5.12.1 '
35
35
}))
36
36
# https://github.com/PowerShell/PSScriptAnalyzer
37
37
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
38
38
ModuleName = ' PSScriptAnalyzer'
39
- ModuleVersion = ' 1.22 .0'
39
+ ModuleVersion = ' 1.23 .0'
40
40
}))
41
41
# https://github.com/PowerShell/platyPS
42
42
# older version used due to: https://github.com/PowerShell/platyPS/issues/457
Original file line number Diff line number Diff line change @@ -23,20 +23,20 @@ elseif ($PLASTER_PARAM_Pester-eq '5') {
23
23
# https://github.com/pester/Pester
24
24
[void]$modulesToInstall.Add(([PSCustomObject]@{
25
25
ModuleName = 'Pester'
26
- ModuleVersion = '5.6 .1'
26
+ ModuleVersion = '5.7 .1'
27
27
}))
28
28
'@
29
29
}
30
30
% >
31
31
# https://github.com/nightroman/Invoke-Build
32
32
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
33
33
ModuleName = ' InvokeBuild'
34
- ModuleVersion = ' 5.11.3 '
34
+ ModuleVersion = ' 5.12.1 '
35
35
}))
36
36
# https://github.com/PowerShell/PSScriptAnalyzer
37
37
[void ]$modulesToInstall.Add (([PSCustomObject ]@ {
38
38
ModuleName = ' PSScriptAnalyzer'
39
- ModuleVersion = ' 1.22 .0'
39
+ ModuleVersion = ' 1.23 .0'
40
40
}))
41
41
# https://github.com/PowerShell/platyPS
42
42
# older version used due to: https://github.com/PowerShell/platyPS/issues/457
You can’t perform that action at this time.
0 commit comments