diff --git a/CHANGELOG.md b/CHANGELOG.md index 6da98d3060d..ed513c0e5f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,8 +53,9 @@ To learn more about active deprecations, we recommend checking [GitHub Discussio ### Improvements - **General**: Metrics Adapter: remove deprecated Prometheus Metrics and non-gRPC code ([#3930](https://github.com/kedacore/keda/issues/3930)) +- **General**: Kubernetes v1.25, v1.26 or v1.27 are supported +- **AWS DynamoDB**: Add support for `indexName` ([#4680](https://github.com/kedacore/keda/issues/4680)) - **General:**: Add ScaledObject/ScaledJob names to output of `kubectl get triggerauthentication/clustertriggerauthentication` ([#796](https://github.com/kedacore/keda/issues/796)) -- **AWS DynamoDB:** Add support for `indexName` ([#4680](https://github.com/kedacore/keda/issues/4680)) - **Azure Data Explorer Scaler**: Use azidentity SDK ([#4489](https://github.com/kedacore/keda/issues/4489)) - **External Scaler**: Add tls options in TriggerAuth metadata. ([#3565](https://github.com/kedacore/keda/issues/3565)) - **GCP PubSub Scaler**: Make it more flexible for metrics ([#4243](https://github.com/kedacore/keda/issues/4243)) diff --git a/pkg/util/welcome.go b/pkg/util/welcome.go index 774d69730eb..c4d81e6435e 100644 --- a/pkg/util/welcome.go +++ b/pkg/util/welcome.go @@ -26,8 +26,8 @@ import ( ) const ( - minSupportedVersion = 24 - maxSupportedVersion = 26 + minSupportedVersion = 25 + maxSupportedVersion = 27 ) func PrintWelcome(logger logr.Logger, kubeVersion K8sVersion, component string) {