Skip to content

Bump PowerShell dependencies #177

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
What's changed since v0.3.0:

- Engineering:
- Bump PSRule to v2.6.0.
[#158](https://github.com/microsoft/PSRule.Rules.GitHub/pull/158)
- Bump PSRule to v2.7.0.
[#177](https://github.com/microsoft/PSRule.Rules.GitHub/pull/177)
- Bump Pester to v5.4.0.
[#177](https://github.com/microsoft/PSRule.Rules.GitHub/pull/177)
- Bump Microsoft.NET.Test.Sdk to v17.4.1.
[#175](https://github.com/microsoft/PSRule.Rules.GitHub/pull/175)
- Bump coverlet.collector to v3.2.0.
Expand Down
4 changes: 2 additions & 2 deletions modules.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"dependencies": {
"PSRule": {
"version": "2.6.0"
"version": "2.7.0"
}
},
"devDependencies": {
"Pester": {
"version": "5.3.3"
"version": "5.4.0"
},
"platyPS": {
"version": "0.14.2"
Expand Down
2 changes: 1 addition & 1 deletion scripts/dependencies.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function CheckVersion {
if (([Version]$found.Version) -gt ([Version]$module.Value.version)) {
Write-Host -Object "[$group] -- Newer version found $($found.Version)";
$dependencies[$module.Name].version = $found.Version;
$Null = Add-Content -Path $changeNotes -Value "Bump $($module.Name) to $($found.Version).";
$Null = Add-Content -Path $changeNotes -Value "Bump $($module.Name) to v$($found.Version).";
}
else {
Write-Host -Object "[$group] -- Already up to date.";
Expand Down