Bump PowerShell dependencies (#1800)
* 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>
This commit is contained in:
Родитель
a3c40fe93f
Коммит
9ae368d3cc
|
@ -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)
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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.";
|
||||
|
|
Загрузка…
Ссылка в новой задаче