From 87158f3dae1d08ddb897079aa42d89c31fc4861c Mon Sep 17 00:00:00 2001 From: Jorge Turrado Ferrero Date: Tue, 24 Dec 2024 20:29:43 +0100 Subject: [PATCH] chore: Prepare v2.16.1 (#6445) * chore: Prepare v2.16.1 Signed-off-by: Jorge Turrado * add missing change Signed-off-by: Jorge Turrado --------- Signed-off-by: Jorge Turrado Signed-off-by: Jorge Turrado --- .github/ISSUE_TEMPLATE/3_bug_report.yml | 1 + CHANGELOG.md | 20 +++++++++++++------ .../azure/azure_aad_workload_identity.go | 2 +- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/3_bug_report.yml b/.github/ISSUE_TEMPLATE/3_bug_report.yml index 50a2910485a..ed96adfcbfe 100644 --- a/.github/ISSUE_TEMPLATE/3_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/3_bug_report.yml @@ -57,6 +57,7 @@ body: label: KEDA Version description: What version of KEDA that are you running? options: + - "2.16.1" - "2.16.0" - "2.15.1" - "2.15.0" diff --git a/CHANGELOG.md b/CHANGELOG.md index dc69f8087af..963665fd4b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ To learn more about active deprecations, we recommend checking [GitHub Discussio ## History - [Unreleased](#unreleased) +- [v2.16.1](#v2161) - [v2.16.0](#v2160) - [v2.15.1](#v2151) - [v2.15.0](#v2150) @@ -74,12 +75,7 @@ Here is an overview of all new **experimental** features: ### Fixes -- **General**: Centralize and improve automaxprocs configuration with proper structured logging ([#5970](https://github.com/kedacore/keda/issues/5970)) -- **General**: Paused ScaledObject count is reported correctly after operator restart ([#6321](https://github.com/kedacore/keda/issues/6321)) -- **General**: ScaledJobs ready status set to true when recoverred problem ([#6329](https://github.com/kedacore/keda/pull/6329)) - **AWS Scalers**: Add AWS region to the AWS Config Cache key ([#6128](https://github.com/kedacore/keda/issues/6128)) -- **Selenium Grid Scaler**: Exposes sum of pending and ongoing sessions to KDEA ([#6368](https://github.com/kedacore/keda/pull/6368)) -- **Selenium Grid Scaler**: Selenium Grid in case multiple scaler triggers are activate ([#6437](https://github.com/kedacore/keda/pull/6437)) ### Deprecations @@ -95,8 +91,20 @@ New deprecation(s): ### Other -- **General**: Bump newrelic-client-go deps to 2.51.2 (latest) ([#6325](https://github.com/kedacore/keda/pull/6325)) - **General**: New eventreason KEDAScalersInfo to display important information ([#6328](https://github.com/kedacore/keda/issues/6328)) + +## v2.16.1 + +### Fixes + +- **General**: Centralize and improve automaxprocs configuration with proper structured logging ([#5970](https://github.com/kedacore/keda/issues/5970)) +- **General**: Paused ScaledObject count is reported correctly after operator restart ([#6321](https://github.com/kedacore/keda/issues/6321)) +- **General**: ScaledJobs ready status set to true when recoverred problem ([#6329](https://github.com/kedacore/keda/pull/6329)) +- **Selenium Grid Scaler**: Exposes sum of pending and ongoing sessions to KDEA ([#6368](https://github.com/kedacore/keda/pull/6368)) + +### Other + +- **General**: Bump newrelic-client-go deps to 2.51.2 (latest) ([#6325](https://github.com/kedacore/keda/pull/6325)) - **General**: refactor: replace experimental `maps` and `slices` with stdlib ([#6372](https://github.com/kedacore/keda/pull/6372)) ## v2.16.0 diff --git a/pkg/scalers/azure/azure_aad_workload_identity.go b/pkg/scalers/azure/azure_aad_workload_identity.go index 06be2f09c97..204f6b1cfa1 100644 --- a/pkg/scalers/azure/azure_aad_workload_identity.go +++ b/pkg/scalers/azure/azure_aad_workload_identity.go @@ -89,7 +89,7 @@ func GetAzureADWorkloadIdentityToken(ctx context.Context, identityID, identityTe }) confidentialClient, err := confidential.New( - fmt.Sprintf("%s%s/oauth2/token", authorityHost, tenantID), + fmt.Sprintf("%s%s", authorityHost, tenantID), clientID, cred, )