Skip to content

v2.21.0-alpha.4

Compare
Choose a tag to compare
@birdofpreyru birdofpreyru released this 08 Oct 17:45
· 176 commits to master since this release

Changes in v2.21.0-alpha.4

  • [#3] These functions have been verified and patched to work on all platforms they used to work in the original library: copyFolder(), downloadFile(), uploadFiles().

    BEWARE: For downloadFile() and uploadFiles() only the base functionality have been tested, no guarantees that all options work correctly on all platforms and RN (old/new) architectures.

  • [#7] Declares React Native v0.72.x as required peer dependency.

  • [#9] iOS: Corrects declared target iOS platform version to match that of RN (currently v13.4).

  • Adds pickFile() function (as of now, it is implemented for Android and iOS only). It prompts user to select a file, using a platform provided file picker UI, and also allowing to access files outside the application sandbox (i.e. files outside the app sandbox aren't visible to other functions in the library directly, but pickFile() returns special security-scoped URIs for user selected files, which then can be used to access those files by other functions in the library).


The aim for upcoming v2.21.0 release is to bring the previous latest react-native-fs v2.20.0 up to the standards of the latest React Native v0.72.x, without breaking API changes, with support of the new RN architecture, with backward compatibility to the old RN architecture, and on all supported platforms: Android, iOS, macOS (Catalyst), Windows. Also documentation revision.

As of v2.21.0-alpha.4:

  • The core library setup and the code base as a whole have been refactored for RN v0.72.x standards.
  • The following pieces of the library have been tested to work correctly (no warranty that no bugs have been missed) on all supported platforms:
    • All path constants.
    • These selected functions: copyFile(), copyFileAssets(), copyFolder(), downloadFile(), exists(), existsAssets(), getFSInfo(), mkdir(), moveFile(), read(), readdir(), readDir(), readDirAssets(), readFile(), readFileAssets(), stat(), unlink(), uploadFiles(), writeFile().
    • The rest of functions may or may not work.