Skip to content

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

Merged
chenjiahan merged 1 commit intomainfrom
renovate/all-non-major
Jun 16, 2025
Merged

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

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jun 16, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@swc/core (source) ^1.11.31 -> ^1.12.1 age adoption passing confidence
@types/node (source) ^22.15.30 -> ^22.15.31 age adoption passing confidence
@types/react (source) ^19.1.6 -> ^19.1.8 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^8.33.1 -> ^8.34.0 age adoption passing confidence
@typescript-eslint/parser (source) ^8.33.1 -> ^8.34.0 age adoption passing confidence
@vanilla-extract/css (source) 1.17.3 -> 1.17.4 age adoption passing confidence
@vanilla-extract/css (source) ^1.17.3 -> ^1.17.4 age adoption passing confidence
@vanilla-extract/sprinkles (source) ^1.6.4 -> ^1.6.5 age adoption passing confidence
@vanilla-extract/webpack-plugin (source) ^2.3.20 -> ^2.3.22 age adoption passing confidence
core-js (source) 3.42.0 -> 3.43.0 age adoption passing confidence
element-plus (source) ^2.10.1 -> ^2.10.2 age adoption passing confidence
fastify (source) ^5.3.3 -> ^5.4.0 age adoption passing confidence
lint-staged 16.1.0 -> 16.1.2 age adoption passing confidence
lucide-react (source) ^0.513.0 -> ^0.515.0 age adoption passing confidence
postcss (source) 8.5.4 -> 8.5.5 age adoption passing confidence
preact (source) 10.26.8 -> 10.26.9 age adoption passing confidence
preact (source) ^10.26.8 -> ^10.26.9 age adoption passing confidence
sass 1.89.1 -> 1.89.2 age adoption passing confidence
styled-components (source) 6.1.18 -> 6.1.19 age adoption passing confidence
styled-components (source) ^6.1.18 -> ^6.1.19 age adoption passing confidence
tailwindcss (source) 4.1.8 -> 4.1.10 age adoption passing confidence
ts-checker-rspack-plugin ^1.1.3 -> ^1.1.4 age adoption passing confidence
vant (source) ^4.9.19 -> ^4.9.20 age adoption passing confidence

Release Notes

swc-project/swc (@​swc/core)

v1.12.1

Compare Source

Bug Fixes
Features

v1.12.0

Compare Source

