зеркало из
1
0
Форкнуть 0
* 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:
github-actions[bot] 2022-10-22 20:11:32 +10:00 коммит произвёл GitHub
Родитель a3c40fe93f
Коммит 9ae368d3cc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -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.";