* 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-12-12 20:29:23 +10:00 коммит произвёл GitHub
Родитель dabc5bea49
Коммит 1b6765aeea
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 17 добавлений и 5 удалений

4
.vscode/tasks.json поставляемый
Просмотреть файл

@ -24,7 +24,9 @@
"label": "coverage",
"type": "shell",
"command": "Invoke-Build Test -CodeCoverage",
"problemMatcher": [ "$pester" ],
"problemMatcher": [
"$pester"
],
"presentation": {
"clear": true,
"panel": "dedicated"

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

@ -2,6 +2,16 @@
## Unreleased
What's changed since pre-release v0.4.0-B2208003:
- Engineering:
- Bump PSRule to v2.6.0.
[#116](https://github.com/microsoft/PSRule.Rules.CAF/pull/116)
- Bump PSRule.Rules.Azure to v1.22.1.
[#116](https://github.com/microsoft/PSRule.Rules.CAF/pull/116)
- Bump PSScriptAnalyzer to v1.21.0.
[#116](https://github.com/microsoft/PSRule.Rules.CAF/pull/116)
## v0.4.0-B2208003 (pre-release)
What's changed since pre-release v0.4.0-B2205006:

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

@ -1,10 +1,10 @@
{
"dependencies": {
"PSRule": {
"version": "2.2.0"
"version": "2.6.0"
},
"PSRule.Rules.Azure": {
"version": "1.17.1"
"version": "1.22.1"
}
},
"devDependencies": {
@ -18,7 +18,7 @@
"version": "0.9.0"
},
"PSScriptAnalyzer": {
"version": "1.20.0"
"version": "1.21.0"
}
}
}

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

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