expo-web-browser 12.8.1 → 12.8.2

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,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 12.8.2 — 2024-01-24
14
+
15
+ ### 💡 Others
16
+
17
+ - Updated `androidx.browser:browser` to `1.6.0` [#26619](https://github.com/expo/expo/pull/26619) by [@zoontek](https://github.com/zoontek)
18
+
13
19
  ## 12.8.1 — 2023-12-19
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -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.8.1'
6
+ version = '12.8.2'
7
7
 
8
8
 
9
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -95,7 +95,7 @@ android {
95
95
  namespace "expo.modules.webbrowser"
96
96
  defaultConfig {
97
97
  versionCode 18
98
- versionName '12.8.1'
98
+ versionName '12.8.2'
99
99
  }
100
100
  }
101
101
 
@@ -106,7 +106,7 @@ dependencies {
106
106
  implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${getKotlinVersion()}"
107
107
  }
108
108
 
109
- api "androidx.browser:browser:1.2.0"
109
+ api "androidx.browser:browser:1.6.0"
110
110
 
111
111
  implementation "androidx.core:core-ktx:1.7.0"
112
112
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-web-browser",
3
- "version": "12.8.1",
3
+ "version": "12.8.2",
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": "43f1b4f8a5a9bca649e4e7ca6e4155482a162431"
48
+ "gitHead": "dd467f9665171a9729dad8837ea595cd046936f4"
49
49
  }