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

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 3, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxt/eslint-config (source) 1.1.0 -> 1.2.0 age adoption passing confidence
@types/node (source) 22.13.5 -> 22.13.10 age adoption passing confidence
@unhead/vue (source) 1.11.19 -> 1.11.20 age adoption passing confidence
expect-type 1.1.0 -> 1.2.0 age adoption passing confidence
pkg-types 2.0.1 -> 2.1.0 age adoption passing confidence
playwright-core (source) 1.50.1 -> 1.51.0 age adoption passing confidence
pnpm (source) 10.4.1 -> 10.6.1 age adoption passing confidence
typescript (source) 5.7.3 -> 5.8.2 age adoption passing confidence
unbuild 3.3.1 -> 3.5.0 age adoption passing confidence
unhead (source) 1.11.19 -> 1.11.20 age adoption passing confidence
vue-tsc (source) 2.2.4 -> 2.2.8 age adoption passing confidence

Release Notes

nuxt/eslint (@​nuxt/eslint-config)

v1.2.0

Compare Source

   🚀 Features
    View changes on GitHub
unjs/unhead (@​unhead/vue)

v1.11.20

Compare Source

No significant changes

    View changes on GitHub
mmkal/expect-type (expect-type)

v1.2.0

Compare Source

What's Changed

toMatchTypeOf is now deprecated. There are no plans to remove it any time soon, so it's not critical to immediately remove usages, but if you want to avoid squigglies in IDEs complaining about deprecations, here's what you should do:

If you have an assertion like this:

expectTypeOf(foo).toMatchTypeOf<Abc>()

There are a few options for upgrading it. The easiest is toExtend which is identical to the behaviour of toMatchTypeOf:

expectTypeOf(foo).toExtend<Abc>()

This will work in all cases. But, there is now a stricter option that will work in many cases and be slightly more likely to catch things like readonly properties matching:

expectTypeOf(foo).toMatchObjectType<Abc>()

But, as the name suggests, this will only work on plain object types, it will fail for union types, and some other complex types.


If you have code like this:

expectTypeOf(foo).toMatchTypeOf(bar)

You'll need to use typeof because toExtend and toMatchObjectType do not accept arguments

expectTypeOf(foo).toExtend<typeof bar>()
expectTypeOf(foo).toMatchObjectType<typeof bar>()

Full Changelog: mmkal/expect-type@v1.1.0...v1.2.0

unjs/pkg-types (pkg-types)

v2.1.0

Compare Source

compare changes

