-
Notifications
You must be signed in to change notification settings - Fork 13
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
chore(celest): Migrate to native_storage
#97
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
Introduces a `platform_storage` package for Dart-native access to platform-specific local and secure storage implementations. The package provides synchronous and asynchronous wrappers over native APIs like UserDefaults and Keychain on all platforms.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
dnys1
force-pushed
the
chore/migrate-celest-to-platform-storage
branch
from
April 2, 2024 06:36
04dd90c
to
f114911
Compare
dnys1
force-pushed
the
feat/platform-storage
branch
from
April 2, 2024 06:39
388979a
to
503d41b
Compare
dnys1
force-pushed
the
chore/migrate-celest-to-platform-storage
branch
from
April 2, 2024 06:39
f114911
to
47b2d79
Compare
Removes old interfaces in favor of `package:platform_storage`.
dnys1
force-pushed
the
feat/platform-storage
branch
from
April 2, 2024 06:39
503d41b
to
f423e02
Compare
dnys1
force-pushed
the
chore/migrate-celest-to-platform-storage
branch
from
April 2, 2024 06:39
47b2d79
to
9d22250
Compare
dnys1
force-pushed
the
feat/platform-storage
branch
from
April 2, 2024 22:23
8be4bb0
to
e40b859
Compare
Introduces a `native_storage` package for Dart-native access to platform-specific local and secure storage implementations. The package provides synchronous and asynchronous wrappers over native APIs like UserDefaults and Keychain on all platforms.
- Explicitly adds `platforms` key - Updates pubspec URL - Removes unused dependency
- feat: Isolated memory storage on web - fix: Scoping rules - chore: More pub.dev clean up
The iteration logic was causing a crash in the CLI. Also prefers `prefix` over `scope` for deletion inclusion.
dnys1
force-pushed
the
chore/migrate-celest-to-platform-storage
branch
from
April 9, 2024 23:29
4b6b285
to
b8fdb40
Compare
dnys1
force-pushed
the
chore/migrate-celest-to-platform-storage
branch
from
April 10, 2024 00:47
b8fdb40
to
1a29fc3
Compare
dnys1
changed the title
chore(celest): Migrate to
chore(celest): Migrate to Apr 10, 2024
platform_storage
native_storage
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
chore(celest): Migrate to
native_storage
Removes old, private interfaces in favor of
package:native_storage
.