1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-09 13:47:13 +02:00

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.
This commit is contained in:
Gastón Fournier 2025-08-07 10:30:45 -03:00 committed by GitHub
parent 75df390d0b
commit 057a906892
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 => {