Skip to content

chore(deps): update all non-major dependencies#349

Merged
chenjiahan merged 1 commit intomainfrom
renovate/all-non-major
Sep 22, 2025
Merged

chore(deps): update all non-major dependencies#349
chenjiahan merged 1 commit intomainfrom
renovate/all-non-major

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Sep 22, 2025

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
@rsbuild/core (source) ^1.5.6 -> ^1.5.10 age confidence
@rspack/cli (source) 1.5.3 -> 1.5.5 age confidence
@rspack/core (source) 1.5.3 -> 1.5.5 age confidence
@rstest/core (source) 0.3.4 -> 0.4.1 age confidence
@types/node (source) ^22.18.3 -> ^22.18.6 age confidence
@typescript-eslint/eslint-plugin (source) ^8.43.0 -> ^8.44.0 age confidence
@typescript-eslint/parser (source) ^8.43.0 -> ^8.44.0 age confidence
element-plus (source) ^2.11.2 -> ^2.11.3 age confidence
esbuild 0.25.9 -> 0.25.10 age confidence
eslint (source) ^9.35.0 -> ^9.36.0 age confidence
pnpm (source) 10.16.1 -> 10.17.0 age confidence
rspack-manifest-plugin 5.0.3 -> 5.1.0 age confidence
rspack-manifest-plugin ^5.0.3 -> ^5.1.0 age confidence
rspress (source) ^1.45.5 -> ^1.45.6 age confidence
sass 1.92.1 -> 1.93.0 age confidence
taze ^19.6.0 -> ^19.7.0 age confidence
unplugin-vue-components ^29.0.0 -> ^29.1.0 age confidence

Release Notes

web-infra-dev/rsbuild (@​rsbuild/core)

v1.5.10

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.5.9...v1.5.10

v1.5.9

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Refactor 🔨
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.5.8...v1.5.9

v1.5.8

Compare Source

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

Full Changelog: web-infra-dev/rsbuild@v1.5.7...v1.5.8

v1.5.7

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rsbuild@v1.5.6...v1.5.7

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

v1.5.5

Compare Source

What's Changed

Bug Fixes 🐞
Document Updates 📖
Other Changes

Full Changelog: web-infra-dev/rspack@v1.5.4...v1.5.5

v1.5.4

Compare Source

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

Full Changelog: web-infra-dev/rspack@v1.5.3...v1.5.4

web-infra-dev/rstest (@​rstest/core)

v0.4.1

Compare Source

What's Changed

Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rstest@v0.4.0...v0.4.1

v0.4.0

Compare Source

Highlights 💡

Code coverage support 🎉

Rstest supports collecting code coverage and generating coverage reports using istanbul.

$ npx rstest --coverage

----------|---------|----------|---------|---------|-------------------
File      | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
----------|---------|----------|---------|---------|-------------------
All files |     100 |      100 |     100 |     100 |
 index.ts |     100 |      100 |     100 |     100 |
----------|---------|----------|---------|---------|-------------------

Learn more about Code coverage.

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rstest@v0.3.4...v0.4.0

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.44.0

Compare Source

🚀 Features
  • eslint-plugin: [await-thenable] report invalid (non-promise) values passed to promise aggregator methods (#​11267)
🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-conversion] ignore enum members (#​11490)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.44.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

element-plus/element-plus (element-plus)

v2.11.3

Compare Source

2.11.3

2025-09-19

Features
Bug fixes
Refactors
evanw/esbuild (esbuild)

v0.25.10

Compare Source

  • Fix a panic in a minification edge case (#​4287)

    This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value undefined in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):

    function identity(x) { return x }
    identity({ y: identity(123) })
  • Fix @supports nested inside pseudo-element (#​4265)

    When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as ::placeholder for correctness. The CSS nesting specification says the following:

    The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.

    However, it seems like this behavior is different for nested at-rules such as @supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:

    /* Original code */
    ::placeholder {
      color: red;
      body & { color: green }
      @​supports (color: blue) { color: blue }
    }
    
    /* Old output (with --supported:nesting=false) */
    ::placeholder {
      color: red;
    }
    body :is() {
      color: green;
    }
    @​supports (color: blue) {
       {
        color: blue;
      }
    }
    
    /* New output (with --supported:nesting=false) */
    ::placeholder {
      color: red;
    }
    body :is() {
      color: green;
    }
    @​supports (color: blue) {
      ::placeholder {
        color: blue;
      }
    }
eslint/eslint (eslint)

v9.36.0

Compare Source

pnpm/pnpm (pnpm)

v10.17.0

Compare Source

Minor Changes
  • The minimumReleaseAgeExclude setting now supports patterns. For instance:

    minimumReleaseAge: 1440
    minimumReleaseAgeExclude:
      - "@​eslint/*"

    Related PR: #​9984.

Patch Changes
  • Don't ignore the minimumReleaseAge check, when the package is requested by exact version and the packument is loaded from cache #​9978.
  • When minimumReleaseAge is set and the active version under a dist-tag is not mature enough, do not downgrade to a prerelease version in case the original version wasn't a prerelease one #​9979.
rspack-contrib/rspack-manifest-plugin (rspack-manifest-plugin)

v5.1.0

Compare Source

What's Changed

Full Changelog: rstackjs/rspack-manifest-plugin@v5.0.3...v5.1.0

web-infra-dev/rspress (rspress)

v1.45.6

Compare Source

What's Changed
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rspress@v1.45.5...1.45.6

sass/dart-sass (sass)

v1.93.0

Compare Source

  • Fix a crash when a style rule contains a nested @import, and the loaded file
    @uses a user-defined module as well as @includes a top-level mixin which
    emits top-level declarations.
JavaScript API
  • Release a @sass/types package which contains the type annotations used by
    both the sass and sass-embedded package without any additional code or
    dependencies.
antfu-collective/taze (taze)

v19.7.0

Compare Source

   🚀 Features
    View changes on GitHub
unplugin/unplugin-vue-components (unplugin-vue-components)

v29.1.0

Compare Source

   🚀 Features

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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 was generated by Mend Renovate. View the repository job log.

@chenjiahan chenjiahan merged commit 05f3ff0 into main Sep 22, 2025
4 checks passed
@chenjiahan chenjiahan deleted the renovate/all-non-major branch September 22, 2025 03:01
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.

1 participant