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 Adoption Passing Confidence
@babel/types (source) ^7.27.0 -> ^7.27.1 age adoption passing confidence
@sxzz/eslint-config ^6.1.1 -> ^6.2.0 age adoption passing confidence
@sxzz/test-utils ^0.5.4 -> ^0.5.6 age adoption passing confidence
@types/node (source) ^22.14.1 -> ^22.15.3 age adoption passing confidence
@vue/language-core (source) ^2.2.8 -> ^2.2.10 age adoption passing confidence
ast-kit ^1.4.2 -> ^1.4.3 age adoption passing confidence
eslint (source) ^9.24.0 -> ^9.26.0 age adoption passing confidence
pnpm (source) 10.8.0 -> 10.10.0 age adoption passing confidence
tsdown ^0.6.10 -> ^0.10.2 age adoption passing confidence
tsx (source) ^4.19.3 -> ^4.19.4 age adoption passing confidence
unplugin-oxc ^0.3.3 -> ^0.3.6 age adoption passing confidence
unplugin-vue ^6.1.0 -> ^6.2.0 age adoption passing confidence
vite (source) ^6.2.6 -> ^6.3.4 age adoption passing confidence
vitest (source) ^3.1.1 -> ^3.1.2 age adoption passing confidence
vue-tsc (source) ^2.2.8 -> ^2.2.10 age adoption passing confidence

Release Notes

babel/babel (@​babel/types)

v7.27.1

Compare Source

👓 Spec Compliance
🐛 Bug Fix
  • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-traverse
  • babel-helper-wrap-function, babel-plugin-transform-async-to-generator
  • babel-helper-remap-async-to-generator, babel-plugin-transform-async-to-generator
  • babel-helper-fixtures, babel-parser
  • babel-generator, babel-parser
    • #​17226 Fill optional AST properties when both estree and typescript parser plugin are enabled (Part 2) (@​JLHwung)
  • babel-parser
  • babel-compat-data, babel-preset-env
  • babel-traverse
  • babel-generator
💅 Polish
  • babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining, babel-plugin-proposal-decorators, babel-plugin-transform-arrow-functions, babel-plugin-transform-class-properties, babel-plugin-transform-destructuring, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-chaining, babel-plugin-transform-parameters, babel-traverse
🏠 Internal
  • babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-compat-data, babel-preset-env
  • babel-compat-data, babel-standalone
  • Other
  • babel-register
  • babel-cli, babel-compat-data, babel-core, babel-generator, babel-helper-compilation-targets, babel-helper-fixtures, babel-helper-module-imports, babel-helper-module-transforms, babel-helper-plugin-test-runner, babel-helper-transform-fixture-test-runner, babel-helpers, babel-node, babel-parser, babel-plugin-transform-modules-amd, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-plugin-transform-modules-umd, babel-plugin-transform-react-display-name, babel-plugin-transform-regenerator, babel-plugin-transform-runtime, babel-plugin-transform-typeof-symbol, babel-plugin-transform-typescript, babel-preset-env, babel-register, babel-standalone, babel-types
  • babel-plugin-transform-regenerator
  • babel-helpers, babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator, babel-preset-env, babel-runtime-corejs3
  • babel-helpers, babel-plugin-transform-regenerator
  • babel-helpers
🔬 Output optimization
  • babel-helpers, babel-plugin-transform-modules-commonjs, babel-runtime-corejs3
  • babel-helpers, babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator, babel-preset-env, babel-runtime-corejs3
sxzz/eslint-config (@​sxzz/eslint-config)

v6.2.0

Compare Source

   🚀 Features
    View changes on GitHub

v6.1.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
sxzz/test-utils (@​sxzz/test-utils)

v0.5.6

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.5.5

Compare Source

   🚀 Features
    View changes on GitHub
vuejs/language-tools (@​vue/language-core)

v2.2.10

Compare Source

sxzz/ast-kit (ast-kit)

v1.4.3

Compare Source

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

v9.26.0

Compare Source

v9.25.1

Compare Source

v9.25.0

Compare Source

pnpm/pnpm (pnpm)

v10.10.0

Compare Source

Minor Changes
  • Allow loading the preResolution, importPackage, and fetchers hooks from local pnpmfile.
Patch Changes
  • Fix cd command, when shellEmulator is true #​7838.
  • Sort keys in pnpm-workspace.yaml #​9453.
  • Pass the npm_package_json environment variable to the executed scripts #​9452.
  • Fixed a mistake in the description of the --reporter=silent option.

v10.9.0

Compare Source

