Skip to content

Commit

Permalink
Release v1.41.0 (#3232)
Browse files Browse the repository at this point in the history
* Release v1.41.0

* Fix dependency install
  • Loading branch information
BernieWhite authored Jan 23, 2025
1 parent 5b3007a commit 4f32a0c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
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

0 comments on commit 4f32a0c

Please sign in to comment.