-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate from AsyncStorage to FileStorage #2084
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rickycodes
force-pushed
the
storage-migration
branch
from
January 7, 2021 20:08
027e8d7
to
d316ea7
Compare
rickycodes
changed the title
WIP: Migrate from AsyncStorage to FileStorage
Migrate from AsyncStorage to FileStorage
Jan 7, 2021
rickycodes
added
the
needs-dev-review
PR needs reviews from other engineers (in order to receive required approvals)
label
Jan 7, 2021
rickycodes
force-pushed
the
storage-migration
branch
2 times, most recently
from
January 7, 2021 23:51
a039c6b
to
23527e2
Compare
I have some considerations to possibly address:
|
rickycodes
force-pushed
the
storage-migration
branch
from
March 4, 2021 17:53
23527e2
to
84a290a
Compare
LGTM |
sethkfman
added
the
needs-qa
Any New Features that needs a full manual QA prior to being added to a release.
label
Mar 26, 2021
ibrahimtaveras00
added
QA in Progress
QA has started on the feature.
and removed
needs-qa
Any New Features that needs a full manual QA prior to being added to a release.
labels
Mar 31, 2021
ibrahimtaveras00
approved these changes
Mar 31, 2021
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
QA Passed 👍🏽
ibrahimtaveras00
added
QA Passed
A successful QA run through has been done
and removed
QA in Progress
QA has started on the feature.
labels
Mar 31, 2021
rickycodes
added a commit
that referenced
this pull request
Jan 31, 2022
* Filesystem storage migration working * Logging * Add mock for rn-fetch * Update package.json * added throw to failed AsyncStorage so data will not be overwritten * added try catch to filesystem * async to set and remove methods in migration * updated key checking logic * removed key check Co-authored-by: andrepimenta <[email protected]> Co-authored-by: sethkfman <[email protected]> Co-authored-by: sethkfman <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
needs-dev-review
PR needs reviews from other engineers (in order to receive required approvals)
next release
QA Passed
A successful QA run through has been done
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This is a migration that gets Redux Persist using
redux-persist-filesystem-storage
instead ofAsyncStorage
. This fixes a rather nasty bug on Android from cropping up that you can read more about: here and herethe migration logic can be found in app/store/index.js
Checklist
Issue
Resolves #2100