Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #74

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 27, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/parser (source) ^7.26.9 -> ^7.27.0 age adoption passing confidence
@babel/types (source) ^7.26.9 -> ^7.27.0 age adoption passing confidence
@types/node (source) ^22.13.10 -> ^22.13.14 age adoption passing confidence
@types/react (source) ^19.0.10 -> ^19.0.12 age adoption passing confidence
@unocss/reset (source) ^66.1.0-beta.3 -> ^66.1.0-beta.8 age adoption passing confidence
@vitejs/plugin-vue (source) ^5.2.1 -> ^5.2.3 age adoption passing confidence
@vue-macros/reactivity-transform (source) ^3.0.0-beta.3 -> ^3.0.0-beta.7 age adoption passing confidence
bumpp ^10.0.3 -> ^10.1.0 age adoption passing confidence
eslint (source) ^9.22.0 -> ^9.23.0 age adoption passing confidence
pnpm (source) 10.6.1 -> 10.7.0 age adoption passing confidence
tsdown ^0.6.4 -> ^0.6.10 age adoption passing confidence
unocss (source) ^66.1.0-beta.3 -> ^66.1.0-beta.8 age adoption passing confidence
unplugin ^2.2.0 -> ^2.2.2 age adoption passing confidence
unplugin-auto-import ^19.1.1 -> ^19.1.2 age adoption passing confidence
vite (source) ^6.2.1 -> ^6.2.4 age adoption passing confidence
vitest (source) ^3.0.8 -> ^3.1.1 age adoption passing confidence

Release Notes

babel/babel (@​babel/parser)

v7.27.0

Compare Source

v7.27.0 (2025-03-24)

Thanks @​ishchhabra and @​vovkasm for your first PRs!

👓 Spec Compliance
🚀 New Feature
🐛 Bug Fix
  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
  • babel-traverse
  • babel-helpers, babel-preset-typescript, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-cli
  • babel-plugin-transform-named-capturing-groups-regex, babel-types
🏃‍♀️ Performance
Committers: 5

v7.26.10

Compare Source

v7.26.10 (2025-03-11)

Thanks @​jordan-choi and @​mmmsssttt404 for your first PRs!

This release includes a fix for GHSA-968p-4wvh-cqc8, a security vulnerability which affects the .replace method of transpiled regular expressions that use named capturing groups.

👓 Spec Compliance
🐛 Bug Fix
💅 Polish
🏠 Internal
Committers: 6
babel/babel (@​babel/types)

v7.27.0

Compare Source

👓 Spec Compliance
🚀 New Feature
🐛 Bug Fix
  • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
  • babel-traverse
  • babel-helpers, babel-preset-typescript, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-cli
  • babel-plugin-transform-named-capturing-groups-regex, babel-types
🏃‍♀️ Performance

v7.26.10

Compare Source

👓 Spec Compliance
🐛 Bug Fix
💅 Polish
🏠 Internal
unocss/unocss (@​unocss/reset)

v66.1.0-beta.8

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v66.1.0-beta.7

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v66.1.0-beta.6

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v66.1.0-beta.5

Compare Source

   🐞 Bug Fixes
  • preset-wind4: Replace invaild autocomplete template  -  by @​zyyv (89eba)
    View changes on GitHub

v66.1.0-beta.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v5.2.3

v5.2.2

vue-macros/vue-macros (@​vue-macros/reactivity-transform)

v3.0.0-beta.7

Compare Source

   🚨 Breaking Changes
   🐞 Bug Fixes
    View changes on GitHub

v3.0.0-beta.6

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v3.0.0-beta.5

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v3.0.0-beta.4

Compare Source

   🚀 Features
    View changes on GitHub
antfu-collective/bumpp (bumpp)

v10.1.0

Compare Source

   🚀 Features
    View changes on GitHub
eslint/eslint (eslint)

v9.23.0

Compare Source

pnpm/pnpm (pnpm)

v10.7.0

Compare Source

Minor Changes
  • pnpm config get and list also show settings set in pnpm-workspace.yaml files #​9316.

  • It should be possible to use env variables in pnpm-workspace.yaml setting names and value.

  • Add an ability to patch dependencies by version ranges. Exact versions override version ranges, which in turn override name-only patches. Version range * is the same as name-only, except that patch application failure will not be ignored.

    For example:

    patchedDependencies:
      foo: patches/foo-1.patch
      foo@^2.0.0: patches/foo-2.patch
      [email protected]: patches/foo-3.patch

    The above configuration would apply patches/foo-3.patch to [email protected], patches/foo-2.patch to all foo versions which satisfy ^2.0.0 except 2.1.0, and patches/foo-1.patch to the remaining foo versions.

    [!WARNING]
    The version ranges should not overlap. If you want to specialize a sub range, make sure to exclude it from the other keys. For example:

    # pnpm-workspace.yaml
    patchedDependencies:
      # the specialized sub range
      '[email protected]': patches/foo.2.2.0-2.8.0.patch
      # the more general patch, excluding the sub range above
      'foo@>=2.0.0 <2.2.0 || >2.8.0': 'patches/foo.gte2.patch

    In most cases, however, it's sufficient to just define an exact version to override the range.

  • pnpm config set --location=project saves the setting to a pnpm-workspace.yaml file if no .npmrc file is present in the directory #​9316.

  • Rename pnpm.allowNonAppliedPatches to pnpm.allowUnusedPatches. The old name is still supported but it would print a deprecation warning message.

  • Add pnpm.ignorePatchFailures to manage whether pnpm would ignore patch application failures.

    If ignorePatchFailures is not set, pnpm would throw an error when patches with exact versions or version ranges fail to apply, and it would ignore failures from name-only patches.

    If ignorePatchFailures is explicitly set to false, pnpm would throw an error when any type of patch fails to apply.

    If ignorePatchFailures is explicitly set to true, pnpm would print a warning when any type of patch fails to apply.

Patch Changes
  • Remove dependency paths from audit output to prevent out-of-memory errors #​9280.

v10.6.5

Compare Source

v10.6.4: pnpm 10.6.4

Compare Source

Patch Changes

  • Fix pnpm dlx with --allow-build flag #​9263.
  • Invalid Node.js version in use-node-version should not cause pnpm itself to break #​9276.
  • The max amount of workers running for linking packages from the store has been reduced to 4 to achieve optimal results #​9286. The workers are performing many file system operations, so increasing the number of CPUs doesn't help performance after some point.

Platinum Sponsors

Bit Bit Syntax

Gold Sponsors

Discord u|screen
JetBrains Nx
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.

Copy link

stackblitz bot commented Nov 27, 2023

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 16 times, most recently from 8e9dc08 to 4ce05e5 Compare December 3, 2023 19:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 46bcdec to 8d8adcd Compare December 8, 2023 14:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 9bb06b3 to abeed9a Compare March 11, 2025 23:31
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Mar 11, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from c4f26b3 to 7a39218 Compare March 18, 2025 12:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 08abfbe to 0dbed53 Compare March 26, 2025 15:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f2adf16 to d70e134 Compare March 31, 2025 06:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d70e134 to 35adf1b Compare March 31, 2025 11:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants