From dd09a02759ca6a3b775f911ba8d4083b87d61b53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mih=C3=A1ly=20Lengyel?= Date: Tue, 29 Oct 2024 06:14:34 +0100 Subject: [PATCH] chore: add new version to supported FDIs (#78) * chore: add new version to supported FDIs * chore: add change missing from last commit --- CHANGELOG.md | 8 +++++++- app/build.gradle | 2 +- app/src/main/java/com/supertokens/session/Version.java | 2 +- frontendDriverInterfaceSupported.json | 6 ++++-- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f25a79..5e3716a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.3] - 2024-10-29 + +### Changes + +- Added new FDI version as supported + ## [0.5.2] - 2024-07-12 ### Changes @@ -111,4 +117,4 @@ The `shouldDoInterceptionBasedOnUrl` function now returns true: ### Features -- Added support for General Errors when calling sign out \ No newline at end of file +- Added support for General Errors when calling sign out diff --git a/app/build.gradle b/app/build.gradle index b925051..cbf28a2 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,6 +1,6 @@ apply plugin: 'com.android.library' apply plugin: 'maven-publish' -def publishVersionID = "0.5.2" +def publishVersionID = "0.5.3" android { compileSdkVersion 32 diff --git a/app/src/main/java/com/supertokens/session/Version.java b/app/src/main/java/com/supertokens/session/Version.java index b627c3c..fda0c38 100644 --- a/app/src/main/java/com/supertokens/session/Version.java +++ b/app/src/main/java/com/supertokens/session/Version.java @@ -21,5 +21,5 @@ public class Version { public static ArrayList supported_fdi = new ArrayList<>( - Arrays.asList("1.16", "1.17", "1.18", "1.19", "2.0", "3.0")); + Arrays.asList("1.16", "1.17", "1.18", "1.19", "2.0", "3.0", "3.1", "4.0")); } diff --git a/frontendDriverInterfaceSupported.json b/frontendDriverInterfaceSupported.json index 2df7286..d77bafb 100644 --- a/frontendDriverInterfaceSupported.json +++ b/frontendDriverInterfaceSupported.json @@ -6,6 +6,8 @@ "1.18", "1.19", "2.0", - "3.0" + "3.0", + "3.1", + "4.0 ] -} \ No newline at end of file +}