@clerk/expo 4.2.8-snapshot.v20260812183021 → 4.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/android/build.gradle
CHANGED
|
@@ -20,8 +20,8 @@ def clerkExpoVersion = clerkExpoPackageJson.version.toString()
|
|
|
20
20
|
// See: https://docs.gradle.org/current/userguide/version_catalogs.html for app-level version catalogs
|
|
21
21
|
ext {
|
|
22
22
|
kotlinxCoroutinesVersion = "1.7.3"
|
|
23
|
-
clerkAndroidApiVersion = "1.1.
|
|
24
|
-
clerkAndroidUiVersion = "1.1.
|
|
23
|
+
clerkAndroidApiVersion = "1.1.2"
|
|
24
|
+
clerkAndroidUiVersion = "1.1.2"
|
|
25
25
|
okhttpVersion = "5.4.0"
|
|
26
26
|
okhttpUrlConnectionVersion = "5.0.0-alpha.16"
|
|
27
27
|
composeVersion = "1.7.0"
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@file:OptIn(FrameworkIntegrationApi::class)
|
|
2
|
+
|
|
1
3
|
package expo.modules.clerk
|
|
2
4
|
|
|
3
5
|
import android.content.Context
|
|
@@ -6,6 +8,7 @@ import androidx.compose.ui.graphics.Color
|
|
|
6
8
|
import androidx.compose.ui.unit.dp
|
|
7
9
|
import com.clerk.api.Clerk
|
|
8
10
|
import com.clerk.api.ClerkConfigurationOptions
|
|
11
|
+
import com.clerk.api.FrameworkIntegrationApi
|
|
9
12
|
import com.clerk.api.network.model.client.Client
|
|
10
13
|
import com.clerk.api.network.model.error.firstMessage
|
|
11
14
|
import com.clerk.api.network.serialization.ClerkResult
|
|
@@ -121,7 +124,10 @@ class ClerkExpoModule : Module() {
|
|
|
121
124
|
}
|
|
122
125
|
}
|
|
123
126
|
|
|
124
|
-
|
|
127
|
+
// JS owns client state. The native foreground refresh races SSO completion and mints duplicate clients (#9217).
|
|
128
|
+
return ClerkConfigurationOptions()
|
|
129
|
+
.withForegroundRefreshDisabled()
|
|
130
|
+
.withCustomHeaders(customHeaders)
|
|
125
131
|
}
|
|
126
132
|
|
|
127
133
|
private fun startClientStateObserver() {
|
|
@@ -11,7 +11,7 @@ let src_provider_nativeClientSync = require("./nativeClientSync");
|
|
|
11
11
|
//#region src/provider/ClerkProvider.tsx
|
|
12
12
|
const SDK_METADATA = {
|
|
13
13
|
name: "@clerk/expo",
|
|
14
|
-
version: "4.2.8
|
|
14
|
+
version: "4.2.8"
|
|
15
15
|
};
|
|
16
16
|
function ClerkProvider(props) {
|
|
17
17
|
const { children, tokenCache, publishableKey, proxyUrl, domain, __experimental_passkeys, experimental, __experimental_resourceCache, __experimental_disableNativeClientSync = false, ...rest } = props;
|
package/ios/ClerkExpo.podspec
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clerk/expo",
|
|
3
|
-
"version": "4.2.8
|
|
3
|
+
"version": "4.2.8",
|
|
4
4
|
"description": "Clerk React Native/Expo library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -109,9 +109,9 @@
|
|
|
109
109
|
"base-64": "^1.0.0",
|
|
110
110
|
"react-native-url-polyfill": "4.0.0",
|
|
111
111
|
"tslib": "2.8.1",
|
|
112
|
-
"@clerk/clerk-js": "6.29.0
|
|
113
|
-
"@clerk/
|
|
114
|
-
"@clerk/
|
|
112
|
+
"@clerk/clerk-js": "^6.29.0",
|
|
113
|
+
"@clerk/react": "^6.14.2",
|
|
114
|
+
"@clerk/shared": "^4.29.0"
|
|
115
115
|
},
|
|
116
116
|
"devDependencies": {
|
|
117
117
|
"@expo/config-plugins": "^54.0.4",
|
|
@@ -125,12 +125,12 @@
|
|
|
125
125
|
"expo-secure-store": "^15.0.8",
|
|
126
126
|
"expo-web-browser": "^15.0.11",
|
|
127
127
|
"react-native": "^0.86.0",
|
|
128
|
-
"@clerk/expo-google-signin": "1.0.
|
|
129
|
-
"@clerk/expo-passkeys": "2.0.10
|
|
128
|
+
"@clerk/expo-google-signin": "1.0.0",
|
|
129
|
+
"@clerk/expo-passkeys": "2.0.10"
|
|
130
130
|
},
|
|
131
131
|
"peerDependencies": {
|
|
132
|
-
"@clerk/expo-google-signin": "
|
|
133
|
-
"@clerk/expo-passkeys": "
|
|
132
|
+
"@clerk/expo-google-signin": ">=0.1.0",
|
|
133
|
+
"@clerk/expo-passkeys": ">=0.0.6",
|
|
134
134
|
"expo": ">=54 <58",
|
|
135
135
|
"expo-apple-authentication": ">=7.0.0",
|
|
136
136
|
"expo-auth-session": ">=5",
|