From 057a906892ccb71e9fe8af0530407f9791b32dc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gast=C3=B3n=20Fournier?= Date: Thu, 7 Aug 2025 10:30:45 -0300 Subject: [PATCH] chore: set min version for new SDK names (#10477) ## About the changes This sets the minimum version for the new SDK names to the current latest version. The versions with the new SDK name will be newer, but this will set the baseline for the future. --- src/lib/features/metrics/instance/findOutdatedSdks.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/lib/features/metrics/instance/findOutdatedSdks.ts b/src/lib/features/metrics/instance/findOutdatedSdks.ts index edc547c041..8e2f91cc03 100644 --- a/src/lib/features/metrics/instance/findOutdatedSdks.ts +++ b/src/lib/features/metrics/instance/findOutdatedSdks.ts @@ -12,6 +12,14 @@ const config: SDKConfig = { 'unleash-client-ruby': '5.0.0', 'unleash-client-dotnet': '4.1.3', 'unleash-client-php': '2.3.0', + // new values after sdk registration rename: + 'unleash-node-sdk': '6.6.0', + 'unleash-java-sdk': '11.0.2', + 'unleash-go-sdk': '5.0.3', + 'unleash-python-sdk': '6.3.0', + 'unleash-ruby-sdk': '6.3.1', + 'unleash-dotnet-sdk': '5.3.0', + 'unleash-php-sdk': '2.9.1', }; export const isOutdatedSdk = (sdkVersion: string | null): boolean => {