Skip to content
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

Bump PowerShell dependencies #1800

Merged
merged 2 commits into from Oct 22, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/CHANGELOG-v1.md
Expand Up @@ -26,6 +26,11 @@ See [upgrade notes][1] for helpful information when upgrading from previous vers

What's changed since pre-release v1.21.0-B0027:

- Engineering:
- Bump PSRule to v2.5.3.
[#1800](https://github.com/Azure/PSRule.Rules.Azure/pull/1800)
- Bump Az.Resources to v6.3.1.
[#1800](https://github.com/Azure/PSRule.Rules.Azure/pull/1800)
- Bug fixes:
- Fixed contains function unable to match array by @BernieWhite.
[#1793](https://github.com/Azure/PSRule.Rules.Azure/issues/1793)
Expand Down
4 changes: 2 additions & 2 deletions modules.json
@@ -1,12 +1,12 @@
{
"dependencies": {
"PSRule": {
"version": "2.5.1"
"version": "2.5.3"
}
},
"devDependencies": {
"Az.Resources": {
"version": "6.3.0"
"version": "6.3.1"
},
"Pester": {
"version": "5.3.3"
Expand Down
2 changes: 1 addition & 1 deletion scripts/dependencies.psm1
Expand Up @@ -105,7 +105,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