Minor Changes
  • Added support for installing JSR packages. You can now install JSR packages using the following syntax:

    pnpm add jsr:<pkg_name>
    

    or with a version range:

    pnpm add jsr:<pkg_name>@&#8203;<range>
    

    For example, running:

    pnpm add jsr:@&#8203;foo/bar
    

    will add the following entry to your package.json:

    {
      "dependencies": {
        "@&#8203;foo/bar": "jsr:^0.1.2"
      }
    }

    When publishing, this entry will be transformed into a format compatible with npm, older versions of Yarn, and previous pnpm versions:

    {
      "dependencies": {
        "@&#8203;foo/bar": "npm:@&#8203;jsr/foo__bar@^0.1.2"
      }
    }

    Related issue: #​8941.

    Note: The @jsr scope defaults to https://npm.jsr.io/ if the @jsr:registry setting is not defined.

  • Added a new setting, dangerouslyAllowAllBuilds, for automatically running any scripts of dependencies without the need to approve any builds. It was already possible to allow all builds by adding this to pnpm-workspace.yaml:

    neverBuiltDependencies: []

    dangerouslyAllowAllBuilds has the same effect but also allows to be set globally via:

    pnpm config set dangerouslyAllowAllBuilds true
    

    It can also be set when running a command:

    pnpm install --dangerously-allow-all-builds
    
Patch Changes
  • Fix a false negative in verifyDepsBeforeRun when nodeLinker is hoisted and there is a workspace package without dependencies and node_modules directory #​9424.
  • Explicitly drop verifyDepsBeforeRun support for nodeLinker: pnp. Combining verifyDepsBeforeRun and nodeLinker: pnp will now print a warning.

v10.8.1

Compare Source

Patch Changes
  • Removed bright white highlighting, which didn't look good on some light themes #​9389.
  • If there is no pnpm related configuration in package.json, onlyBuiltDependencies will be written to pnpm-workspace.yaml file #​9404.
rolldown/tsdown (tsdown)

v0.10.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.10.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.10.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
    View changes on GitHub

v0.9.9

Compare Source

   🚀 Features
   🏎 Performance
    View changes on GitHub

v0.9.8

Compare Source

   🚀 Features
    View changes on GitHub

v0.9.7

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.9.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.9.5

Compare Source

   🚀 Features
    View changes on GitHub

v0.9.4

Compare Source

   🚀 Features
    View changes on GitHub

v0.9.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.9.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.9.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.9.0

Compare Source

   🚨 Breaking Changes
  • Rename dts.isolatedDeclaration to dts.isolatedDeclarations  -  by @​sxzz (afc8e)
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.8.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.8.0

Compare Source

   🚀 Features
    View changes on GitHub

v0.7.5

Compare Source

No significant changes

    View changes on GitHub

v0.7.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.7.3

Compare Source

No significant changes

    View changes on GitHub

v0.7.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.7.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.7.0

Compare Source

   🚨 Breaking Changes
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
privatenumber/tsx (tsx)

v4.19.4

Compare Source

unplugin/unplugin-oxc (unplugin-oxc)

v0.3.6

Compare Source

   🚀 Features
    View changes on GitHub

v0.3.5

Compare Source

   🚀 Features
    View changes on GitHub

v0.3.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
unplugin/unplugin-vue (unplugin-vue)

v6.2.0

Compare Source

   🚀 Features
    View changes on GitHub
vitejs/vite (vite)

v6.3.4

Compare Source

v6.3.3

Compare Source

v6.3.2

Compare Source

v6.3.1

Compare Source

v6.3.0

Compare Source

v6.2.7

Compare Source

Please refer to CHANGELOG.md for details.

vitest-dev/vitest (vitest)

v3.1.2

Compare Source

   🚀 Features
   🐞 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 2 times, most recently from 679b969 to e068d57 Compare October 14, 2024 20:50
@renovate renovate bot changed the title fix(deps): update all non-major dependencies fix(deps): update all non-major dependencies - autoclosed Apr 14, 2025
@renovate renovate bot closed this Apr 14, 2025
@renovate renovate bot changed the title fix(deps): update all non-major dependencies - autoclosed fix(deps): update all non-major dependencies Apr 21, 2025
@renovate renovate bot reopened this Apr 21, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8d4eda3 to 67386f8 Compare April 21, 2025 01:51
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Apr 21, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 7f0fc9e to 3829352 Compare April 22, 2025 16:54
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Apr 22, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 4520dd0 to a262fdd Compare April 29, 2025 17:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 412bdf4 to 16b6ffd Compare April 30, 2025 16:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 16b6ffd to b935037 Compare May 2, 2025 23:36
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