Skip to content

Bump dexie from 4.2.1 to 4.4.1 in /web#2058

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/web/dexie-4.4.1
Closed

Bump dexie from 4.2.1 to 4.4.1 in /web#2058
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/web/dexie-4.4.1

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 13, 2026

Bumps dexie from 4.2.1 to 4.4.1.

Release notes

Sourced from dexie's releases.

Dexie v4.4.1

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

Package Version
dexie 4.4.1
dexie-cloud-addon 4.4.6
dexie-cloud-common 1.0.59
dexie-react-hooks 4.4.0
dexie-export-import 4.4.0

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.

  • Automatic offloading: Binaries ≥ 4 KB are offloaded to blob storage during sync
  • Lazy resolution: BlobRefs are resolved back to their original types on first read
  • Optional Lazy blob mode: Configure blobMode: 'lazy' to download blobs on-demand instead of eagerly after sync (default is 'eager')
  • Progress tracking: Observable db.cloud.blobProgress for download progress
import Dexie from 'dexie';
import dexieCloud from 'dexie-cloud-addon';
const db = new Dexie('mydb', { addons: [dexieCloud] });
db.version(1).stores({ photos: '@​id, title' });
db.cloud.configure({ databaseUrl: '...', blobMode: 'eager' });
// Store binary data — syncs normally, offloads transparently
await db.photos.add({
title: 'Vacation',
image: new Blob([imageData], { type: 'image/jpeg' })
});

📝 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.

  • Configurable threshold: maxStringLength option (default: 32768 characters)
  • Transparent: Offloaded strings resolve back to regular strings on read
  • IndexedDB unchanged: Full strings remain in local IndexedDB

... (truncated)

Commits
  • 3bcd57e Build output
  • 9f9c876 Merge remote-tracking branch 'origin/releases'
  • 1f82e33 Releasing v4.4.1
  • 7fddae0 Merge pull request #2272 from dexie/liz/policy-rejection-challenge
  • e992324 Merge pull request #2271 from dexie/liz/livequery-race-fix
  • 00d3394 fix(dexie-cloud-addon): make options argument optional in Table.newId()
  • 58e576b dexie-cloud-addon@4.4.4-alpha.0 for testing
  • aadc4fb fix(addon): remove USER_NOT_ACCEPTED duplicate, add USER_DEACTIVATED, fix dou...
  • e868a87 refactor(addon): remove EMAIL_NOT_ALLOWED error code
  • 8faab53 feat(addon): add intent to LoginHints and forward to server
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 13, 2026
@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages Bot commented Apr 13, 2026

Deploying nostter with  Cloudflare Pages  Cloudflare Pages

Latest commit: 36bd7a1
Status: ✅  Deploy successful!
Preview URL: https://cbe8b73c.nostter.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-web-qhlz.nostter.pages.dev

View logs

Bumps [dexie](https://github.com/dexie/Dexie.js) from 4.2.1 to 4.4.1.
- [Release notes](https://github.com/dexie/Dexie.js/releases)
- [Commits](dexie/Dexie.js@v4.2.1...v4.4.1)

---
updated-dependencies:
- dependency-name: dexie
  dependency-version: 4.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/web/dexie-4.4.1 branch from 241696c to 36bd7a1 Compare April 13, 2026 08:40
@dependabot dependabot Bot requested a review from SnowCait as a code owner April 13, 2026 08:40
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 17, 2026

Superseded by #2078.

@dependabot dependabot Bot closed this Apr 17, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/web/dexie-4.4.1 branch April 17, 2026 05:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants