Skip to content

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

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 23, 2024

This PR contains the following updates:

Package Change Age Confidence
@babel/types (source) ^7.28.1 -> ^7.28.2 age confidence
@sxzz/eslint-config ^7.0.6 -> ^7.1.2 age confidence
@sxzz/test-utils ^0.5.7 -> ^0.5.9 age confidence
@types/node (source) ^24.0.14 -> ^24.2.0 age confidence
@vitejs/plugin-vue (source) ^6.0.0 -> ^6.0.1 age confidence
@vue/language-core (source) ^3.0.3 -> ^3.0.5 age confidence
bumpp ^10.2.0 -> ^10.2.2 age confidence
eslint (source) ^9.31.0 -> ^9.32.0 age confidence
pnpm (source) 10.13.1 -> 10.14.0 age confidence
tsdown ^0.13.0-beta.2 -> ^0.13.3 age confidence
typescript (source) ~5.8.3 -> ~5.9.2 age confidence
typescript (source) ^5.8.3 -> ^5.9.2 age confidence
unplugin-oxc ^0.4.6 -> ^0.4.9 age confidence
unplugin-vue ^7.0.0 -> ^7.0.1 age confidence
vite (source) ^7.0.5 -> ^7.1.0 age confidence
vue (source) ^3.5.17 -> ^3.5.18 age confidence
vue-tsc (source) ^3.0.3 -> ^3.0.5 age confidence

Release Notes

babel/babel (@​babel/types)

v7.28.2

Compare Source

🐛 Bug Fix
  • babel-types
  • babel-helpers, babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator, babel-preset-env, babel-runtime-corejs3
sxzz/eslint-config (@​sxzz/eslint-config)

v7.1.2

Compare Source

   🚀 Features
    View changes on GitHub

v7.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.1.0

Compare Source

   🚀 Features
    View changes on GitHub
sxzz/test-utils (@​sxzz/test-utils)

v0.5.9

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.5.8

Compare Source

   🚀 Features
    View changes on GitHub
vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v6.0.1

Bug Fixes
Performance Improvements
Miscellaneous Chores
Build System
vuejs/language-tools (@​vue/language-core)

v3.0.5

Compare Source

Features
  • feat(language-core): introduce compileSFCStyle to provide style related infomation (#​5548) - Thanks to @​KazariEX!
  • feat(language-service): completion snippet for v-for (#​5553) - Thanks to @​KazariEX!
Bug Fixes
  • fix(language-core): generate modelModifiers for explicitly declared default model name (#​5558) - Thanks to @​KazariEX!
  • fix(language-service): more responsive .value insertion
  • fix(vscode): add class scope fallback for component semantic tokens (#​5559) - Thanks to @​KazariEX!
  • fix(vscode): make sure extension is loaded immediately
  • fix(language-service): only check globalTypesPath for FS files
  • fix(vscode): handle fail tsserver requests to avoid memory leak
  • fix(vscode): do not delay the execution of restartExtensionHost
  • fix(language-core): avoid references highlight of unrelated native element tags (#​5563) - Thanks to @​KazariEX!
  • fix(language-core): tolerance for incomplete root template tag
  • fix(language-core): enable navigation code feature on directive modifiers - Thanks to @​KazariEX!
Other Changes

v3.0.4

Compare Source

Features
  • feat(language-service): check casing when dropping component into template - Thanks to @​KazariEX!
  • feat(language-service): native completion experience for slot names (#​5552) - Thanks to @​KazariEX!
Bug Fixes
  • fix(language-core): avoid clearing global types path when local compiler options is present - Thanks to @​KazariEX!
  • fix(language-core): do not evaluate skipTemplateCodegen when exposing $slots - Thanks to @​KazariEX!
  • fix(language-service): correct kind and order of component completion items - Thanks to @​KazariEX!
  • fix(component-meta): filter events out of props (#​5547) - Thanks to @​Akryum!
Other Changes
  • refactor(language-core): allow configuring checkUnknownEvents and checkUnknownComponents in sfc (#​5537) - Thanks to @​KazariEX!
  • chore(language-service): add restart server hint to global types warning - Thanks to @​KazariEX!
antfu-collective/bumpp (bumpp)

v10.2.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v10.2.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
eslint/eslint (eslint)

v9.32.0

Compare Source

pnpm/pnpm (pnpm)

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.
rolldown/tsdown (tsdown)

v0.13.3

Compare Source

   🚨 Minor Breaking Changes
  • dts.build option should be enable manually for tsc -b  -  by @​sxzz (13146)
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.13.2

Compare Source

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

v0.13.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.13.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
microsoft/TypeScript (typescript)

v5.9.2

Compare Source

unplugin/unplugin-oxc (unplugin-oxc)

v0.4.9

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.4.8

Compare Source

No significant changes

    View changes on GitHub

v0.4.7

Compare Source

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

v7.0.1

Compare Source

No significant changes

    View changes on GitHub
vitejs/vite (vite)

v7.1.0

Compare Source

Features
  • support files with more than 1000 lines by generateCodeFrame (#​20508) (e7d0b2a)
Bug Fixes
Tests

v7.0.6

Compare Source

Bug Fixes
Miscellaneous Chores
Code Refactoring
vuejs/core (vue)

v3.5.18

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.

Copy link

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

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from d43e2c4 to e818216 Compare September 30, 2024 16:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f1c8083 to 0191804 Compare October 2, 2024 16:48
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Oct 2, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from df47a27 to b7bac67 Compare October 10, 2024 14:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from e068d57 to ac47f26 Compare October 16, 2024 16:05
@renovate renovate bot reopened this Jul 21, 2025
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update dependency @types/node to ^24.0.15 Jul 21, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d0a7c32 to 73a9930 Compare July 21, 2025 05:27
@renovate renovate bot changed the title chore(deps): update dependency @types/node to ^24.0.15 chore(deps): update all non-major dependencies Jul 21, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 0d8d4e3 to 5749d11 Compare July 23, 2025 02:00
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Jul 23, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from e6f8867 to 0ab5239 Compare July 31, 2025 02:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 39b0db2 to 98910aa Compare August 5, 2025 09:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 98910aa to 9ec10c7 Compare August 7, 2025 09:02
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