expo-web-browser 12.7.0 → 12.8.1
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/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,17 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 12.8.1 — 2023-12-19
|
|
14
|
+
|
|
15
|
+
_This version does not introduce any user-facing changes._
|
|
16
|
+
|
|
17
|
+
## 12.8.0 — 2023-11-14
|
|
18
|
+
|
|
19
|
+
### 🛠 Breaking changes
|
|
20
|
+
|
|
21
|
+
- Bumped iOS deployment target to 13.4. ([#25063](https://github.com/expo/expo/pull/25063) by [@gabrieldonadel](https://github.com/gabrieldonadel))
|
|
22
|
+
- On `Android` bump `compileSdkVersion` and `targetSdkVersion` to `34`. ([#24708](https://github.com/expo/expo/pull/24708) by [@alanjhughes](https://github.com/alanjhughes))
|
|
23
|
+
|
|
13
24
|
## 12.7.0 — 2023-10-17
|
|
14
25
|
|
|
15
26
|
### 🛠 Breaking changes
|
package/android/build.gradle
CHANGED
|
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
|
|
|
3
3
|
apply plugin: 'maven-publish'
|
|
4
4
|
|
|
5
5
|
group = 'host.exp.exponent'
|
|
6
|
-
version = '12.
|
|
6
|
+
version = '12.8.1'
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
@@ -62,11 +62,11 @@ if (!safeExtGet("expoProvidesDefaultConfig", false)) {
|
|
|
62
62
|
android {
|
|
63
63
|
// Remove this if and it's contents, when support for SDK49 is dropped
|
|
64
64
|
if (!safeExtGet("expoProvidesDefaultConfig", false)) {
|
|
65
|
-
compileSdkVersion safeExtGet("compileSdkVersion",
|
|
65
|
+
compileSdkVersion safeExtGet("compileSdkVersion", 34)
|
|
66
66
|
|
|
67
67
|
defaultConfig {
|
|
68
68
|
minSdkVersion safeExtGet("minSdkVersion", 23)
|
|
69
|
-
targetSdkVersion safeExtGet("targetSdkVersion",
|
|
69
|
+
targetSdkVersion safeExtGet("targetSdkVersion", 34)
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
publishing {
|
|
@@ -95,7 +95,7 @@ android {
|
|
|
95
95
|
namespace "expo.modules.webbrowser"
|
|
96
96
|
defaultConfig {
|
|
97
97
|
versionCode 18
|
|
98
|
-
versionName '12.
|
|
98
|
+
versionName '12.8.1'
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
101
|
|
|
@@ -11,5 +11,5 @@ internal data class OpenBrowserOptions(
|
|
|
11
11
|
@Field var enableDefaultShareMenuItem: Boolean = false,
|
|
12
12
|
@Field var enableBarCollapsing: Boolean = false,
|
|
13
13
|
@Field var showInRecents: Boolean = false,
|
|
14
|
-
@Field(key = "createTask") var shouldCreateTask: Boolean = true
|
|
14
|
+
@Field(key = "createTask") var shouldCreateTask: Boolean = true
|
|
15
15
|
) : Record
|
|
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
|
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
s.author = package['author']
|
|
12
12
|
s.homepage = package['homepage']
|
|
13
|
-
s.platform = :ios, '13.
|
|
13
|
+
s.platform = :ios, '13.4'
|
|
14
14
|
s.swift_version = '5.4'
|
|
15
15
|
s.source = { git: 'https://github.com/expo/expo.git' }
|
|
16
16
|
s.static_framework = true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-web-browser",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.8.1",
|
|
4
4
|
"description": "Provides access to the system's web browser and supports handling redirects. On iOS, it uses SFSafariViewController or SFAuthenticationSession, depending on the method you call, and on Android it uses ChromeCustomTabs. As of iOS 11, SFSafariViewController no longer shares cookies with Safari, so if you are using WebBrowser for authentication you will want to use WebBrowser.openAuthSessionAsync, and if you just want to open a webpage (such as your app privacy policy), then use WebBrowser.openBrowserAsync.",
|
|
5
5
|
"main": "build/WebBrowser.js",
|
|
6
6
|
"types": "build/WebBrowser.d.ts",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"expo": "*"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "43f1b4f8a5a9bca649e4e7ca6e4155482a162431"
|
|
49
49
|
}
|