mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-25 13:22:00 +03:00
chore: bump up fake-indexeddb version to v6 (#6998)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [fake-indexeddb](https://togithub.com/dumbmatter/fakeIndexedDB) | [`^5.0.2` -> `^6.0.0`](https://renovatebot.com/diffs/npm/fake-indexeddb/5.0.2/6.0.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/fake-indexeddb/6.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/fake-indexeddb/6.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/fake-indexeddb/5.0.2/6.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/fake-indexeddb/5.0.2/6.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [fake-indexeddb](https://togithub.com/dumbmatter/fakeIndexedDB) | [`5.0.2` -> `6.0.0`](https://renovatebot.com/diffs/npm/fake-indexeddb/5.0.2/6.0.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/fake-indexeddb/6.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/fake-indexeddb/6.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/fake-indexeddb/5.0.2/6.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/fake-indexeddb/5.0.2/6.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>dumbmatter/fakeIndexedDB (fake-indexeddb)</summary> ### [`v6.0.0`](https://togithub.com/dumbmatter/fakeIndexedDB/blob/HEAD/CHANGELOG.md#600-2024-05-20) [Compare Source](https://togithub.com/dumbmatter/fakeIndexedDB/compare/v5.0.2...v6.0.0) I made this a new major version because it includes a few changes that could in theory break something in some weird situations. But I think the vast majority of users (possibly all users?) won't have any issue upgrading. - [#​48](https://togithub.com/dumbmatter/fakeIndexedDB/issues/48) - Switched to using `DOMException` errors rather than normal errors, since that's what the IndexedDB spec says to use, and Node.js now has a built-in DOMException in all supported versions. - [#​93](https://togithub.com/dumbmatter/fakeIndexedDB/issues/93) - [@​bryan-codaio](https://togithub.com/bryan-codaio) made the latest tweak to event scheduling, this time improving how `setImmediate` is used in some situations where people are mocking timers. - [#​99](https://togithub.com/dumbmatter/fakeIndexedDB/issues/99) - [@​sjnho](https://togithub.com/sjnho) fixed handling of `Date` objects to account for some edge cases, including jsdom overriding the native `Date` constructor. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/toeverything/AFFiNE). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjMuNSIsInVwZGF0ZWRJblZlciI6IjM3LjM2My41IiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5IiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->
This commit is contained in:
parent
d5c93f10ac
commit
d898dae280
@ -87,7 +87,7 @@
|
||||
"eslint-plugin-unicorn": "^52.0.0",
|
||||
"eslint-plugin-unused-imports": "^3.1.0",
|
||||
"eslint-plugin-vue": "^9.24.1",
|
||||
"fake-indexeddb": "5.0.2",
|
||||
"fake-indexeddb": "6.0.0",
|
||||
"happy-dom": "^14.7.1",
|
||||
"husky": "^9.0.11",
|
||||
"lint-staged": "^15.2.2",
|
||||
|
@ -100,7 +100,7 @@
|
||||
"@types/react-dnd": "^3.0.2",
|
||||
"@types/react-dom": "^18.2.24",
|
||||
"@vanilla-extract/css": "^1.14.2",
|
||||
"fake-indexeddb": "^5.0.2",
|
||||
"fake-indexeddb": "^6.0.0",
|
||||
"storybook": "^7.6.17",
|
||||
"storybook-dark-mode": "^4.0.0",
|
||||
"typescript": "^5.4.5",
|
||||
|
@ -103,7 +103,7 @@
|
||||
"@types/uuid": "^9.0.8",
|
||||
"@vanilla-extract/css": "^1.14.2",
|
||||
"express": "^4.19.2",
|
||||
"fake-indexeddb": "^5.0.2",
|
||||
"fake-indexeddb": "^6.0.0",
|
||||
"lodash-es": "^4.17.21",
|
||||
"mime-types": "^2.1.35",
|
||||
"vitest": "1.6.0"
|
||||
|
14
yarn.lock
14
yarn.lock
@ -269,7 +269,7 @@ __metadata:
|
||||
check-password-strength: "npm:^2.0.10"
|
||||
clsx: "npm:^2.1.0"
|
||||
dayjs: "npm:^1.11.10"
|
||||
fake-indexeddb: "npm:^5.0.2"
|
||||
fake-indexeddb: "npm:^6.0.0"
|
||||
foxact: "npm:^0.2.33"
|
||||
jotai: "npm:^2.8.0"
|
||||
jotai-effect: "npm:^1.0.0"
|
||||
@ -368,7 +368,7 @@ __metadata:
|
||||
css-spring: "npm:^4.1.0"
|
||||
dayjs: "npm:^1.11.10"
|
||||
express: "npm:^4.19.2"
|
||||
fake-indexeddb: "npm:^5.0.2"
|
||||
fake-indexeddb: "npm:^6.0.0"
|
||||
foxact: "npm:^0.2.33"
|
||||
fractional-indexing: "npm:^3.2.0"
|
||||
graphql: "npm:^16.8.1"
|
||||
@ -595,7 +595,7 @@ __metadata:
|
||||
eslint-plugin-unicorn: "npm:^52.0.0"
|
||||
eslint-plugin-unused-imports: "npm:^3.1.0"
|
||||
eslint-plugin-vue: "npm:^9.24.1"
|
||||
fake-indexeddb: "npm:5.0.2"
|
||||
fake-indexeddb: "npm:6.0.0"
|
||||
happy-dom: "npm:^14.7.1"
|
||||
husky: "npm:^9.0.11"
|
||||
lint-staged: "npm:^15.2.2"
|
||||
@ -22416,10 +22416,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"fake-indexeddb@npm:5.0.2, fake-indexeddb@npm:^5.0.2":
|
||||
version: 5.0.2
|
||||
resolution: "fake-indexeddb@npm:5.0.2"
|
||||
checksum: 10/8bbe74fe29c2d8e9bf97928f4c7af87afa63f2458cd4992897f65aa5a8c2828fd48cb6f0510593442eb1ab5465d5cc08a1cd4c478fa234514e22a627adf0e2ac
|
||||
"fake-indexeddb@npm:6.0.0, fake-indexeddb@npm:^6.0.0":
|
||||
version: 6.0.0
|
||||
resolution: "fake-indexeddb@npm:6.0.0"
|
||||
checksum: 10/b4098f050ae1f18e23edd5e87da17aee1b6a199e1d3dec0c35346db73416ffac59bd595e2011b9cd70f36fe25eb852d122d2a05c74f75754869f300d84159414
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user