Skip to content

Bump the minor group across 1 directory with 21 updates#2368

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/minor-7b3dfcbdc3
Open

Bump the minor group across 1 directory with 21 updates#2368
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/minor-7b3dfcbdc3

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Apr 1, 2026

Bumps the minor group with 21 updates in the / directory:

Package From To
@zip.js/zip.js 2.7.54 2.8.23
dexie 4.0.11 4.4.2
dexie-export-import 4.1.4 4.4.0
linkedom 0.18.10 0.18.12
@eslint/eslintrc 3.2.0 3.3.5
@playwright/test 1.49.1 1.59.0
@types/chrome 0.0.287 0.1.38
@types/dom-webcodecs 0.1.13 0.1.18
@types/zip.js 2.0.33 2.6.81
@vitest/eslint-plugin 1.1.21 1.6.14
ajv 8.17.1 8.18.0
esbuild 0.25.1 0.27.4
eslint-plugin-import 2.31.0 2.32.0
eslint-plugin-no-unsanitized 4.1.2 4.1.5
eslint-plugin-unused-imports 4.1.4 4.4.1
fake-indexeddb 6.0.0 6.2.5
handlebars 4.7.8 4.7.9
license-report 6.7.1 6.8.2
prettier 3.4.2 3.8.1
ts-json-schema-generator 2.3.0 2.9.0
typescript-eslint 8.18.2 8.58.0

Updates @zip.js/zip.js from 2.7.54 to 2.8.23

Release notes

Sourced from @​zip.js/zip.js's releases.

v2.8.23

  • Fixed zip64 auto-detection with keepOrder set to false in ZipWriter

Zip files containing entries larger than 4 GB or larger than 4 GB are now handled correctly when entries are written in parallel with keepOrder set to false. The zip64 extra field in the central directory is now built from actual offset and disk number values at close time, rather than being predicted at entry creation time.

  • Updated dev dependencies

v2.8.22

Fixed support of option keepOrder when set to false in ZipWriter (the option is set to true by default)

v2.8.21

