Skip to content

chore(deps): bump the dependencies group across 1 directory with 40 updates#19

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dependencies-2639a44014
Open

chore(deps): bump the dependencies group across 1 directory with 40 updates#19
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dependencies-2639a44014

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the dependencies group with 36 updates in the / directory:

Package From To
browserslist 4.28.1 4.28.2
enhanced-resolve 5.20.0 5.21.0
es-module-lexer 2.0.0 2.1.0
loader-runner 4.3.1 4.3.2
terser-webpack-plugin 5.3.17 5.5.0
webpack-sources 3.3.4 3.4.0
@changesets/cli 2.30.0 2.31.0
@codspeed/core 5.2.0 5.4.0
@types/node 25.3.3 25.6.0
assemblyscript 0.28.9 0.28.16
babel-loader 10.0.0 10.1.1
core-js 3.48.0 3.49.0
eslint-config-webpack 4.9.3 4.9.5
jest 30.2.0 30.3.0
jest-circus 30.2.0 30.3.0
jest-diff 30.2.0 30.3.0
jest-environment-node 30.2.0 30.3.0
less 4.5.1 4.6.4
less-loader 12.3.1 12.3.2
lint-staged 16.3.2 16.4.0
lodash 4.17.23 4.18.1
lodash-es 4.17.23 4.18.1
memfs 4.56.11 4.57.2
mini-css-extract-plugin 2.10.0 2.10.2
node-gyp 12.2.0 12.3.0
oxc-parser 0.116.0 0.128.0
pkg-pr-new 0.0.65 0.0.68
prettier 3.8.1 3.8.3
pug 3.0.3 3.0.4
react 19.2.4 19.2.5
react-dom 19.2.4 19.2.5
simple-git 3.32.3 3.36.0
terser 5.46.0 5.46.2
three 0.183.2 0.184.0
tinybench 6.0.0 6.0.1
ts-loader 9.5.4 9.5.7

Updates browserslist from 4.28.1 to 4.28.2

Release notes

Sourced from browserslist's releases.

4.28.2

Changelog

Sourced from browserslist's changelog.

4.28.2

Commits

Updates enhanced-resolve from 5.20.0 to 5.21.0

Release notes

Sourced from enhanced-resolve's releases.

v5.21.0

