-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
feat(nbstore): add idb implementation #8809
base: 61/adapt-op
Are you sure you want to change the base?
Conversation
Your org has enabled the Graphite merge queue for merging into canaryAdd the label “merge” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. Or use the label “hotfix” to add to the merge queue as a hot fix. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
b327d33
to
ad2c6b7
Compare
9c98c50
to
5615c5e
Compare
5615c5e
to
a94a9b5
Compare
ad2c6b7
to
f4ec560
Compare
a94a9b5
to
4c0bf17
Compare
f4ec560
to
bdfb811
Compare
4c0bf17
to
28db859
Compare
☁️ Nx Cloud ReportCI is running/has finished running commands for commit c8d16ec. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 1 targetSent with 💌 from NxCloud. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## 61/adapt-op #8809 +/- ##
===============================================
+ Coverage 70.25% 70.30% +0.05%
===============================================
Files 550 550
Lines 33980 33980
Branches 3052 3052
===============================================
+ Hits 23871 23889 +18
+ Misses 9737 9719 -18
Partials 372 372
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
bdfb811
to
bf6c0ab
Compare
28db859
to
4dba527
Compare
bf6c0ab
to
83cf4e2
Compare
4dba527
to
39f9bb7
Compare
83cf4e2
to
e41df6c
Compare
39f9bb7
to
a7d33ee
Compare
e41df6c
to
fa1a679
Compare
a7d33ee
to
362054a
Compare
fa1a679
to
9f18aa4
Compare
362054a
to
3565131
Compare
9f18aa4
to
09eda41
Compare
3565131
to
c8d16ec
Compare
* @deprecated readonly | ||
*/ | ||
export class IndexedDBV1BlobStorage extends BlobStorage<IndexedDBV1BlobStorageOptions> { | ||
readonly connection = share(new BlobIDBConnection(this.spaceId)); |
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.
The constructor parameter this.spaceId
does not match the interface definition IndexedDBV1BlobStorageOptions
which expects a dbName
property. Please update to use this.options.dbName
instead.
Spotted by Graphite Reviewer
Is this helpful? React 👍 or 👎 to let us know.
No description provided.