-
Notifications
You must be signed in to change notification settings - Fork 5
feat: implement StorachaStorage CustomStorage for hybrid web/web3 apps #25
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
Open
luisawatkins
wants to merge
103
commits into
NiKrause:main
Choose a base branch
from
luisawatkins:feature/storacha-custom-storage
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
feat: implement StorachaStorage CustomStorage for hybrid web/web3 apps #25
luisawatkins
wants to merge
103
commits into
NiKrause:main
from
luisawatkins:feature/storacha-custom-storage
Conversation
This file contains hidden or 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
feat: Add Blog to readme
…when durring bacup, also contains ucan-demo and storacha storach
…onstrating the use of StorachaAuth.svelte and StorachaTest.svelte see Readme for details
…f issues with vite PWA plugin
- Move documentation files to dedicated docs/ folder - Remove debug and temporary files from examples/svelte/ucan-delegation/ - Add new utility modules (logger.js, test-utils.js) - Update core library files and Svelte components - Remove package lock files for cleaner dependency management - Update README.md and package.json
…ntries BREAKING CHANGE: Improved restore performance by only joining HEAD entries during database reconstruction. OrbitDB automatically traverses the log chain from heads, making it unnecessary to iterate through all entries. Changes: - Optimized restoreDatabaseFromSpace() to only join HEAD entries - Added better logging showing HEAD count vs total entries - Fixed reconstructWithoutManifest() to properly merge dbConfig with inferred type - Cleaned up example files by removing unused config options Performance Impact: - Before: Iterated through all N log entries (e.g., 427 entries) - After: Only processes HEAD entries (typically 1-27 heads) - Result: Significantly faster restore, especially for large databases The optimization maintains full functionality while providing clearer feedback about the restore process. Multiple heads are properly handled for databases with concurrent operations or replication branches.
* fix: improve UCAN authorization error handling and display * feat(tests): add Playwright e2e to verify UCAN auth failures surface correct UI errors, fix lint issues in bridge * missing libs for StorachaTest.svelte * refactor: use root orbitdb-storacha-bridge package in all examples… * fix: ignore dev-dist and e2e directories in eslint --------- Co-authored-by: Nico Krause <post@nicokrause.com>
* feat: implement structured logging framework with Pino * Add timestamped backup infrastructure… * Add CAR backup/restore with direct CID restore and CI integration… * Fix ESLint errors in CAR backup code… * Remove dist/ folder from git tracking… --------- Co-authored-by: Pranav Konde <pranavk@comsenseconsulting.com> Co-authored-by: Nico Krause <post@nicokrause.com>
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.
Closes #23
Implement StorachaStorage CustomStorage for hybrid web/web3 apps