Skip to content

chore(deps): update npm-dev-dependencies (main) - #2129

Merged
mineralsfree merged 1 commit into
mainfrom
renovate/main-npm-dev-dependencies
Aug 10, 2026
Merged

chore(deps): update npm-dev-dependencies (main)#2129
mineralsfree merged 1 commit into
mainfrom
renovate/main-npm-dev-dependencies

Conversation

@mender-test-bot

@mender-test-bot mender-test-bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@rspack/cli (source) 2.1.32.1.8 age confidence
@rspack/core (source) 2.1.32.1.8 age confidence
@rspack/dev-server 2.1.02.2.0 age confidence
@testing-library/jest-dom 7.0.07.0.1 age confidence
@testing-library/user-event 14.6.114.6.3 age confidence
@types/react (source) 19.2.1719.2.18 age confidence
@types/react-dom (source) 19.2.319.2.4 age confidence
@vitejs/plugin-react (source) 6.0.36.0.5 age confidence
eslint (source) 10.8.010.8.1 age confidence
globals 17.8.017.9.0 age confidence

Release Notes

web-infra-dev/rspack (@​rspack/cli)

v2.1.8

Compare Source

Highlights
Persistent cache storage options now align with webpack

Rspack now supports cache.name and cache.storage.location, aligning with webpack's persistent cache semantics. cache.storage.directory is now the base directory, while the final cache location defaults to <directory>/<cache.name>. Default cache paths remain unchanged.

If you previously used storage.directory as the exact cache path, migrate it to storage.location. Existing cache data is not migrated automatically.

cache: {
  type: 'persistent',
  storage: {
    type: 'filesystem',
-   directory: '/custom/cache',
+   location: '/custom/cache',
  },
}
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
  • refactor(binding): replace compilation pointers with compilation ids by @​SyMind in #​14988
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspack@v2.1.7...v2.1.8

v2.1.7

Compare Source

Notice: The import.meta.env experimental feature introduced in Rspack 2.1.6 has been removed in Rspack 2.1.7.

What's Changed
Performance 🚀
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rspack@v2.1.6...v2.1.7

v2.1.6

Compare Source

What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspack@v2.1.5...v2.1.6

v2.1.5

Compare Source

What's Changed
Bug Fixes 🐞
Refactor 🔨
Other Changes

Full Changelog: web-infra-dev/rspack@v2.1.4...v2.1.5

v2.1.4

Compare Source

Highlights
Fine-grained import.meta parser options

module.parser.javascript.importMeta now accepts an object so each known import.meta property can be configured independently, on top of the existing true / false / 'preserve-unknown' values. Properties set to false are preserved for runtime evaluation, omitted properties keep their default behavior, and unknown properties are preserved. Both webpack-compatible keys (dirname, filename, main, url, webpack, webpackContext) and Rspack-specific keys (rspackHash, rspackPublicPath, glob, ...) are supported.

export default {
  module: {
    parser: {
      javascript: {
        importMeta: {
          // keep `import.meta.url` for runtime evaluation
          url: false,
          // keep the compile-time replacement of `import.meta.webpack`
          webpack: true,
        },
      },
    },
  },
};
Static worker URL output

module.parser.javascript.worker now accepts an object form with alias and url, alongside the existing boolean and string[] forms. With url: 'new-url-relative' and output.module enabled, Rspack emits a static new URL() expression for new Worker(new URL(..., import.meta.url)) instead of runtime code, honoring output.publicPath and output.workerPublicPath.

export default {
  output: {
    module: true,
    chunkFilename: '[name].bundle.js',
  },
  module: {
    parser: {
      javascript: {
        worker: {
          url: 'new-url-relative',
        },
      },
    },
  },
};
new Worker(new URL('./worker.js', import.meta.url));

// would become 👇
new Worker(new URL('./worker.bundle.js', import.meta.url));
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspack@v2.1.3...v2.1.4

rstackjs/rspack-dev-server (@​rspack/dev-server)

v2.2.0

Compare Source

What's Changed

Full Changelog: rstackjs/rspack-dev-server@v2.1.0...v2.2.0

testing-library/jest-dom (@​testing-library/jest-dom)

v7.0.1

Compare Source

Bug Fixes
testing-library/user-event (@​testing-library/user-event)

v14.6.3

Compare Source

Bug Fixes
vitejs/vite-plugin-react (@​vitejs/plugin-react)

v6.0.5

Compare Source

Fixed the react compiler preset filter to be linear (#​1353)

The improved filter in v6.0.3 was non-linear and caused a performance regression (#​1349). The filter was changed to be linear to avoid that.

v6.0.4

Compare Source

Fixed $RefreshSig$ is not defined error when running vite dev with NODE_ENV=production

When running vite dev with NODE_ENV=production, the app errored with $RefreshSig$ is not defined.
This error is now fixed.

eslint/eslint (eslint)

v10.8.1

Compare Source

Bug Fixes

  • 18eb0a7 fix: prevent ASI hazard in no-unused-labels autofix (#​21173) (dongkyu lee)
  • 151ba3f fix: false positives in getter-return and accessor-pairs (#​21163) (Grit)
  • 6898df9 fix: ignore meta-property names in id-denylist (#​21166) (Pixel)
  • 4d7db66 fix: ignore meta-property names in id-match (#​21167) (Pixel)
  • 677214e fix: handle ASI hazards in no-unused-vars removeVar suggestion (#​20935) (kuldeep kumar)

Documentation

  • 7d0cbf8 docs: Update README (GitHub Actions Bot)
  • 0a05812 docs: add missing backticks to no-duplicate-imports.js (#​21183) (Lee Daeun)
  • 678c90b docs: Update README (GitHub Actions Bot)
  • 8a10424 docs: Update README (GitHub Actions Bot)
  • 69bb948 docs: Update README (GitHub Actions Bot)

Chores

sindresorhus/globals (globals)

v17.9.0

Compare Source



Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "after 10pm on Monday,before 6am on Tuesday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

@mender-test-bot
mender-test-bot requested a review from a team as a code owner August 4, 2026 03:11
@mender-test-bot
mender-test-bot force-pushed the renovate/main-npm-dev-dependencies branch 5 times, most recently from 3917cb4 to 1153727 Compare August 10, 2026 03:01
@mineralsfree mineralsfree self-assigned this Aug 10, 2026
@mineralsfree mineralsfree changed the title chore(deps): update npm-dev-dependencies (main) rebase!chore(deps): update npm-dev-dependencies (main) Aug 10, 2026
Signed-off-by: mender-test-bot <mender@northern.tech>
Signed-off-by: mender-test-bot <mender@northern.tech>
@mender-test-bot
mender-test-bot force-pushed the renovate/main-npm-dev-dependencies branch from 1153727 to 03ac361 Compare August 10, 2026 10:52
@mender-test-bot mender-test-bot changed the title rebase!chore(deps): update npm-dev-dependencies (main) chore(deps): update npm-dev-dependencies (main) Aug 10, 2026
@codecov

codecov Bot commented Aug 10, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@mineralsfree
mineralsfree merged commit 597b443 into main Aug 10, 2026
2 checks passed
@mineralsfree
mineralsfree deleted the renovate/main-npm-dev-dependencies branch August 10, 2026 11:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants