Skip to content

Commit

Permalink
Bump PowerShell dependencies (#1800)
Browse files Browse the repository at this point in the history
* Update ./modules.json

* Bump change log

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Bernie White <bewhite@microsoft.com>
  • Loading branch information
github-actions[bot] and BernieWhite committed Oct 22, 2022
1 parent a3c40fe commit 9ae368d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
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

0 comments on commit 9ae368d

Please sign in to comment.