🚀 Enhancements
  • Git config utils (#​217)
  • findWorkspaceDir: Detect workspace files (#​219)
  • findWorkspaceDir: Configurable strategy (#​220)
🔥 Performance
  • findFile: Test input itself if matching filename (#​221)
🩹 Fixes
  • Avoid fallback if starting point cannot be resolved (#​216)
  • findWorkspaceDir: Update default strategy (#​222)
🏡 Chore
❤️ Contributors
microsoft/playwright (playwright-core)

v1.51.0

Compare Source

pnpm/pnpm (pnpm)

v10.6.1

Compare Source

Patch Changes
  • The pnpm CLI process should not stay hanging, when --silent reporting is used.
  • When --loglevel is set to error, don't show installation summary, execution time, and big tarball download progress.
  • Don't ignore pnpm.patchedDependencies from package.json #​9226.
  • When executing the approve-builds command, if package.json contains onlyBuiltDependencies or ignoredBuiltDependencies, the selected dependency package will continue to be written into package.json.
  • When a package version cannot be found in the package metadata, print the registry from which the package was fetched.

v10.6.0

Compare Source

Minor Changes
  • pnpm-workspace.yaml can now hold all the settings that .npmrc accepts. The settings should use camelCase #​9211.

    pnpm-workspace.yaml example:

    verifyDepsBeforeRun: install
    optimisticRepeatInstall: true
    publicHoistPattern:
      - "*types*"
      - "!@&#8203;types/react"
  • Projects using a file: dependency on a local tarball file (i.e. .tgz, .tar.gz, .tar) will see a performance improvement during installation. Previously, using a file: dependency on a tarball caused the lockfile resolution step to always run. The lockfile will now be considered up-to-date if the tarball is unchanged.

Patch Changes
  • pnpm self-update should not leave a directory with a broken pnpm installation if the installation fails.
  • fast-glob replace with tinyglobby to reduce the size of the pnpm CLI dependencies #​9169.
  • pnpm deploy should not remove fields from the deployed package's package.json file #​9215.
  • pnpm self-update should not read the pnpm settings from the package.json file in the current working directory.
  • Fix pnpm deploy creating a package.json without the imports and license field #​9193.
  • pnpm update -i should list only packages that have newer versions #​9206.
  • Fix a bug causing entries in the catalogs section of the pnpm-lock.yaml file to be removed when dedupe-peer-dependents=false on a filtered install. #​9112

v10.5.2

Compare Source

Patch Changes
  • The pnpm config set command should change the global .npmrc file by default.
    This was a regression introduced by #​9151 and shipped in pnpm v10.5.0.

v10.5.1

Compare Source

Patch Changes
  • Throw an error message if a pnpm-workspaces.yaml or pnpm-workspaces.yml file is found instead of a pnpm-workspace.yaml #​9170.
  • Fix the update of pnpm-workspace.yaml by the pnpm approve-builds command #​9168.
  • Normalize generated link paths in package.json #​9163
  • Specifying overrides in pnpm-workspace.yaml should work.
  • pnpm dlx should ignore settings from the package.json file in the current working directory #​9178.

v10.5.0

Compare Source

Minor Changes
  • Allow to set the "pnpm" settings from package.json via the pnpm-workspace.yaml file #​9121.

  • Added support for automatically syncing files of injected workspace packages after pnpm run #​9081. Use the sync-injected-deps-after-scripts setting to specify which scripts build the workspace package. This tells pnpm when syncing is needed. The setting should be defined in a .npmrc file at the root of the workspace. Example:

    sync-injected-deps-after-scripts[]=compile
  • The packages field in pnpm-workspace.yaml became optional.

Patch Changes
  • pnpm link with no parameters should work as if --global is specified #​9151.
  • Allow scope registry CLI option without --config. prefix such as --@&#8203;scope:registry=https://scope.example.com/npm #​9089.
  • pnpm link <path> should calculate relative path from the root of the workspace directory #​9132.
  • Fix a bug causing catalog snapshots to be removed from the pnpm-lock.yaml file when using --fix-lockfile and --filter. #​8639
  • Fix a bug causing catalog protocol dependencies to not re-resolve on a filtered install #​8638.
microsoft/TypeScript (typescript)

v5.8.2

Compare Source

unjs/unbuild (unbuild)

v3.5.0

Compare Source

compare changes

🚀 Enhancements
  • Use fix-dts-default-cjs-exports to transform cjs types (#​513)
🏡 Chore
❤️ Contributors

v3.4.2

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v3.4.1

Compare Source

compare changes

🩹 Fixes
  • Filter commonjs plugin when generating declaration (#​495)
❤️ Contributors

v3.4.0

Compare Source

compare changes

🚀 Enhancements
  • Prefer publishConfig from package.json when defined (#​506)
🩹 Fixes
  • Workaroud the composite in tsconfig.json (#​504)
📦 Build
  • Remove extra dist files (c0c00ad)
🏡 Chore
❤️ Contributors
vuejs/language-tools (vue-tsc)

v2.2.8

Compare Source

Bug Fixes
  • revert "fix(language-core): validate v-model variable against model type"

v2.2.6

Compare Source

Features
  • feat(language-core): infer prop JSDoc from defineModel's leading comments (#​5211) - Thanks to @​KazariEX!
Bug Fixes
  • fix(language-core): map camelized prop name correctly (#​5207) - Thanks to @​KazariEX!
  • fix(component-meta): resolve defineModel options to collect default value (#​5209) - Thanks to @​KazariEX!
  • fix(language-core): avoid duplicate generation of defineExpose's codes - Thanks to @​KazariEX!
  • fix(language-core): generate camelized prop name for defineModel (#​5213) - Thanks to @​KazariEX!
  • fix(language-core): validate v-model variable against model type (#​5214) - Thanks to @​KazariEX!
  • fix(language-core): use keywords instead of semicolons to separate script sections (#​5217) - Thanks to @​KazariEX!
Other Changes
  • ci: auto close issues with can't reproduce label - Thanks to @​KazariEX!
  • refactor(language-core): defer the calculation of linkedCodeMappings offsets (#​5220) - Thanks to @​KazariEX!

Configuration

📅 Schedule: Branch creation - "on Monday" (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

netlify bot commented Mar 3, 2025

Deploy Preview for friendly-lamington-fb5690 ready!

Name Link
🔨 Latest commit ae4d98e
🔍 Latest deploy log https://app.netlify.com/sites/friendly-lamington-fb5690/deploys/67cd8be63d580d000813261e
😎 Deploy Preview https://deploy-preview-701--friendly-lamington-fb5690.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 38c723d to 7c1feb8 Compare March 9, 2025 04:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7c1feb8 to ae4d98e Compare March 9, 2025 12:39
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