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

Release v1.41.0 #3232

Merged
merged 2 commits into from
Jan 23, 2025
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions docs/CHANGELOG-v1.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,36 @@ See [upgrade notes][1] for helpful information when upgrading from previous vers

## Unreleased

## v1.41.0

What's changed since v1.40.0:

- New features:
- Added December 2024 baselines `Azure.GA_2024_12` and `Azure.Preview_2024_12` by @BernieWhite.
[#3165](https://github.com/Azure/PSRule.Rules.Azure/issues/3165)
- Includes rules released before or during December 2024.
- Marked `Azure.GA_2024_09` and `Azure.Preview_2024_09` baselines as obsolete.
- Updated rules:
- Azure Kubernetes Service:
- Updated `Azure.AKS.Version` to use `1.30.6` as the minimum version by @BernieWhite.
[#3206](https://github.com/Azure/PSRule.Rules.Azure/issues/3206)
- Container Registry:
- Updated documentation and promoted `Azure.ACR.AnonymousAccess` to GA by @BernieWhite.
[#3119](https://github.com/Azure/PSRule.Rules.Azure/issues/3119)
- Bumped rule set to `2024_12`.
- General improvements:
- **Important change**: Deprecated rules with no clear WAF alignment by @BernieWhite.
[#3102](https://github.com/Azure/PSRule.Rules.Azure/issues/3102)
- The following rules are deprecated:
- `Azure.APIM.ProductTerms`
- Engineering:
- Updated resource providers and policy aliases by @BernieWhite.
[#3166](https://github.com/Azure/PSRule.Rules.Azure/pull/3166)

What's changed since pre-release v1.41.0-B0015:

- No additional changes.

## v1.41.0-B0015 (pre-release)

What's changed since v1.40.0:
Expand Down
2 changes: 1 addition & 1 deletion scripts/dependencies.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function InstallVersion {
Write-Host -Object "[$group] -- Installing $($module.Name) v$($module.Value.version)";
$installParams = @{ RequiredVersion = $module.Value.version };
if ($Null -eq (Get-InstalledModule -Name $module.Name @installParams -ErrorAction Ignore)) {
Install-Module -Name $module.Name @installParams -Force -Repository $Repository;
Install-Module -Name $module.Name @installParams -Force -Repository $Repository -AllowClobber;
}
}
}
Expand Down
Loading