Minor Changes

  • Added promise API and support to resolve without context and resolveContext. (by @​alexander-akait in #520)

  • Add extensionAliasForExports option. When true, extensionAlias also applies to paths resolved through the package.json exports field. Off by default to match Node.js; opt in for full TypeScript-resolver parity with packages that ship .ts sources alongside the compiled .js they declare in exports. (by @​alexander-akait in #554)

Patch Changes

  • Properly handle DOS device paths (\\?\… and \\.\…). (by @​alexander-akait in #551)

  • Prevent fallback to parent node_modules when the exports field target file is not found. (by @​xiaoxiaojx in #495)

  • Imports field spec deviation: non-relative targets (e.g. "#a": "#b") no longer re-enter imports resolution, aligning with the Node.js ESM spec where PACKAGE_IMPORTS_RESOLVE does not recursively resolve # specifiers. (by @​xiaoxiaojx in #503)

    Previously { "#a": "#b", "#b": "./the.js" } would chain-resolve #a to ./the.js; now it correctly fails, matching Node.js behavior.

  • Move cachedJoin/cachedDirname/createCachedBasename caches from module-level globals to per-Resolver instances. This prevents unbounded memory growth in long-running processes — when a Resolver is garbage collected, its join/dirname/basename caches are released with it. (by @​xiaoxiaojx in #507)

  • Fixed when tsconfig: true is used (default config file) and no tsconfig.json exists. (by @​xiaoxiaojx in #502)

  • Apply the extensionAlias option to the imports field to be align with typescript resolution. (by @​alexander-akait in #549)

  • Improved performance of the many plugins. (by @​alexander-akait in #529)

  • Replace the Set<string>-based resolver stack with a singly-linked StackEntry class that exposes a Set-compatible API. (by @​xiaoxiaojx in #526)

    Each doResolve call now prepends a single linked-list node instead of cloning the entire Set, making stack push O(1) in time and memory. Recursion detection walks the linked list (O(n)), but because the stack is typically shallow this is much cheaper than cloning a Set per call.

  • Cache the result of stripJsonComments + JSON.parse in readJson using a WeakMap keyed by the raw file buffer. This avoids redundant comment-stripping and JSON parsing on every resolve call that reads tsconfig.json files (via stripComments: true), improving TsconfigPathsPlugin warm performance by ~20-35% depending on the depth of the extends chain. (by @​xiaoxiaojx in #524)

  • Avoid OOM in CachedInputFileSystem when duration is Infinity. (by @​alexander-akait in #527)

v5.20.1

Patch Changes

Changelog

Sourced from enhanced-resolve's changelog.

5.21.0

Minor Changes

  • Added promise API and support to resolve without context and resolveContext. (by @​alexander-akait in #520)

  • Add extensionAliasForExports option. When true, extensionAlias also applies to paths resolved through the package.json exports field. Off by default to match Node.js; opt in for full TypeScript-resolver parity with packages that ship .ts sources alongside the compiled .js they declare in exports. (by @​alexander-akait in #554)

Patch Changes

  • Properly handle DOS device paths (\\?\… and \\.\…). (by @​alexander-akait in #551)

  • Prevent fallback to parent node_modules when the exports field target file is not found. (by @​xiaoxiaojx in #495)

  • Imports field spec deviation: non-relative targets (e.g. "#a": "#b") no longer re-enter imports resolution, aligning with the Node.js ESM spec where PACKAGE_IMPORTS_RESOLVE does not recursively resolve # specifiers. (by @​xiaoxiaojx in #503)

    Previously { "#a": "#b", "#b": "./the.js" } would chain-resolve #a to ./the.js; now it correctly fails, matching Node.js behavior.

  • Move cachedJoin/cachedDirname/createCachedBasename caches from module-level globals to per-Resolver instances. This prevents unbounded memory growth in long-running processes — when a Resolver is garbage collected, its join/dirname/basename caches are released with it. (by @​xiaoxiaojx in #507)

  • Fixed when tsconfig: true is used (default config file) and no tsconfig.json exists. (by @​xiaoxiaojx in #502)

  • Apply the extensionAlias option to the imports field to be align with typescript resolution. (by @​alexander-akait in #549)

  • Improved performance of the many plugins. (by @​alexander-akait in #529)

  • Replace the Set<string>-based resolver stack with a singly-linked StackEntry class that exposes a Set-compatible API. (by @​xiaoxiaojx in #526)

    Each doResolve call now prepends a single linked-list node instead of cloning the entire Set, making stack push O(1) in time and memory. Recursion detection walks the linked list (O(n)), but because the stack is typically shallow this is much cheaper than cloning a Set per call.

  • Cache the result of stripJsonComments + JSON.parse in readJson using a WeakMap keyed by the raw file buffer. This avoids redundant comment-stripping and JSON parsing on every resolve call that reads tsconfig.json files (via stripComments: true), improving TsconfigPathsPlugin warm performance by ~20-35% depending on the depth of the extends chain. (by @​xiaoxiaojx in #524)

  • Avoid OOM in CachedInputFileSystem when duration is Infinity. (by @​alexander-akait in #527)

5.20.1

Patch Changes

Commits
  • 35035ca chore(release): new release (#496)
  • fd688b1 perf: cache conditionalMapping + per-plugin description-file lookups (#556)
  • 26f15b0 fix(path): classify DOS device paths as Windows-absolute (#551)
  • a04bc4c docs: add resolvePromise examples for Resolver and ResolverFactory (#555)
  • f9f6d57 Merge pull request #554 from webpack/claude/fix-extension-alias-alignment-xC6sZ
  • c1319d1 chore: regenerate types.d.ts after option rename
  • 5a00e63 refactor: rename applyExtensionAliasToExportsField to extensionAliasForExports
  • f5adeee test(alias): guard that absolute path aliasing is not skipped (#553)
  • faa178f fix(TsconfigPathsPlugin): give references priority over main paths (#552)
  • e82275d test(imports/exports): cover query and fragment in field resolution
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for enhanced-resolve since your current version.


Updates es-module-lexer from 2.0.0 to 2.1.0

Release notes

Sourced from es-module-lexer's releases.

2.1.0

What's Changed

New Contributors

Full Changelog: guybedford/es-module-lexer@2.0.0...2.1.0

Commits

Updates loader-runner from 4.3.1 to 4.3.2

Release notes

Sourced from loader-runner's releases.

v4.3.2

Performance

  • Improved performance in many places.
Commits

Updates tapable from 2.3.0 to 2.3.3

Release notes

Sourced from tapable's releases.

v2.3.3

Patch Changes

v2.3.2

Patch Changes

v2.3.1

Patch Changes

Changelog

Sourced from tapable's changelog.

2.3.3

Patch Changes

2.3.2

Patch Changes

2.3.1

Patch Changes

Commits
  • 4296012 chore(release): new release (#222)
  • 780b3c0 fix: preserve custom tap options dropped by _tap fast path (#227)
  • 5da5021 chore: test refactor + change changelog entry (#226)
  • 2ba184c fix(perf): more perf
  • 9e9ae4d fix(perf): improve (#224)
  • 4e24645 test: improve code coverage with additional test cases
  • 2a304ae test: add tinybench benchmarks and CodSpeed CI (#217)
  • 0ec6d24 docs: expand API reference to address issue #49 (#221)
  • edb1d12 docs: describe each hook class in the README and add small examples
  • a2b0d37 chore(deps-dev): bump prettier in the dependencies group (#219)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for tapable since your current version.


Updates terser-webpack-plugin from 5.3.17 to 5.5.0

Release notes

Sourced from terser-webpack-plugin's releases.

v5.5.0

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

5.5.0 (2026-04-23)

Features

  • support extractComments in swcMinify (#665) (03143d3)

v5.4.0

5.4.0 (2026-03-10)

Features

  • added ability to minimize JSON using jsonMinify (#657) (29ac915)
Changelog

Sourced from terser-webpack-plugin's changelog.

5.5.0 (2026-04-23)

Features

  • support extractComments in swcMinify (#665) (03143d3)

5.4.0 (2026-03-10)

Features

  • added ability to minimizer JSON using jsonMinify (#657) (29ac915)
Commits

Updates webpack-sources from 3.3.4 to 3.4.0

Release notes

Sourced from webpack-sources's releases.

v3.4.0

Minor Changes

  • Add Source.prototype.buffers() that returns the source as Buffer[]. ConcatSource, CachedSource, and CompatSource implement it without allocating an intermediate concatenated buffer, allowing consumers that can write multiple buffers at once (e.g. via writev) to avoid the overhead of Buffer.concat in deeply nested sources. (by @​alexander-akait in #204)

Patch Changes

  • fix: use Int32Array for signed VLQ delta accumulation in readMappings so cumulative values that go negative are preserved instead of wrapping to a large unsigned integer (by @​alexander-akait in #206)

  • Improved performance in many places. (by @​alexander-akait in #209)

Changelog

Sourced from webpack-sources's changelog.

3.4.0

Minor Changes

  • Add Source.prototype.buffers() that returns the source as Buffer[]. ConcatSource, CachedSource, and CompatSource implement it without allocating an intermediate concatenated buffer, allowing consumers that can write multiple buffers at once (e.g. via writev) to avoid the overhead of Buffer.concat in deeply nested sources. (by @​alexander-akait in #204)

Patch Changes

  • fix: use Int32Array for signed VLQ delta accumulation in readMappings so cumulative values that go negative are preserved instead of wrapping to a large unsigned integer (by @​alexander-akait in #206)

  • Improved performance in many places. (by @​alexander-akait in #209)

Commits
  • 7c520c2 chore(release): new release (#205)
  • e130653 fix: improve performance in many places (#209)
  • ccfbc65 fix: improve performance in many places (#203)
  • fdb229e test: stabilize prefix-source getPrefix() and original() cases (#207)
  • c53b3e0 ci: fix (#208)
  • adf17ec fix: use Int32Array for signed VLQ delta accumulation in readMappings (#206)
  • 9788e55 feat: add buffers() method returning Buffer[] (#204)
  • 58420d1 fix: improve performance in many places (#199)
  • 2081a31 chore(deps): bump the dependencies group with 3 updates (#202)
  • d2c883e chore(deps-dev): bump the dependencies group with 4 updates (#201)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for webpack-sources since your current version.


Updates @changesets/cli from 2.30.0 to 2.31.0

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.31.0

Minor Changes

  • #1889 96ca062 Thanks @​mixelburg! - Error on unsupported flags for individual CLI commands and print the matching command usage to make mistakes easier to spot.

  • #1873 42943b7 Thanks @​mixelburg! - Respond to --help on all subcommands. Previously, --help was only handled when it was the sole argument; passing it alongside a subcommand (e.g. changeset version --help) would silently execute the command instead. Now --help always exits early and prints per-command usage when a known subcommand is provided, or the general help text otherwise.

Patch Changes

  • d2121dc Thanks @​Andarist! - Fix npm auth for path-based registries during publish by preserving configured registry URLs instead of normalizing them.

  • #1888 036fdd4 Thanks @​mixelburg! - Fix several changeset version issues with workspace protocol dependencies. Valid explicit workspace: ranges and aliases are no longer rewritten unnecessarily, and workspace path references are handled correctly during versioning.

  • #1903 5c4731f Thanks @​Andarist! - Gracefully handle stale npm info data leading to duplicate publish attempts.

  • #1867 f61e716 Thanks @​Andarist! - Improved detection for published state of prerelease-only packages without latest dist-tag on GitHub Packages registry.

  • Updated dependencies [036fdd4, 036fdd4, 036fdd4]:

    • @​changesets/assemble-release-plan@​6.0.10
    • @​changesets/get-dependents-graph@​2.1.4
    • @​changesets/apply-release-plan@​7.1.1
    • @​changesets/get-release-plan@​4.0.16
    • @​changesets/config@​3.1.4
Commits
  • 9cce6db Version Packages (#1897)
  • d2121dc Fix npm auth for path-based registries during publish by preserving configure...
  • 036fdd4 Fix several changeset version issues with workspace protocol dependencies (...
  • 5c4731f Gracefully handle stale npm info data leading to duplicate publish attempts...
  • 96ca062 Error on unsupported flags for individual CLI commands (#1889)
  • 42943b7 fix(cli): respond to --help on all subcommands (#1873)
  • f61e716 Improved detection for published state of prerelease-only packages without ...
  • See full diff in compare view

Updates @codspeed/core from 5.2.0 to 5.4.0

Release notes

Sourced from @​codspeed/core's releases.

v5.4.0

What's Changed

This release adds first support for macOS walltime.

Please note that profiling and other instruments are not yet available on macOS and will come in a later update.

Full Changelog: CodSpeedHQ/codspeed-node@v5.3.0...v5.4.0

v5.3.0

What's Changed

We now collect buildtime and runtime environment data to warn users about differences in their runtime environment when comparing two runs against one another.

This data includes toolchain metadata like version and build options, as well as a list of dynamically loaded linked libraries.

Full Changelog: CodSpeedHQ/codspeed-node@v5.2.0...v5.3.0

Commits
  • aa9d127 v5.4.0
  • 42a33dd ci: add workflow_dispatch to test the release pipeline
  • eb04a2e feat: add darwin pre-build to the release pipeline
  • f41f338 feat: bump instrument-hooks to use int32_t as pid
  • e6a55ce ci: add macos integration test
  • adc689a chore: bump node-gyp to support python 3.12+
  • 7c97dc2 v5.3.0
  • 6b2a012 chore: bump instrument-hooks to dump linked libraries
  • c157255 feat: dump node process information when running
  • 4f97cbe feat(ci): add memory profiling
  • See full diff in compare view

Updates @types/node from 25.3.3 to 25.6.0

Commits

Updates assemblyscript from 0.28.9 to 0.28.16

Release notes

Sourced from assemblyscript's releases.

v0.28.16

New features

  • properly parse and resolve tuples (#3018) (a5112aa25a6c1699c773fe279a31e2921012078b) Co-authored-by: Max Graey maxgraey@gmail.com

Bug fixes

  • forbidden override between generic function and concrete function (#3014) (ffada5a3542eb311d271dfb8c5c37c7c173aa0d8)

v0.28.15

Bug fixes

  • update unicode identifier tables to Unicode 17.0 (#3017) (bf7f95916b97e6d60c45e37d5d2f1c4dbb07db87)

v0.28.14

Bug fixes

  • report error when generic method attempts to implement non-generic interface method (#3007) (2180c8cd32e5eba973ac78e42e6d4c775ee549d9)

Other

  • chore: update some CI workflows (#3011) (8c392f004abfca6f52e5e7a4b8f3cd130eec12c7)
  • chore: Add AI-polices for contributions (#3009) (c91247d8b7a0bfd6a7a2525f0810c8be0ab538ae)

v0.28.13

Bug fixes

  • npm run build failed due to web build error (#3005) (be8e56d524a4deccfb6f2242b93a6d30fcf1a589) Co-authored-by: Max Graey maxgraey@gmail.com

v0.28.12

Bug fixes

  • compiler crashed when duplicate inner function declared in function body (#3000) (40037f56cbfef6104569ed2ad67095e5ad161825)
  • use common type for numeric check on binary subtraction (#3003) (fed7ffaf025dcfe2fc77317adb74b0d57810e51d)
  • return previous color state from setColorsEnabled (#3002) (9ffcf258a2305ad87fbb09b99f86b0f6920549ae)

Other

  • chore: update npm deps. Migrate to new eslint config. Minor fixes (#2996) (04eba49c71731dc231ac796d1f0a1f0983b4e45b)

v0.28.11

Bug fixes

  • compiler crashed when callback signature has void as parameter (#2998) (327423bdb85fe57cf935f925c0863591b343b6a1)

v0.28.10

Bug fixes

... (truncated)

Commits
  • a5112aa feat: properly parse and resolve tuples (#3018)
  • ffada5a fix: forbidden override between generic function and concrete function (#3014)
  • bf7f959 fix: update unicode identifier tables to Unicode 17.0 (#3017)
  • 2180c8c fix: report error when generic method attempts to implement non-generic inter...
  • 8c392f0 chore: update some CI workflows (#3011)
  • c91247d chore: Add AI-polices for contributions (#3009)
  • be8e56d fix: npm run build failed due to web build error (#3005)
  • 40037f5 fix: compiler crashed when duplicate inner function declared in function body...
  • 04eba49 chore: update npm deps. Migrate to new eslint config. Minor fixes (#2996)
  • fed7ffa fix: use common type for numeric check on binary subtraction (#3003)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for assemblyscript since your current version.


Updates babel-loader from 10.0.0 to 10.1.1

Release notes

Sourced from babel-loader's releases.

v10.1.1

What's Changed

Full Changelog: babel/babel-loader@v10.1.0...v10.1.1

v10.1.0

What's Changed

New Contributors

Full Changelog: babel/babel-loader@v10.0.0...v10.1.0

Commits

Updates core-js from 3.48.0 to 3.49.0

Changelog

Sourced from core-js's changelog.

3.49.0 - 2026.03.16

  • Changes v3.48.0...v3.49.0 (373 commits)
  • Iterator.range updated following the actual spec version
    • Throw a RangeError on NaN start / end / step
    • Allow null as optionOrStep
  • Improved accuracy of Math.{ asinh, atanh } polyfills with big and small values
  • Improved accuracy of Number.prototype.toExponential polyfills with big and small values
  • Improved performance of atob, btoa, Uint8Array.fromHex, Uint8Array.prototype.setFromHex, and Uint8Array.prototype.toHex, #1503, #1464, #1510, thanks @​johnzhou721
  • Minor performance optimization polyfills of methods from Map upsert proposal
  • Polyfills of methods from Map upsert proposal from the pure version made generic to make it work with polyfilled and native collections
  • Wrap Symbol.for in Symbol.prototype.description polyfill for correct handling of empty string descriptions
  • Fixed a modern Safari bug in Array.prototype.includes with sparse arrays and fromIndex
  • Fixed one more case (Iterator.prototype.take) of a V8 ~ Chromium < 126 bug
  • Forced replacement of Iterator.{ concat, zip, zipKeyed } in the pure version for ensuring proper wrapped Iterator instances as the result
  • Fixed proxying .return() on exhausted iterator from some methods of iterator helpers polyfill to the underlying iterator
  • Fixed double .return() calling in case of throwing error in this method in the internal iterate helper that affected some polyfills
  • Fixed closing iterator on IteratorValue errors in the internal iterate helper that affected some polyfills
  • Fixed iterator closing in Array.from poly...

    Description has been truncated

…pdates

Bumps the dependencies group with 36 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [browserslist](https://github.com/browserslist/browserslist) | `4.28.1` | `4.28.2` |
| [enhanced-resolve](https://github.com/webpack/enhanced-resolve) | `5.20.0` | `5.21.0` |
| [es-module-lexer](https://github.com/guybedford/es-module-lexer) | `2.0.0` | `2.1.0` |
| [loader-runner](https://github.com/webpack/loader-runner) | `4.3.1` | `4.3.2` |
| [terser-webpack-plugin](https://github.com/webpack/terser-webpack-plugin) | `5.3.17` | `5.5.0` |
| [webpack-sources](https://github.com/webpack/webpack-sources) | `3.3.4` | `3.4.0` |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.30.0` | `2.31.0` |
| [@codspeed/core](https://github.com/CodSpeedHQ/codspeed-node) | `5.2.0` | `5.4.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.3.3` | `25.6.0` |
| [assemblyscript](https://github.com/AssemblyScript/assemblyscript) | `0.28.9` | `0.28.16` |
| [babel-loader](https://github.com/babel/babel-loader) | `10.0.0` | `10.1.1` |
| [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) | `3.48.0` | `3.49.0` |
| [eslint-config-webpack](https://github.com/webpack/eslint-config-webpack) | `4.9.3` | `4.9.5` |
| [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) | `30.2.0` | `30.3.0` |
| [jest-circus](https://github.com/jestjs/jest/tree/HEAD/packages/jest-circus) | `30.2.0` | `30.3.0` |
| [jest-diff](https://github.com/jestjs/jest/tree/HEAD/packages/jest-diff) | `30.2.0` | `30.3.0` |
| [jest-environment-node](https://github.com/jestjs/jest/tree/HEAD/packages/jest-environment-node) | `30.2.0` | `30.3.0` |
| [less](https://github.com/less/less.js) | `4.5.1` | `4.6.4` |
| [less-loader](https://github.com/webpack/less-loader) | `12.3.1` | `12.3.2` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `16.3.2` | `16.4.0` |
| [lodash](https://github.com/lodash/lodash) | `4.17.23` | `4.18.1` |
| [lodash-es](https://github.com/lodash/lodash) | `4.17.23` | `4.18.1` |
| [memfs](https://github.com/streamich/memfs) | `4.56.11` | `4.57.2` |
| [mini-css-extract-plugin](https://github.com/webpack/mini-css-extract-plugin) | `2.10.0` | `2.10.2` |
| [node-gyp](https://github.com/nodejs/node-gyp) | `12.2.0` | `12.3.0` |
| [oxc-parser](https://github.com/oxc-project/oxc/tree/HEAD/napi/parser) | `0.116.0` | `0.128.0` |
| [pkg-pr-new](https://github.com/stackblitz-labs/pkg.pr.new/tree/HEAD/packages/cli) | `0.0.65` | `0.0.68` |
| [prettier](https://github.com/prettier/prettier) | `3.8.1` | `3.8.3` |
| [pug](https://github.com/pugjs/pug) | `3.0.3` | `3.0.4` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.4` | `19.2.5` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.4` | `19.2.5` |
| [simple-git](https://github.com/steveukx/git-js/tree/HEAD/simple-git) | `3.32.3` | `3.36.0` |
| [terser](https://github.com/terser/terser) | `5.46.0` | `5.46.2` |
| [three](https://github.com/mrdoob/three.js) | `0.183.2` | `0.184.0` |
| [tinybench](https://github.com/tinylibs/tinybench) | `6.0.0` | `6.0.1` |
| [ts-loader](https://github.com/TypeStrong/ts-loader) | `9.5.4` | `9.5.7` |



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

Updates `enhanced-resolve` from 5.20.0 to 5.21.0
- [Release notes](https://github.com/webpack/enhanced-resolve/releases)
- [Changelog](https://github.com/webpack/enhanced-resolve/blob/main/CHANGELOG.md)
- [Commits](webpack/enhanced-resolve@v5.20.0...v5.21.0)

Updates `es-module-lexer` from 2.0.0 to 2.1.0
- [Release notes](https://github.com/guybedford/es-module-lexer/releases)
- [Commits](guybedford/es-module-lexer@2.0.0...2.1.0)

Updates `loader-runner` from 4.3.1 to 4.3.2
- [Release notes](https://github.com/webpack/loader-runner/releases)
- [Commits](webpack/loader-runner@v4.3.1...v4.3.2)

Updates `tapable` from 2.3.0 to 2.3.3
- [Release notes](https://github.com/webpack/tapable/releases)
- [Changelog](https://github.com/webpack/tapable/blob/main/CHANGELOG.md)
- [Commits](webpack/tapable@v2.3.0...v2.3.3)

Updates `terser-webpack-plugin` from 5.3.17 to 5.5.0
- [Release notes](https://github.com/webpack/terser-webpack-plugin/releases)
- [Changelog](https://github.com/webpack/terser-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](webpack/terser-webpack-plugin@v5.3.17...v5.5.0)

Updates `webpack-sources` from 3.3.4 to 3.4.0
- [Release notes](https://github.com/webpack/webpack-sources/releases)
- [Changelog](https://github.com/webpack/webpack-sources/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack-sources@v3.3.4...v3.4.0)

Updates `@changesets/cli` from 2.30.0 to 2.31.0
- [Release notes](https://github.com/changesets/changesets/releases)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/cli@2.30.0...@changesets/cli@2.31.0)

Updates `@codspeed/core` from 5.2.0 to 5.4.0
- [Release notes](https://github.com/CodSpeedHQ/codspeed-node/releases)
- [Commits](CodSpeedHQ/codspeed-node@v5.2.0...v5.4.0)

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

Updates `assemblyscript` from 0.28.9 to 0.28.16
- [Release notes](https://github.com/AssemblyScript/assemblyscript/releases)
- [Commits](AssemblyScript/assemblyscript@v0.28.9...v0.28.16)

Updates `babel-loader` from 10.0.0 to 10.1.1
- [Release notes](https://github.com/babel/babel-loader/releases)
- [Changelog](https://github.com/babel/babel-loader/blob/main/CHANGELOG.md)
- [Commits](babel/babel-loader@v10.0.0...v10.1.1)

Updates `core-js` from 3.48.0 to 3.49.0
- [Release notes](https://github.com/zloirock/core-js/releases)
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zloirock/core-js/commits/v3.49.0/packages/core-js)

Updates `eslint-config-webpack` from 4.9.3 to 4.9.5
- [Release notes](https://github.com/webpack/eslint-config-webpack/releases)
- [Changelog](https://github.com/webpack/eslint-config-webpack/blob/main/CHANGELOG.md)
- [Commits](webpack/eslint-config-webpack@v4.9.3...v4.9.5)

Updates `globals` from 17.4.0 to 17.5.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.4.0...v17.5.0)

Updates `jest` from 30.2.0 to 30.3.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.3.0/packages/jest)

Updates `jest-circus` from 30.2.0 to 30.3.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.3.0/packages/jest-circus)

Updates `jest-cli` from 30.2.0 to 30.3.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.3.0/packages/jest-cli)

Updates `jest-diff` from 30.2.0 to 30.3.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.3.0/packages/jest-diff)

Updates `jest-environment-node` from 30.2.0 to 30.3.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.3.0/packages/jest-environment-node)

Updates `less` from 4.5.1 to 4.6.4
- [Release notes](https://github.com/less/less.js/releases)
- [Changelog](https://github.com/less/less.js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/less/less.js/commits)

Updates `less-loader` from 12.3.1 to 12.3.2
- [Release notes](https://github.com/webpack/less-loader/releases)
- [Changelog](https://github.com/webpack/less-loader/blob/main/CHANGELOG.md)
- [Commits](webpack/less-loader@v12.3.1...v12.3.2)

Updates `lint-staged` from 16.3.2 to 16.4.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v16.3.2...v16.4.0)

Updates `lodash` from 4.17.23 to 4.18.1
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.23...4.18.1)

Updates `lodash-es` from 4.17.23 to 4.18.1
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.23...4.18.1)

Updates `memfs` from 4.56.11 to 4.57.2
- [Release notes](https://github.com/streamich/memfs/releases)
- [Changelog](https://github.com/streamich/memfs/blob/master/CHANGELOG.md)
- [Commits](streamich/memfs@v4.56.11...v4.57.2)

Updates `mini-css-extract-plugin` from 2.10.0 to 2.10.2
- [Release notes](https://github.com/webpack/mini-css-extract-plugin/releases)
- [Changelog](https://github.com/webpack/mini-css-extract-plugin/blob/main/CHANGELOG.md)
- [Commits](webpack/mini-css-extract-plugin@v2.10.0...v2.10.2)

Updates `node-gyp` from 12.2.0 to 12.3.0
- [Release notes](https://github.com/nodejs/node-gyp/releases)
- [Changelog](https://github.com/nodejs/node-gyp/blob/main/CHANGELOG.md)
- [Commits](nodejs/node-gyp@v12.2.0...v12.3.0)

Updates `oxc-parser` from 0.116.0 to 0.128.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/napi/parser/CHANGELOG.md)
- [Commits](https://github.com/oxc-project/oxc/commits/crates_v0.128.0/napi/parser)

Updates `pkg-pr-new` from 0.0.65 to 0.0.68
- [Commits](https://github.com/stackblitz-labs/pkg.pr.new/commits/v0.0.68/packages/cli)

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

Updates `pretty-format` from 30.2.0 to 30.3.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.3.0/packages/pretty-format)

Updates `pug` from 3.0.3 to 3.0.4
- [Release notes](https://github.com/pugjs/pug/releases)
- [Commits](https://github.com/pugjs/pug/compare/pug@3.0.3...pug@3.0.4)

Updates `react` from 19.2.4 to 19.2.5
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react)

Updates `react-dom` from 19.2.4 to 19.2.5
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react-dom)

Updates `simple-git` from 3.32.3 to 3.36.0
- [Release notes](https://github.com/steveukx/git-js/releases)
- [Changelog](https://github.com/steveukx/git-js/blob/main/simple-git/CHANGELOG.md)
- [Commits](https://github.com/steveukx/git-js/commits/simple-git@3.36.0/simple-git)

Updates `terser` from 5.46.0 to 5.46.2
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](terser/terser@v5.46.0...v5.46.2)

Updates `three` from 0.183.2 to 0.184.0
- [Release notes](https://github.com/mrdoob/three.js/releases)
- [Commits](https://github.com/mrdoob/three.js/commits)

Updates `tinybench` from 6.0.0 to 6.0.1
- [Release notes](https://github.com/tinylibs/tinybench/releases)
- [Commits](tinylibs/tinybench@v6.0.0...v6.0.1)

Updates `ts-loader` from 9.5.4 to 9.5.7
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/main/CHANGELOG.md)
- [Commits](TypeStrong/ts-loader@v9.5.4...v9.5.7)

---
updated-dependencies:
- dependency-name: browserslist
  dependency-version: 4.28.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: enhanced-resolve
  dependency-version: 5.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: es-module-lexer
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: loader-runner
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tapable
  dependency-version: 2.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: terser-webpack-plugin
  dependency-version: 5.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: webpack-sources
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@changesets/cli"
  dependency-version: 2.31.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@codspeed/core"
  dependency-version: 5.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-version: 25.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: assemblyscript
  dependency-version: 0.28.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: babel-loader
  dependency-version: 10.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: core-js
  dependency-version: 3.49.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint-config-webpack
  dependency-version: 4.9.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: globals
  dependency-version: 17.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jest
  dependency-version: 30.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jest-circus
  dependency-version: 30.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jest-cli
  dependency-version: 30.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jest-diff
  dependency-version: 30.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jest-environment-node
  dependency-version: 30.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: less
  dependency-version: 4.6.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: less-loader
  dependency-version: 12.3.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: lint-staged
  dependency-version: 16.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: lodash
  dependency-version: 4.18.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: lodash-es
  dependency-version: 4.18.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: memfs
  dependency-version: 4.57.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mini-css-extract-plugin
  dependency-version: 2.10.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: node-gyp
  dependency-version: 12.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: oxc-parser
  dependency-version: 0.128.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pkg-pr-new
  dependency-version: 0.0.68
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: prettier
  dependency-version: 3.8.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pretty-format
  dependency-version: 30.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pug
  dependency-version: 3.0.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react-dom
  dependency-version: 19.2.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: simple-git
  dependency-version: 3.36.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: terser
  dependency-version: 5.46.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: three
  dependency-version: 0.184.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tinybench
  dependency-version: 6.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ts-loader
  dependency-version: 9.5.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 29, 2026

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants