Bump idb-keyval from 5.1.5 to 6.2.0
Bumps idb-keyval from 5.1.5 to 6.2.0.
Changelog
Sourced from idb-keyval's changelog.
This only documents breaking changes. For other changes, see the commit log.
v6
distno longer committed.- Files have moved around.
- CommonJS files now have a
.cjsextension.- Sourcemaps no longer included.
- iife build switched to a UMD build.
v5
The changes between 3.x and 5.x related to custom stores.
Old way:
// This no longer works in 4.x import { Store, set } from 'idb-keyval';const customStore = new Store('custom-db-name', 'custom-store-name'); set('foo', 'bar', customStore);
New way:
import { createStore, set } from 'idb-keyval';const customStore = createStore('custom-db-name', 'custom-store-name'); set('foo', 'bar', customStore);
For more details, see custom stores.
v4
4.x was abandoned due to a Safari bug.
v3
2.x exported an object with methods:
// This no longer works in 3.x import idbKeyval from 'idb-keyval';idbKeyval.set('foo', 'bar');
... (truncated)
Commits
a7225846.2.01c01e45Remove Safari workaround (bug has been fixed for over a year)494ee77Remove .ts-tmp for full builda8ed53aUpdate deps3a183b4Add types to exportfdf795b6.1.0c0de67dOptimise 'get many' operations (#141)7378da96.0.38116a47Switch UMD to .jsaff17a66.0.2- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)