5.3 KiB
5.3 KiB
Changelog
Unpublished
🛠 Breaking changes
🎉 New features
🐛 Bug fixes
💡 Others
11.1.3 — 2021-06-24
This version does not introduce any user-facing changes.
11.1.2 — 2021-06-24
🛠 Breaking changes
- Added
AndroidManifest.xml
queries for intent handling. (#13388 by @EvanBacon)
11.1.1 — 2021-06-22
This version does not introduce any user-facing changes.
11.1.0 — 2021-06-16
🐛 Bug fixes
- Enable kotlin in all modules. (#12716 by @wschurman)
- Fixed crash of file system when try to read cache dir file on android. (#12716 by @nomi9995)
💡 Others
- Migrated from
unimodules-file-system-interface
toexpo-modules-core
. - Build Android code using Java 8 to fix Android instrumented test build error. (#12939 by @kudo)
- Refactored uuid imports to v7 style. (#13037 by @giautm)
11.0.2 — 2021-04-13
This version does not introduce any user-facing changes.
11.0.1 — 2021-04-09
This version does not introduce any user-facing changes.
11.0.0 — 2021-03-10
🎉 New features
- Converted plugin to TypeScript. (#11715 by @EvanBacon)
- Updated Android build configuration to target Android 11 (added support for Android SDK 30). (#11647 by @bbarthec)
- Added support for Storage Access Framework (Android only). (#12032 by @lukmccall)
🐛 Bug fixes
- Fixed copying movies from assets not working on iOS. (#11749 by @lukmccall)
- Remove peerDependencies and unimodulePeerDependencies from Expo modules. (#11980 by @brentvatne)
10.0.0 — 2021-01-15
⚠️ Notices
- The package is now shipped with prebuilt binaries on iOS. You can read more about it on expo.fyi/prebuilt-modules. (#11224 by @tsapeta)
🛠 Breaking changes
🎉 New features
- Created config plugins (#11538 by @EvanBacon)
9.3.0 — 2020-11-17
This version does not introduce any user-facing changes.
9.2.0 — 2020-08-18
🐛 Bug fixes
9.1.0 — 2020-07-27
🐛 Bug fixes
- Fix background URL session completion handler not being called. (#8599 by @lukmccall)
- Fix compilation error on macOS Catalyst (#9055 by @andymatuschak)
- Fixed
uploadAsync
native signature on Android. (#9076 by @lukmccall) - Fixed
uploadAsync
throwingDouble cannot be cast to Integer
on Android. (#9076 by @lukmccall) - Fixed
getInfo
returning incorrect size when provided path points to a folder. (#9063 by @lukmccall) - Fixed
uploadAsync()
returning empty response on iOS. (#9166 by @barthap)
9.0.1 — 2020-05-29
This version does not introduce any user-facing changes.
9.0.0 — 2020-05-27
🛠 Breaking changes
FileSystem.downloadAsync
andFileSystem.DownloadResumable
work by default when the app is in background too — they won't reject when the application is backgrounded. (#7380 by @lukmccall)FileSystem.downloadAsync
andFileSystem.DownloadResumable
will reject when invalid headers dictionary is provided. These methods accept onlyRecord<string, string>
. (#7380 by @lukmccall)FileSystem.getContentUriAsync
now returns a string. (#7192 by @lukmccall)
🎉 New features
- Add
FileSystem.uploadAsync
method. (#7380 by @lukmccall) - Add ability to read Android
raw
anddrawable
resources inFileSystem.getInfoAsync
,FileSystem.readAsStringAsync
, andFileSystem.copyAsync
. (#8104 by @esamelson)