expo-sharing 11.3.0 → 11.3.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,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 11.3.1 — 2023-04-14
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - On iOS, fixed an issue where file permissions were not checked correctly. ([#22112](https://github.com/expo/expo/pull/22112) by [@alanjhughes](https://github.com/alanjhughes))
18
+
13
19
  ## 11.3.0 — 2023-04-12
14
20
 
15
21
  ### 🎉 New features
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '11.3.0'
6
+ version = '11.3.1'
7
7
 
8
8
  buildscript {
9
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -74,7 +74,7 @@ android {
74
74
  minSdkVersion safeExtGet("minSdkVersion", 21)
75
75
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
76
76
  versionCode 16
77
- versionName '11.3.0'
77
+ versionName '11.3.1'
78
78
  }
79
79
  lintOptions {
80
80
  abortOnError false
@@ -12,7 +12,7 @@ public final class SharingModule: Module {
12
12
  throw FilePermissionModuleException()
13
13
  }
14
14
 
15
- let grantedPermissions = filePermissions.getPathPermissions(url.absoluteString)
15
+ let grantedPermissions = filePermissions.getPathPermissions(url.relativePath)
16
16
  guard grantedPermissions.rawValue >= EXFileSystemPermissionFlags.read.rawValue else {
17
17
  throw FilePermissionException()
18
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-sharing",
3
- "version": "11.3.0",
3
+ "version": "11.3.1",
4
4
  "description": "ExpoSharing standalone module",
5
5
  "main": "build/Sharing.js",
6
6
  "types": "build/Sharing.d.ts",
@@ -37,5 +37,5 @@
37
37
  "peerDependencies": {
38
38
  "expo": "*"
39
39
  },
40
- "gitHead": "da0dd0146a3f82d7cef8f1b896d327d63b999c44"
40
+ "gitHead": "5d628076915823cbe56e281ec17c3a34cc0c1fc6"
41
41
  }