Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 11, 2025

This PR contains the following updates:

Package Change Age Confidence
@sxzz/prettier-config ^2.2.3 -> ^2.2.4 age confidence
@types/node (source) ^22.16.5 -> ^22.18.1 age confidence
@types/semver (source) ^7.7.0 -> ^7.7.1 age confidence
@vue/repl ^4.6.2 -> ^4.7.0 age confidence
@vue/tsconfig ^0.7.0 -> ^0.8.1 age confidence
bumpp ^10.2.0 -> ^10.2.3 age confidence
element-plus (source) ^2.10.4 -> ^2.11.1 age confidence
eslint (source) ^9.32.0 -> ^9.34.0 age confidence
pnpm (source) 10.13.1 -> 10.15.1 age confidence
sass ^1.89.2 -> ^1.92.0 age confidence
typescript (source) ^5.8.3 -> ^5.9.2 age confidence
vue (source) ^3.5.18 -> ^3.5.21 age confidence

Release Notes

sxzz/prettier-config (@​sxzz/prettier-config)

v2.2.4

Compare Source

No significant changes

    View changes on GitHub
vuejs/repl (@​vue/repl)

v4.7.0

Compare Source

Bug Fixes
  • add support for custom elements for CompileScript (#​354) (c393b60)
  • only handle ./ prefix modules for ExportNamedDeclaration (#​327) (8cc908a)
Features

4.6.3 (2025-08-05)

4.6.2 (2025-07-16)

Bug Fixes

4.6.1 (2025-06-13)

Bug Fixes

v4.6.3

Compare Source

vuejs/tsconfig (@​vue/tsconfig)

v0.8.1

Compare Source

fix: do not turn on exactOptionalPropertyTypes for now [a235c5f]

Full Changelog: vuejs/tsconfig@v0.8.0...v0.8.1

v0.8.0

Compare Source

Breaking Changes

If you experience a significant number of type errors in your projects after upgrading to this version, you might want to consider a gradual approach to adopting the new options:

  • After upgrading to @vue/tsconfig, use supress-ts-errors (npx suppress-ts-errors && npx suppress-ts-errors vue src/**/*.vue) to insert @ts-expect-error comments in your current codebase.
  • This way, the stricter configuration will only apply to any new code you add, allowing you to address the existing errors later when you have more time.

Full Changelog: vuejs/tsconfig@v0.7.0...v0.8.0

antfu-collective/bumpp (bumpp)

v10.2.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v10.2.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v10.2.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
element-plus/element-plus (element-plus)

v2.11.1

Compare Source

2.11.1

2025-08-23

Bug fixes

v2.11.0

Compare Source

2.11.0

2025-08-22

Features
Bug fixes
Refactors

v2.10.7

Compare Source

2.10.7

2025-08-12

Features
Bug fixes

v2.10.6

Compare Source

2.10.6

2025-08-08

Features
Bug fixes
Refactors

v2.10.5

Compare Source

2.10.5

2025-08-01

Features
Bug fixes
Refactors
eslint/eslint (eslint)

v9.34.0

Compare Source

v9.33.0

Compare Source

pnpm/pnpm (pnpm)

v10.15.1

Compare Source

Patch Changes
  • Fix .pnp.cjs crash when importing subpath #​9904.
  • When resolving peer dependencies, pnpm looks whether the peer dependency is present in the root workspace project's dependencies. This change makes it so that the peer dependency is correctly resolved even from aliased npm-hosted dependencies or other types of dependencies #​9913.

v10.15.0

Compare Source

Minor Changes
  • Added the cleanupUnusedCatalogs configuration. When set to true, pnpm will remove unused catalog entries during installation #​9793.
  • Automatically load pnpmfiles from config dependencies that are named @*/pnpm-plugin-* #​9780.
  • pnpm config get now prints an INI string for an object value #​9797.
  • pnpm config get now accepts property paths (e.g. pnpm config get catalog.react, pnpm config get .catalog.react, pnpm config get 'packageExtensions["@​babel/parser"].peerDependencies["@​babel/types"]'), and pnpm config set now accepts dot-leading or subscripted keys (e.g. pnpm config set .ignoreScripts true).
  • pnpm config get --json now prints a JSON serialization of config value, and pnpm config set --json now parses the input value as JSON.
Patch Changes
  • Semi-breaking. When automatically installing missing peer dependencies, prefer versions that are already present in the direct dependencies of the root workspace package #​9835.
  • When executing the pnpm create command, must verify whether the node version is supported even if a cache already exists #​9775.
  • When making requests for the non-abbreviated packument, add */* to the Accept header to avoid getting a 406 error on AWS CodeArtifact #​9862.
  • The standalone exe version of pnpm works with glibc 2.26 again #​9734.
  • Fix a regression in which pnpm dlx pkg --help doesn't pass --help to pkg #​9823.

v10.14.0

Compare Source

Minor Changes
  • Added support for JavaScript runtime resolution

    Declare Node.js, Deno, or Bun in devEngines.runtime (inside package.json) and let pnpm download and pin it automatically.

    Usage example:

    {
      "devEngines": {
        "runtime": {
          "name": "node",
          "version": "^24.4.0",
          "onFail": "download" (we only support the "download" value for now)
        }
      }
    }

    How it works:

    1. pnpm install resolves your specified range to the latest matching runtime version.
    2. The exact version (and checksum) is saved in the lockfile.
    3. Scripts use the local runtime, ensuring consistency across environments.

    Why this is better:

    1. This new setting supports also Deno and Bun (vs. our Node-only settings useNodeVersion and executionEnv.nodeVersion)
    2. Supports version ranges (not just a fixed version).
    3. The resolved version is stored in the pnpm lockfile, along with an integrity checksum for future validation of the Node.js content's validity.
    4. It can be used on any workspace project (like executionEnv.nodeVersion). So, different projects in a workspace can use different runtimes.
    5. For now devEngines.runtime setting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer.

    Related PR: #​9755.

  • Add --cpu, --libc, and --os to pnpm install, pnpm add, and pnpm dlx to customize supportedArchitectures via the CLI #​7510.

Patch Changes
  • Fix a bug in which pnpm add downloads packages whose libc differ from pnpm.supportedArchitectures.libc.
  • The integrities of the downloaded Node.js artifacts are verified #​9750.
  • Allow dlx to parse CLI flags and options between the dlx command and the command to run or between the dlx command and -- #​9719.
  • pnpm install --prod should removing hoisted dev dependencies #​9782.
  • Fix an edge case bug causing local tarballs to not re-link into the virtual store. This bug would happen when changing the contents of the tarball without renaming the file and running a filtered install.
  • Fix a bug causing pnpm install to incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.
sass/dart-sass (sass)

v1.92.0

Compare Source

  • Breaking change: Emit declarations, childless at-rules, and comments in
    the order they appear in the source even when they're interleaved with nested
    rules. This obsoletes the mixed-decls deprecation.

  • Breaking change: The function name type() is now fully reserved for the
    plain CSS function. This means that @function definitions with the name
    type will produce errors, while function calls will be parsed as special
    function strings.

  • Configuring private variables using @use ... with, @forward ... with, and
    meta.load-css(..., $with: ...) is now deprecated. Private variables were
    always intended to be fully encapsulated within the module that defines them,
    and this helps enforce that encapsulation.

  • Fix a bug where @extend rules loaded through a mixture of @import and
    @use rules could fail to apply correctly.

Command-Line Interface
  • In --watch mode, delete the source map when the associated source file is
    deleted.

v1.91.0

Compare Source

  • Potentially breaking change: meta.inspect() (as well as other systems
    that use it such as @debug and certain error messages) now emits numbers
    with as high precision as is available instead of rounding to the nearest
    1e⁻¹⁰ as we do when serializing to CSS. This better fits the purpose of
    meta.inspect(), which is to provide full information about the structure of
    a Sass value.

  • Passing a rest argument ($arg...) before a positional or named argument when
    calling a function or mixin is now deprecated. This was always outside the
    specified syntax, but it was historically treated the same as passing the rest
    argument at the end of the argument list whether or not that matched the
    visual order of the arguments.

v1.90.0

Compare Source

  • Allow a @forwarded module to be loaded with a configuration when that module
    has already been loaded with a different configuration and the module
    doesn't define any variables that would have been configured anyway.
microsoft/TypeScript (typescript)

v5.9.2

Compare Source

vuejs/core (vue)

v3.5.21

Compare Source

Bug Fixes
Performance Improvements

v3.5.20

Compare Source

Bug Fixes

v3.5.19

Compare Source

Bug Fixes

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.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Aug 11, 2025
Copy link

vercel bot commented Aug 11, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
element-plus-playground Ready Ready Preview Comment Sep 4, 2025 2:15pm

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 02aa6c7 to 3f9a426 Compare August 12, 2025 03:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3f9a426 to c248fb7 Compare August 12, 2025 15:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c248fb7 to 0808e55 Compare August 15, 2025 08:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0808e55 to c2c7b95 Compare August 15, 2025 18:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c2c7b95 to 9c97871 Compare August 18, 2025 09:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9c97871 to b5c935f Compare August 19, 2025 22:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b5c935f to e552d5f Compare August 21, 2025 05:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e552d5f to 1370c61 Compare August 22, 2025 17:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1370c61 to cee12e4 Compare August 22, 2025 23:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cee12e4 to e033019 Compare August 23, 2025 02:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e033019 to c22e873 Compare August 25, 2025 10:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c22e873 to f1c7c21 Compare August 25, 2025 14:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f1c7c21 to 979e256 Compare August 25, 2025 23:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 979e256 to 168a252 Compare September 1, 2025 21:47
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