Implemented workaround (feature test) for DOMException serialization bug in Deno version 2.6.x (fix gildas-lormeau/zip.js#636)

v2.8.20

v2.8.19

Removed unwanted web-worker dependency inadvertently added in the package.json file of version 2.8.17

v2.8.18

  • Added createTempStream option to ZipWriter, used when adding entries in parallel, for custom temporary buffered write storage (e.g. filesystem, OPFS, network) instead of the default in-memory TransformStream (see this test for a usage example)
  • Improved buffering implementation in ZipWriter by removing the Blob/Response usage
  • Fixed minor regression introduced in version 2.8.16 when the web worker URI is not a data or blob URI (workers were not working with code using ES6 import) (see related test)

v2.8.17

Fixed support of Web Workers when running zip.js with Bun (see #638)

v2.8.16

v2.8.15

v2.8.14

  • Fixed compressed size value in local headers when creating zip files using ZIP64 implicitly, i.e. when the zip64 option is not set to true (see gildas-lormeau/zip.js#627) and, for example, creating ZIP files weighting more than 4GB.
  • Fixed potential empty ZIP64 extra field in local headers

v2.8.13

  • Fixed regression (briefly) introduced in version 2.8.12 leading to missing data in ZIP64 Extra field of the central directory entries.

v2.8.12

  • Fixed potential warnings when unzipping files by removing unexpected data in the ZIP64 extra field of the local headers (see gildas-lormeau/zip.js#625) in ZipWriter
  • Updated dev dependencies

v2.8.11

What's Changed

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​zip.js/zip.js since your current version.


Updates dexie from 4.0.11 to 4.4.2

Release notes

Sourced from dexie's releases.

Dexie.js v4.4.2

This is a maintenance release containing several bug fixes accumulated since v4.4.1.

Related Package Releases

Package Version
dexie 4.4.2
dexie-cloud-addon 4.4.8
dexie-react-hooks 4.4.0
dexie-export-import 4.4.0

Bug Fixes

dexie-cloud-addon

  • fix: Allow anonymous blob download — previously anonymous users could not download offloaded blobs. Also fixes a crash in Service Worker context when Dexie.ignoreTransaction() was called (#2287)
  • fix: HMR protection of awareness provider — prevents hot module replacement from breaking the Y.js awareness connection in dev environments (9debfc0)
  • fix: Add configurable: true to awareness defineProperty — fixes compatibility issues with certain bundlers and proxies (#2280)
  • fix: Strip primary key from changeSpecs in update mutations — incorrect inclusion of primary key could cause sync failures in certain edge cases (#2277)
  • fix: Preserve syncState on logout to prevent spinner — logging out no longer resets sync state, avoiding an unwanted loading spinner on re-login (#2276)
  • fix: Update wrappedCursor.value in non-blob and error paths in blob resolve middleware (f470167)

Other Changes

  • Upgraded dependencies and fixed npm audit warnings
  • Formatted codebase with Prettier (#2282)

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.

... (truncated)

Commits
  • ab489de dexie@4.4.2 + dexie-cloud-addon@4.4.8
  • 0b7bbad fix(dexie-cloud): allow anonymous blob download + fix SW Dexie.ignoreTransact...
  • 7d3535e ci: add dev publish workflow using npm Trusted Publisher (OIDC) (#2285)
  • 39b99a3 fix(readme): add text label + dark mode logo support for TestMu AI
  • 14431de fix(readme): restore working LambdaTest sponsor badge (#2284)
  • cf70909 Remove unused import + prettified file
  • 9debfc0 dexie-cloud-addon@4.4.7: HMR protection of awareness provider
  • 7866764 fix(dexie-cloud-addon): add configurable:true to awareness defineProperty (#2...
  • c6d3026 pnpm.lock
  • aa85c6e chore: format entire codebase with prettier (#2282)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for dexie since your current version.


Updates dexie-export-import from 4.1.4 to 4.4.0

Release notes

Sourced from dexie-export-import's releases.

Dexie v4.3.0

This release introduces Social Authentication for Dexie Cloud, allowing users to sign in with Google, GitHub, Microsoft, Apple, or custom OAuth2 providers as an alternative to email OTP authentication.

Related Package Releases

Package Version
dexie 4.3.0
dexie-cloud-addon 4.3.9
dexie-react-hooks 4.2.2-beta.2

New Features

🔐 Social Authentication for Dexie Cloud

Dexie Cloud now supports OAuth 2.0 social login providers as an alternative to the existing OTP (One-Time Password) email authentication.

Supported Providers:

  • Google
  • GitHub
  • Microsoft
  • Apple
  • Custom OAuth2 providers

The Dexie Cloud server acts as an OAuth broker, handling all provider interactions. The client library never receives provider tokens—only Dexie Cloud authorization codes which are exchanged for Dexie Cloud tokens.

Usage:

Social auth is enabled by default on the client but need to be configured in manager first. When db.cloud.login() is called, users will see a provider selection dialog if OAuth providers are configured on the server.

// Initiate login - shows provider selection if available
await db.cloud.login();
// Or specify a provider directly
await db.cloud.login({ provider: 'google' });

Configuration Options:

db.cloud.configure({
  databaseUrl: 'https://mydb.dexie.cloud',
// Enable/disable social auth (default: true)
socialAuth: true, // also configure in https://manager.dexie.cloud
});

⚡ Suspense Support in dexie-react-hooks (Experimental)

... (truncated)

Commits

Updates linkedom from 0.18.10 to 0.18.12

Commits

Updates @eslint/eslintrc from 3.2.0 to 3.3.5

Release notes

Sourced from @​eslint/eslintrc's releases.

eslintrc: v3.3.5

3.3.5 (2026-03-04)

Bug Fixes

  • update dependency minimatch to ^3.1.5 (#227) (3dc2381)

eslintrc: v3.3.4

3.3.4 (2026-02-22)

Bug Fixes

  • update ajv to 6.14.0 to address security vulnerabilities (#221) (9139140)
  • update minimatch to 3.1.3 to address security vulnerabilities (#224) (30339d0)

eslintrc: v3.3.3

3.3.3 (2025-11-28)

Bug Fixes

  • release v3.3.3 because publishing v3.3.2 failed (#211) (8aa555a)

eslintrc: v3.3.2

3.3.2 (2025-11-25)

Bug Fixes

  • Remove name property from all and recommended configs (#200) (344da49)

v3.3.1

3.3.1 (2025-03-11)

Bug Fixes

v3.3.0

3.3.0 (2025-02-21)

Features

Changelog

Sourced from @​eslint/eslintrc's changelog.

3.3.5 (2026-03-04)

Bug Fixes

  • update dependency minimatch to ^3.1.5 (#227) (3dc2381)

3.3.4 (2026-02-22)

Bug Fixes

  • update ajv to 6.14.0 to address security vulnerabilities (#221) (9139140)
  • update minimatch to 3.1.3 to address security vulnerabilities (#224) (30339d0)

3.3.3 (2025-11-28)

Bug Fixes

  • release v3.3.3 because publishing v3.3.2 failed (#211) (8aa555a)

3.3.2 (2025-11-25)

Bug Fixes

  • Remove name property from all and recommended configs (#200) (344da49)

3.3.1 (2025-03-11)

Bug Fixes

3.3.0 (2025-02-21)

Features

Commits
  • 5135df1 chore: release 3.3.5 🚀 (#228)
  • c109d69 docs: Update README sponsors
  • 3dc2381 fix: update dependency minimatch to ^3.1.5 (#227)
  • 81385b6 ci: pin Node.js 25.6.1 (#226)
  • 4c45e24 chore: release 3.3.4 🚀 (#223)
  • 30339d0 fix: update minimatch to 3.1.3 to address security vulnerabilities (#224)
  • 9139140 fix: update ajv to 6.14.0 to address security vulnerabilities (#221)
  • 245ada5 docs: Update README sponsors
  • 78b1a0e docs: Update README sponsors
  • df32fff docs: Update README sponsors
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​eslint/eslintrc since your current version.


Updates @playwright/test from 1.49.1 to 1.59.0

Release notes

Sourced from @​playwright/test's releases.

v1.59.0

🎬 Screencast

New page.screencast API provides a unified interface for capturing page content with:

  • Screencast recordings
  • Action annotations
  • Visual overlays
  • Real-time frame capture
  • Agentic video receipts

Screencast recording — record video with precise start/stop control, as an alternative to the recordVideo option:

await page.screencast.start({ path: 'video.webm' });
// ... perform actions ...
await page.screencast.stop();

Action annotations — enable built-in visual annotations that highlight interacted elements and display action titles during recording:

await page.screencast.showActions({ position: 'top-right' });

screencast.showActions() accepts position ('top-left', 'top', 'top-right', 'bottom-left', 'bottom', 'bottom-right'), duration (ms per annotation), and fontSize (px). Returns a disposable to stop showing actions.

Action annotations can also be enabled in test fixtures via the video option:

// playwright.config.ts
export default defineConfig({
  use: {
    video: {
      mode: 'on',
      show: {
        actions: { position: 'top-left' },
        test: { position: 'top-right' },
      },
    },
  },
});

Visual overlays — add chapter titles and custom HTML overlays on top of the page for richer narration:

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​playwright/test since your current version.


Updates @types/chrome from 0.0.287 to 0.1.38

Commits

Updates @types/dom-webcodecs from 0.1.13 to 0.1.18

Commits

Updates @types/zip.js from 2.0.33 to 2.6.81

Commits

Updates @vitest/eslint-plugin from 1.1.21 to 1.6.14

Release notes

Sourced from @​vitest/eslint-plugin's releases.

v1.6.14

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.6.13...v1.6.14

v1.6.13

   🚀 Features

    View changes on GitHub

v1.6.12

    View changes on GitHub

What's Changed

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.6.11...v1.6.12

v1.6.11

   🐞 Bug Fixes

    View changes on GitHub

v1.6.10

   🚀 Features

    View changes on GitHub

v1.6.9

   🐞 Bug Fixes

    View changes on GitHub

v1.6.8

No significant changes

... (truncated)

Commits

Updates ajv from 8.17.1 to 8.18.0

Release notes

Sourced from ajv's releases.

v8.18.0

What's Changed

New Contributors

Full Changelog: ajv-validator/ajv@v8.17.1...v8.18.0

Commits
  • 142ce84 8.18.0
  • 720a23f fix(pattern): use configured RegExp engine with $data keyword to mitigate ReD...
  • 82735a1 fix: typos in schema-language.md (#2507)
  • b17ec32 fix: small grammatical error in managing-schemas.md (#2508)
  • 69568d0 fix: #2482 Infinity and NaN serialise to null (#2487)
  • f06766f feat: allow tree-shaking by adding ``"sideEffects": falsetopackage.json` ...
  • See full diff in compare view

Updates esbuild from 0.25.1 to 0.27.4

Release notes

Sourced from esbuild's releases.

v0.27.4

  • Fix a regression with CSS media queries (#4395, #4405, #4406)

    Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <media-type> and <media-condition-without-or> grammar. Specifically, esbuild was failing to wrap an or clause with parentheses when inside <media-condition-without-or>. This release fixes the regression.

    Here is an example:

    /* Original code */
    @media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a { color: red }
    }
    /* Old output (incorrect) */
    @​media only screen and (min-width: 10px) or (min-height: 10px) {
    a {
    color: red;
    }
    }
    /* New output (correct) */
    @​media only screen and ((min-width: 10px) or (min-height: 10px)) {
    a {
    color: red;
    }
    }

  • Fix an edge case with the inject feature (#4407)

    This release fixes an edge case where esbuild's inject feature could not be used with arbitrary module namespace names exported using an export {} from statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.

    With the fix, the following inject file:

    import jquery from 'jquery';
    export { jquery as 'window.jQuery' };

    Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:

    export { default as 'window.jQuery' } from 'jquery';
  • Attempt to improve API handling of huge metafiles (#4329, #4415)

    This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.

    The primary issue is that V8 has an implementation-specific maximum string length, so using the JSON.parse API with large enough strings is impossible. This release will now attempt to use a fallback JavaScript-based JSON parser that operates directly on the UTF8-encoded JSON bytes instead of using JSON.parse when the JSON metafile is too big to fit in a JavaScript string. The new fallback path has not yet been heavily-tested. The metafile will also now be generated with whitespace removed if the bundle is significantly large, which will reduce the size of the metafile JSON slightly.

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.4

  • Fix a regression with CSS media queries (#4395, #4405, #4406)

    Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <media-type> and <media-condition-without-or> grammar. Specifically, esbuild was failing to wrap an or clause with parentheses when inside <media-condition-without-or>. This release fixes the regression.

    Here is an example:

    /* Original code */
    @media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a { color: red }
    }
    /* Old output (incorrect) */
    @​media only screen and (min-width: 10px) or (min-height: 10px) {
    a {
    color: red;
    }
    }
    /* New output (correct) */
    @​media only screen and ((min-width: 10px) or (min-height: 10px)) {
    a {
    color: red;
    }
    }

  • Fix an edge case with the inject feature (#4407)

    This release fixes an edge case where esbuild's inject feature could not be used with arbitrary module namespace names exported using an export {} from statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.

    With the fix, the following inject file:

    import jquery from 'jquery';
    export { jquery as 'window.jQuery' };

    Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:

    export { default as 'window.jQuery' } from 'jquery';
  • Attempt to improve API handling of huge metafiles (#4329, #4415)

    This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for esbuild since your current version.


Updates eslint-plugin-import from 2.31.0 to 2.32.0

Release notes

Sourced from eslint-plugin-import's releases.

v2.32.0

Added

Fixed

Changed

... (truncated)

Changelog

Sourced from eslint-plugin-import's changelog.

[2.32.0] - 2025-06-20

Added

  • add [enforce-node-protocol-usage] rule and import/node-version setting (#3024, thanks [@​GoldStrikeArch] and [@​sevenc-nanashi])
  • add TypeScript types (#3097, thanks [@​G-Rath])
  • [extensions]: add `pathGroupOverrides to allow enforcement decision overrides based on specifier (#3105, thanks [@​Xunnamius])
  • [order]: add sortTypesGroup option to allow intragroup sorting of type-only imports (#3104, thanks [@​Xunnamius])
  • [order]: add newlines-between-types option to control intragroup sorting of type-only imports (#3127, thanks [@​Xunnamius])
  • [order]: add consolidateIslands option to collapse excess spacing for aesthetically pleasing imports (#3129, thanks [@​Xunnamius])

Fixed

  • [no-unused-modules]: provide more meaningful error message when no .eslintrc is present (#3116, thanks [@​michaelfaith])
  • configs: added missing name attribute for eslint config inspector (#3151, thanks [@​NishargShah])
  • [order]: ensure arcane imports do not cause undefined behavior (#3128, thanks [@​Xunnamius])
  • [order]: resolve undefined property access issue when using named ordering (#3166, thanks [@​Xunnamius])
  • [enforce-node-protocol-usage]: avoid a crash with some TS code (#3173, thanks [@​ljharb])
  • [order]: codify invariants from docs into config schema (#3152, thanks [@​Xunnamius])

Changed

  • [Docs] [extensions], [order]: improve documentation (#3106, thanks [@​Xunnamius])
  • [Docs] add flat config guide for using tseslint.config() (#3125, thanks [@​lnuvy])
  • [Docs] add missing comma (#3122, thanks [@​RyanGst])
  • [readme] Update flatConfig example to include typescript config (#3138, thanks [@​intellix])
  • [Refactor] [order]: remove unnecessary negative check (#3167, thanks [@​JounQin])
  • [Docs] [no-unused-modules]: add missing double quote (#3191, thanks [@​albertpastrana])
  • ...

    Description has been truncated

Bumps the minor group with 21 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@zip.js/zip.js](https://github.com/gildas-lormeau/zip.js) | `2.7.54` | `2.8.23` |
| [dexie](https://github.com/dexie/Dexie.js) | `4.0.11` | `4.4.2` |
| [dexie-export-import](https://github.com/dexie/Dexie.js) | `4.1.4` | `4.4.0` |
| [linkedom](https://github.com/WebReflection/linkedom) | `0.18.10` | `0.18.12` |
| [@eslint/eslintrc](https://github.com/eslint/eslintrc) | `3.2.0` | `3.3.5` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.49.1` | `1.59.0` |
| [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.0.287` | `0.1.38` |
| [@types/dom-webcodecs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/dom-webcodecs) | `0.1.13` | `0.1.18` |
| [@types/zip.js](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/zip.js) | `2.0.33` | `2.6.81` |
| [@vitest/eslint-plugin](https://github.com/vitest-dev/eslint-plugin-vitest) | `1.1.21` | `1.6.14` |
| [ajv](https://github.com/ajv-validator/ajv) | `8.17.1` | `8.18.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.1` | `0.27.4` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.31.0` | `2.32.0` |
| [eslint-plugin-no-unsanitized](https://github.com/mozilla/eslint-plugin-no-unsanitized) | `4.1.2` | `4.1.5` |
| [eslint-plugin-unused-imports](https://github.com/sweepline/eslint-plugin-unused-imports) | `4.1.4` | `4.4.1` |
| [fake-indexeddb](https://github.com/dumbmatter/fakeIndexedDB) | `6.0.0` | `6.2.5` |
| [handlebars](https://github.com/handlebars-lang/handlebars.js) | `4.7.8` | `4.7.9` |
| [license-report](https://github.com/kessler/license-report) | `6.7.1` | `6.8.2` |
| [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.8.1` |
| [ts-json-schema-generator](https://github.com/vega/ts-json-schema-generator) | `2.3.0` | `2.9.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.18.2` | `8.58.0` |



Updates `@zip.js/zip.js` from 2.7.54 to 2.8.23
- [Release notes](https://github.com/gildas-lormeau/zip.js/releases)
- [Commits](gildas-lormeau/zip.js@v2.7.54...v2.8.23)

Updates `dexie` from 4.0.11 to 4.4.2
- [Release notes](https://github.com/dexie/Dexie.js/releases)
- [Commits](dexie/Dexie.js@v4.0.11...v4.4.2)

Updates `dexie-export-import` from 4.1.4 to 4.4.0
- [Release notes](https://github.com/dexie/Dexie.js/releases)
- [Commits](https://github.com/dexie/Dexie.js/commits/v4.4.0)

Updates `linkedom` from 0.18.10 to 0.18.12
- [Commits](WebReflection/linkedom@v0.18.10...v0.18.12)

Updates `@eslint/eslintrc` from 3.2.0 to 3.3.5
- [Release notes](https://github.com/eslint/eslintrc/releases)
- [Changelog](https://github.com/eslint/eslintrc/blob/main/CHANGELOG.md)
- [Commits](eslint/eslintrc@v3.2.0...eslintrc-v3.3.5)

Updates `@playwright/test` from 1.49.1 to 1.59.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.49.1...v1.59.0)

Updates `@types/chrome` from 0.0.287 to 0.1.38
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome)

Updates `@types/dom-webcodecs` from 0.1.13 to 0.1.18
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/dom-webcodecs)

Updates `@types/zip.js` from 2.0.33 to 2.6.81
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/zip.js)

Updates `@vitest/eslint-plugin` from 1.1.21 to 1.6.14
- [Release notes](https://github.com/vitest-dev/eslint-plugin-vitest/releases)
- [Commits](vitest-dev/eslint-plugin-vitest@v1.1.21...v1.6.14)

Updates `ajv` from 8.17.1 to 8.18.0
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v8.17.1...v8.18.0)

Updates `esbuild` from 0.25.1 to 0.27.4
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.25.1...v0.27.4)

Updates `eslint-plugin-import` from 2.31.0 to 2.32.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.31.0...v2.32.0)

Updates `eslint-plugin-no-unsanitized` from 4.1.2 to 4.1.5
- [Release notes](https://github.com/mozilla/eslint-plugin-no-unsanitized/releases)
- [Commits](mozilla/eslint-plugin-no-unsanitized@4.1.2...4.1.5)

Updates `eslint-plugin-unused-imports` from 4.1.4 to 4.4.1
- [Release notes](https://github.com/sweepline/eslint-plugin-unused-imports/releases)
- [Commits](sweepline/eslint-plugin-unused-imports@v4.1.4...v4.4.1)

Updates `fake-indexeddb` from 6.0.0 to 6.2.5
- [Release notes](https://github.com/dumbmatter/fakeIndexedDB/releases)
- [Changelog](https://github.com/dumbmatter/fakeIndexedDB/blob/master/CHANGELOG.md)
- [Commits](dumbmatter/fakeIndexedDB@v6.0.0...v6.2.5)

Updates `handlebars` from 4.7.8 to 4.7.9
- [Release notes](https://github.com/handlebars-lang/handlebars.js/releases)
- [Changelog](https://github.com/handlebars-lang/handlebars.js/blob/v4.7.9/release-notes.md)
- [Commits](handlebars-lang/handlebars.js@v4.7.8...v4.7.9)

Updates `license-report` from 6.7.1 to 6.8.2
- [Changelog](https://github.com/kessler/license-report/blob/master/CHANGELOG.md)
- [Commits](kessler/license-report@v6.7.1...v6.8.2)

Updates `prettier` from 3.4.2 to 3.8.1
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.4.2...3.8.1)

Updates `ts-json-schema-generator` from 2.3.0 to 2.9.0
- [Release notes](https://github.com/vega/ts-json-schema-generator/releases)
- [Changelog](https://github.com/vega/ts-json-schema-generator/blob/v2.9.0/CHANGELOG.md)
- [Commits](vega/ts-json-schema-generator@v2.3.0...v2.9.0)

Updates `typescript-eslint` from 8.18.2 to 8.58.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.58.0/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: "@zip.js/zip.js"
  dependency-version: 2.8.23
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: dexie
  dependency-version: 4.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: dexie-export-import
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: linkedom
  dependency-version: 0.18.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@eslint/eslintrc"
  dependency-version: 3.3.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@playwright/test"
  dependency-version: 1.59.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/chrome"
  dependency-version: 0.1.38
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/dom-webcodecs"
  dependency-version: 0.1.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/zip.js"
  dependency-version: 2.6.81
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@vitest/eslint-plugin"
  dependency-version: 1.6.14
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: ajv
  dependency-version: 8.18.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: esbuild
  dependency-version: 0.27.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: eslint-plugin-import
  dependency-version: 2.32.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: eslint-plugin-no-unsanitized
  dependency-version: 4.1.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: eslint-plugin-unused-imports
  dependency-version: 4.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: fake-indexeddb
  dependency-version: 6.2.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: handlebars
  dependency-version: 4.7.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: license-report
  dependency-version: 6.8.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: prettier
  dependency-version: 3.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: ts-json-schema-generator
  dependency-version: 2.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: typescript-eslint
  dependency-version: 8.58.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the area/dependencies The issue or PR is related to dependencies label Apr 1, 2026
@dependabot dependabot bot requested a review from a team as a code owner April 1, 2026 03:20
@dependabot dependabot bot added the area/dependencies The issue or PR is related to dependencies label Apr 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/dependencies The issue or PR is related to dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants