Skip to content

chore(deps-dev): bump the build group across 1 directory with 3 updates#1375

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/build-8a37550fc9
Open

chore(deps-dev): bump the build group across 1 directory with 3 updates#1375
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/build-8a37550fc9

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 17, 2026

Copy link
Copy Markdown
Contributor

Bumps the build group with 3 updates in the / directory: @rspack/cli, @rspack/core and web-ext.

Updates @rspack/cli from 2.1.2 to 2.1.4

Release notes

Sourced from @​rspack/cli's releases.

v2.1.4

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 👇
</tr></table>

... (truncated)

Commits

Updates @rspack/core from 2.1.2 to 2.1.4

Release notes

Sourced from @​rspack/core's releases.

v2.1.4

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 👇
</tr></table>

... (truncated)

Commits

Updates web-ext from 10.4.0 to 10.5.0

Release notes

Sourced from web-ext's releases.

10.5.0 (2026-07-10)

main changes

  • Added: add a --enterprise CLI flag to the lint command (#3770)
  • Added: log the response data when a PATCH request fails (#3746)
  • Added: new Firefox 153.0b2 schema for web-ext lint

dependencies

  • Updated: dependency @babel/runtime to 8.0.0 (#3749)
  • Updated: dependency addons-linter to 10.8.0 (#3772)
  • Updated: dependency watchpack to 2.5.2 (#3742)
  • Updated: dependencies uuid and istanbul-lib-processinfo (#3745)

dev dependencies

  • Updated: dependency fs-extra to 11.3.6 (#3768)
  • Updated: dependency globals to 17.7.0 (#3761)
  • Updated: dependency prettier to 3.9.4 (#3769)
  • Updated: dependency undici to 7.28.0 (#3743)

others

  • Drop commitlint in this project (#3765)
  • Remove outdated entry in .nsprc (#3773)
  • Upgrade Babel to v8 (#3762)
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the build group with 3 updates in the / directory: [@rspack/cli](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack-cli), [@rspack/core](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack) and [web-ext](https://github.com/mozilla/web-ext).


Updates `@rspack/cli` from 2.1.2 to 2.1.4
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v2.1.4/packages/rspack-cli)

Updates `@rspack/core` from 2.1.2 to 2.1.4
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v2.1.4/packages/rspack)

Updates `web-ext` from 10.4.0 to 10.5.0
- [Release notes](https://github.com/mozilla/web-ext/releases)
- [Commits](mozilla/web-ext@10.4.0...10.5.0)

---
updated-dependencies:
- dependency-name: "@rspack/cli"
  dependency-version: 2.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: build
- dependency-name: "@rspack/core"
  dependency-version: 2.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: build
- dependency-name: web-ext
  dependency-version: 10.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: build
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jul 17, 2026
@dependabot
dependabot Bot requested review from a team and lidel as code owners July 17, 2026 12:59
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jul 17, 2026
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants