expo-file-system 19.0.0-canary-20250306-d9d3e02 → 19.0.0-canary-20250320-7a205d3

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
@@ -18,6 +18,7 @@
18
18
 
19
19
  - [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
20
20
  - [apple] Migrate remaining `expo-module.config.json` to unified platform syntax. ([#34445](https://github.com/expo/expo/pull/34445) by [@reichhartd](https://github.com/reichhartd))
21
+ - [iOS] Fix warnings which will become errors in Swift 6. ([#35288](https://github.com/expo/expo/pull/35288) by [@behenate](https://github.com/behenate))
21
22
 
22
23
  ## 18.0.11 - 2025-02-19
23
24
 
@@ -1,55 +1,55 @@
1
1
  import Foundation
2
2
  import ExpoModulesCore
3
3
 
4
- internal class CopyOrMoveDirectoryToFileException: Exception {
4
+ internal final class CopyOrMoveDirectoryToFileException: Exception {
5
5
  override var reason: String {
6
6
  "Unable to copy or move a directory to a file"
7
7
  }
8
8
  }
9
9
 
10
- internal class UnableToDownloadException: GenericException<String> {
10
+ internal final class UnableToDownloadException: GenericException<String> {
11
11
  override var reason: String {
12
12
  "Unable to download a file: \(param)"
13
13
  }
14
14
  }
15
15
 
16
- internal class InvalidTypeFileException: Exception {
16
+ internal final class InvalidTypeFileException: Exception {
17
17
  override var reason: String {
18
18
  "A folder with the same name already exists in the file location"
19
19
  }
20
20
  }
21
21
 
22
- internal class InvalidTypeDirectoryException: Exception {
22
+ internal final class InvalidTypeDirectoryException: Exception {
23
23
  override var reason: String {
24
24
  "A file with the same name already exists in the directory location"
25
25
  }
26
26
  }
27
27
 
28
- internal class UnableToGetFileSizeException: GenericException<String> {
28
+ internal final class UnableToGetFileSizeException: GenericException<String> {
29
29
  override var reason: String {
30
30
  "Unable to get file size: \(param)"
31
31
  }
32
32
  }
33
33
 
34
- internal class UnableToDeleteException: GenericException<String> {
34
+ internal final class UnableToDeleteException: GenericException<String> {
35
35
  override var reason: String {
36
36
  "Unable to delete file or directory: \(param)"
37
37
  }
38
38
  }
39
39
 
40
- internal class UnableToCreateException: GenericException<String> {
40
+ internal final class UnableToCreateException: GenericException<String> {
41
41
  override var reason: String {
42
42
  "Unable to create file or directory: \(param)"
43
43
  }
44
44
  }
45
45
 
46
- internal class UnableToReadHandleException: GenericException<String> {
46
+ internal final class UnableToReadHandleException: GenericException<String> {
47
47
  override var reason: String {
48
48
  "Unable to read from a file handle: \(param)"
49
49
  }
50
50
  }
51
51
 
52
- internal class DestinationAlreadyExistsException: Exception {
52
+ internal final class DestinationAlreadyExistsException: Exception {
53
53
  override var reason: String {
54
54
  "Destination already exists"
55
55
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-file-system",
3
- "version": "19.0.0-canary-20250306-d9d3e02",
3
+ "version": "19.0.0-canary-20250320-7a205d3",
4
4
  "description": "Provides access to the local file system on the device.",
5
5
  "main": "src/index.ts",
6
6
  "types": "build/index.d.ts",
@@ -35,15 +35,14 @@
35
35
  "preset": "expo-module-scripts"
36
36
  },
37
37
  "devDependencies": {
38
- "expo-module-scripts": "4.0.5-canary-20250306-d9d3e02",
39
- "jest-expo": "53.0.0-canary-20250306-d9d3e02"
38
+ "expo-module-scripts": "4.0.5-canary-20250320-7a205d3",
39
+ "jest-expo": "53.0.0-canary-20250320-7a205d3"
40
40
  },
41
41
  "peerDependencies": {
42
- "expo": "53.0.0-canary-20250306-d9d3e02",
42
+ "expo": "53.0.0-canary-20250320-7a205d3",
43
43
  "react-native": "*"
44
44
  },
45
45
  "dependencies": {
46
46
  "web-streams-polyfill": "^3.3.2"
47
- },
48
- "gitHead": "d9d3e024d8742099c307754673f17117a20c1dea"
47
+ }
49
48
  }