diff --git a/.changeset/expo-bump-clerk-android-1-0-18.md b/.changeset/expo-bump-clerk-android-1-0-18.md deleted file mode 100644 index c891a81ab8f..00000000000 --- a/.changeset/expo-bump-clerk-android-1-0-18.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@clerk/expo': patch ---- - -Bump the bundled `clerk-android` SDK (`clerk-android-api` and `clerk-android-ui`) from `1.0.16` to `1.0.18`. This pulls in the fix from clerk-android [#671](https://github.com/clerk/clerk-android/pull/671), which sets the correct IME actions on the prebuilt auth input fields so pressing Enter/Return submits the form (e.g. "Continue") instead of inserting a newline. diff --git a/.changeset/expo-bump-native-sdks.md b/.changeset/expo-bump-native-sdks.md new file mode 100644 index 00000000000..3d5d3b51150 --- /dev/null +++ b/.changeset/expo-bump-native-sdks.md @@ -0,0 +1,5 @@ +--- +'@clerk/expo': patch +--- + +Bump the native SDKs pulled into Expo: `clerk-ios` to `1.1.4` and `clerk-android-api`/`clerk-android-ui` to `1.0.23`. diff --git a/packages/expo/android/build.gradle b/packages/expo/android/build.gradle index a045193c1e2..d586069a8c0 100644 --- a/packages/expo/android/build.gradle +++ b/packages/expo/android/build.gradle @@ -18,8 +18,8 @@ ext { credentialsVersion = "1.3.0" googleIdVersion = "1.1.1" kotlinxCoroutinesVersion = "1.7.3" - clerkAndroidApiVersion = "1.0.18" - clerkAndroidUiVersion = "1.0.18" + clerkAndroidApiVersion = "1.0.23" + clerkAndroidUiVersion = "1.0.23" composeVersion = "1.7.0" activityComposeVersion = "1.9.0" lifecycleVersion = "2.8.0" diff --git a/packages/expo/app.plugin.js b/packages/expo/app.plugin.js index c19c5d57a7b..cfa63e1a0e1 100644 --- a/packages/expo/app.plugin.js +++ b/packages/expo/app.plugin.js @@ -20,7 +20,7 @@ const path = require('path'); const fs = require('fs'); const CLERK_IOS_REPO = 'https://github.com/clerk/clerk-ios.git'; -const CLERK_IOS_VERSION = '1.0.0'; +const CLERK_IOS_VERSION = '1.1.4'; const CLERK_MIN_IOS_VERSION = '17.0';