Bug Fixes
Documentation
Features
Miscellaneous Tasks
  • (plugin/runner) Update virtual-fs to dedupe dependencies (#​10594) (de667bb)
Refactor
Testing
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.34.0

Compare Source

🩹 Fixes
  • typescript-estree: add validation to interface extends (#​11271)
❤️ Thank You
  • Tao

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

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

v8.34.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.

vanilla-extract-css/vanilla-extract (@​vanilla-extract/css)

v1.17.4

Compare Source

Patch Changes
vanilla-extract-css/vanilla-extract (@​vanilla-extract/sprinkles)

v1.6.5

Compare Source

Patch Changes
vanilla-extract-css/vanilla-extract (@​vanilla-extract/webpack-plugin)

v2.3.22

Compare Source

Patch Changes

v2.3.21

Compare Source

Patch Changes
zloirock/core-js (core-js)

v3.43.0

Compare Source

  • Changes v3.42.0...v3.43.0 (139 commits)
  • Explicit Resource Management proposals:
    • Built-ins:
      • Symbol.dispose
      • Symbol.asyncDispose
      • SuppressedError
      • DisposableStack
        • DisposableStack.prototype.dispose
        • DisposableStack.prototype.use
        • DisposableStack.prototype.adopt
        • DisposableStack.prototype.defer
        • DisposableStack.prototype.move
        • DisposableStack.prototype[@​@​dispose]
      • AsyncDisposableStack
        • AsyncDisposableStack.prototype.disposeAsync
        • AsyncDisposableStack.prototype.use
        • AsyncDisposableStack.prototype.adopt
        • AsyncDisposableStack.prototype.defer
        • AsyncDisposableStack.prototype.move
        • AsyncDisposableStack.prototype[@​@​asyncDispose]
      • Iterator.prototype[@​@​dispose]
      • AsyncIterator.prototype[@​@​asyncDispose]
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Array.fromAsync proposal:
    • Built-ins:
      • Array.fromAsync
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Error.isError proposal:
    • Built-ins:
      • Error.isError
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Added Joint iteration stage 2.7 proposal:
    • Added built-ins:
      • Iterator.zip
      • Iterator.zipKeyed
  • Added Iterator chunking stage 2 proposal:
    • Added built-ins:
      • Iterator.prototype.chunks
      • Iterator.prototype.windows
  • Number.prototype.clamp proposal:
  • Always check regular expression flags by flags getter PR. Native methods are not fixed, only own implementation updated for:
    • RegExp.prototype[@​@​match]
    • RegExp.prototype[@​@​replace]
  • Improved handling of RegExp flags in polyfills of some methods in engines without proper support of RegExp.prototype.flags and without polyfill of this getter
  • Added feature detection for a WebKit bug that occurs when this is updated while Set.prototype.difference is being executed
  • Added feature detection for a WebKit bug that occurs when iterator record of a set-like object isn't called before cloning this in the following methods:
    • Set.prototype.symmetricDifference
    • Set.prototype.union
  • Added feature detection for a bug in V8 ~ Chromium < 126. Following methods should throw an error on invalid iterator:
    • Iterator.prototype.drop
    • Iterator.prototype.filter
    • Iterator.prototype.flatMap
    • Iterator.prototype.map
  • Added feature detection for a WebKit bug: incorrect exception thrown by Iterator.from when underlying iterator's return method is null
  • Added feature detection for a FF bug: incorrect exception thrown by Array.prototype.with when index coercion fails
  • Added feature detection for a WebKit bug: TypedArray.prototype.with should truncate negative fractional index to zero, but instead throws an error
  • Worked around a bug of many different tools (example) with incorrect transforming and breaking JS syntax on getting a method from a number literal
  • Fixed deoptimization of the Promise polyfill in the pure version
  • Added some missed dependencies to /iterator/flat-map entries
  • Some other minor fixes and improvements
  • Compat data improvements:
    • Added Deno 2.3 and Deno 2.3.2 compat data mapping
    • Updated Electron 37 compat data mapping
    • Added Opera Android 90 compat data mapping
    • Error.isError marked not supported in Node because of a bug
    • Set.prototype.difference marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Set.prototype.{ symmetricDifference, union } marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Iterator.from marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Iterators closing on early errors in Iterator helpers marked as implemented from FF141
    • Array.prototype.with marked as supported only from FF140 because it throws an incorrect exception when index coercion fails
    • TypedArray.prototype.with marked as unsupported in Bun and Safari because it should truncate negative fractional index to zero, but instead throws an error
    • DisposableStack and AsyncDisposableStack marked as shipped in FF141 (SuppressedError has a bug)
    • AsyncDisposableStack bugs marked as fixed in Deno 2.3.2
    • SuppressedError bugs (extra arguments support and arity) marked as fixed in Bun 1.2.15
element-plus/element-plus (element-plus)

v2.10.2

Compare Source

2.10.2

2025-06-13

Features
Bug fixes
fastify/fastify (fastify)

v5.4.0

Compare Source

What's Changed

Full Changelog: fastify/fastify@v5.3.3...v5.4.0

lint-staged/lint-staged (lint-staged)

v16.1.2

Compare Source

Patch Changes
  • #​1570 a7c0c88 Thanks @​ItsNickBarry! - When using --diff-filter with the D option to include deleted staged files, lint-staged no longer tries to stage the deleted files, unless they're no longer deleted. Previously this caused an error from git add like fatal: pathspec 'deleted-file' did not match any files.

  • 38f942e Thanks @​iiroj! - Removed an extraneous log entry that printed shouldHidePArtiallyStagedFiles to console output.

v16.1.1

Compare Source

Patch Changes
  • #​1565 3686977 Thanks @​iiroj! - Lint-staged now explicitly warns about potential data loss when using --no-stash.

  • #​1571 02299a9 Thanks @​iiroj! - Function tasks (introduced in v16.0.0) only received the staged files matching the conpmnfigured glob, instead of all staged files.

  • #​1563 bc61c74 Thanks @​iiroj! - This version fixes incorrect behavior where unstaged changes were committed when using the --no-stash option. This happened because --no-stash implied --no-hide-partially-staged, meaning unstaged changes to files which also had other staged changes were added to the commit by lint-staged; this is no longer the case.

    The previous (incorrect) behavior can still be achieved by using both options --no-stash --no-hide-partially-staged at the same time.

lucide-icons/lucide (lucide-react)

v0.515.0: Version 0.515.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.514.0...0.515.0

v0.514.0: Version 0.514.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.513.0...0.514.0

postcss/postcss (postcss)

v8.5.5

Compare Source

  • Fixed package.jsonexports compatibility with some tools (by @​JounQin).
preactjs/preact (preact)

v10.26.9

Compare Source

Fixes

Maintenance

sass/dart-sass (sass)

v1.89.2

Compare Source

Embedded Host
  • Fixed a compilation error caused by an outdated buf dependency.
styled-components/styled-components (styled-components)


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 ef9d6f8 into main Jun 16, 2025
4 checks passed
@chenjiahan chenjiahan deleted the renovate/all-non-major branch June 16, 2025 01:23
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