fix(deps): update dependency dexie-react-hooks to v4#385
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
2 times, most recently
from
November 10, 2025 17:45
c93db74 to
43f503e
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
from
November 25, 2025 16:17
43f503e to
2b0faba
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
2 times, most recently
from
December 3, 2025 18:59
c39022c to
fad8df2
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
from
December 30, 2025 15:39
fad8df2 to
34fa892
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
from
January 19, 2026 19:08
34fa892 to
0ad01aa
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
3 times, most recently
from
February 2, 2026 10:43
bd0c01f to
3301528
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
from
February 9, 2026 13:55
3301528 to
b876e2d
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
5 times, most recently
from
February 26, 2026 14:32
1970b11 to
ae465a1
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
2 times, most recently
from
March 19, 2026 09:09
286c739 to
f6791e7
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
2 times, most recently
from
March 26, 2026 20:32
543680b to
bfacd16
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
from
April 1, 2026 16:05
bfacd16 to
d2b5894
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
3 times, most recently
from
April 14, 2026 11:34
189bf27 to
883ece8
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
from
April 16, 2026 09:40
883ece8 to
da22101
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
from
April 29, 2026 12:05
da22101 to
3b01f4a
Compare
|
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
from
May 12, 2026 09:16
3b01f4a to
fe3f39f
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
2 times, most recently
from
June 1, 2026 19:53
2b8ff5b to
f6cf4d6
Compare
|
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
2 times, most recently
from
June 15, 2026 09:55
d7b48a0 to
b87c1fc
Compare
|
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
from
June 15, 2026 12:13
b87c1fc to
eccbef1
Compare
renovate
Bot
force-pushed
the
renovate/dexie-react-hooks-4.x
branch
from
July 12, 2026 16:16
eccbef1 to
0536536
Compare
|
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
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.



This PR contains the following updates:
^1.1.7→^4.0.0Release Notes
dexie/Dexie.js (dexie-react-hooks)
v4.4.0: Dexie v4.4.0Compare Source
This release introduces Blob Offloading and String Offloading for Dexie Cloud, enabling efficient handling of large binary and text data. It also includes IDB 3.0 optimizations and several bug fixes.
Related Package Releases
New Features
⚡ IDB 3.0 Optimizations
Leverages IndexedDB 3.0
getAll(options)for more efficient key range queries, reducing overhead for collection operations.📦 Blob Offloading for Dexie Cloud
Large binary data (Blob, File, ArrayBuffer, TypedArray) is now automatically offloaded to cloud blob storage during sync. Data is stored normally in IndexedDB — offloading happens transparently during the sync process.
blobMode: 'lazy'to download blobs on-demand instead of eagerly after sync (default is 'eager')db.cloud.blobProgressfor download progress📝 String Offloading for Dexie Cloud
Long strings are now offloaded to blob storage during sync, keeping IndexedDB data compact while preserving full string content in the cloud.
maxStringLengthoption (default: 32768 characters)Bug Fixes
Other Changes
v4.2.0: Dexie v4.2.0New Stable Packages
What's Changed since Latest Stable (dexie@4.0.11)
useDocument()in dexie-react-hooks for Y.js integration.New Contributors
Migration from 4.1.x-beta
Dexie 4.1.x has been tagged
@nextand contained experimental Y.js support. The Y.js support has since been moved into its own add-on 'y-dexie'.If the built-in Y.js support in dexie@4.1.x has been used, a migration is needed:
npm install y-dexieimport { DexieYProvider } from 'dexie'-->import { DexieYProvider } from 'y-dexie'DexieyYProvider<Y.Doc>-->DexieYProvider.Yto Dexie constructor, but instead, pass theyDexieaddon:{ addons: [yDexie, dexieCloud] }prop:Y.Docinstead of justprop:YIf you need a sample PR of these changes, have a look at dexie/dexie-cloud-starter#8
Full Changelog:
b415d92...a978fc0Configuration
📅 Schedule: (UTC)
🚦 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 this update again.
This PR was generated by Mend Renovate. View the repository job log.