expo-web-browser 12.8.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,10 @@
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
+
13
17
  ## 12.8.0 — 2023-11-14
14
18
 
15
19
  ### 🛠 Breaking 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.0'
6
+ version = '12.8.1'
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.0'
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-web-browser",
3
- "version": "12.8.0",
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": "3142a086578deffd8704a8f1b6f0f661527d836c"
48
+ "gitHead": "43f1b4f8a5a9bca649e4e7ca6e4155482a162431"
49
49
  }