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 #1800

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 8, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@iconify-json/lucide ^1.2.32 -> ^1.2.33 age adoption passing confidence
@iconify-json/vscode-icons ^1.2.16 -> ^1.2.17 age adoption passing confidence
@nuxt/scripts ^0.11.2 -> ^0.11.5 age adoption passing confidence
@nuxthub/core (source) 0.8.18 -> 0.8.22 age adoption passing confidence
nuxt-llms ^0.1.1 -> ^0.1.2 age adoption passing confidence
nuxt-og-image (source) ^5.0.5 -> ^5.1.1 age adoption passing confidence
pnpm (source) 10.6.5 -> 10.7.0 age adoption passing confidence
vue-tsc (source) 2.2.2 -> 2.2.8 age adoption passing confidence
vue-tsc (source) ^2.2.2 -> ^2.2.8 age adoption passing confidence
wrangler (source) ^4.3.0 -> ^4.6.0 age adoption passing confidence

Release Notes

nuxt/scripts (@​nuxt/scripts)

v0.11.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.11.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.11.3

Compare Source

⚠️ If you're using Google Analytics or Google Tag Manager please verify data is still being collected.

ℹ️ If you're having type issues with these still, do a nuxi upgrade --force. Unhead 2.0.1 includes a fix for proxy.gtag.

   🐞 Bug Fixes
    View changes on GitHub
nuxt-hub/core (@​nuxthub/core)

v0.8.22

Compare Source

compare changes

🚀 Enhancements
  • ai: Support AI gateway in development too (#​522)
📖 Documentation
  • Disable llms-full.txt for now (30a521e)
🏡 Chore
  • Update deps (9bff98d)
  • Add postinstall script on playground (3622d09)
❤️ Contributors

v0.8.21

Compare Source

compare changes

🩹 Fixes
  • Typo safe-buffer -> safer-buffer (e09663b)
❤️ Contributors

v0.8.20

Compare Source

compare changes

🚀 Enhancements
  • Send file mime to multi-part upload (#​518)
🏡 Chore
  • Add alias for safe-buffer to node:buffer (39bc7ec)
❤️ Contributors

v0.8.19

Compare Source

compare changes

🩹 Fixes
  • blob: Missing content type on complete for multipart upload (#​517)
  • ai: Properly handle error data on streams (e97ee16)
📖 Documentation
  • Update @nuxt/content and remove custom content components (#​490)
  • Fix syntax highlight (c966784)
  • Add missing extension (c666b9c)
🏡 Chore
  • Set cloudflare.deployConfig to false in nitro (617f23d)
❤️ Contributors
nuxtlabs/nuxt-llms (nuxt-llms)

v0.1.2

Compare Source

compare changes

🩹 Fixes
  • Omit description if undefined (#​11)
  • hooks: Check if any hooks are registered before logging the deprecation warning (#​10)
  • Hooks warning check (7d627f4)
🏡 Chore
❤️ Contributors
nuxt-modules/og-image (nuxt-og-image)

v5.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v5.1.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
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.
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!

v2.2.4

Compare Source

Features
  • feat(language-service): map sfc compiler errors outside the template inner content (#​5045) - Thanks to @​KazariEX!
  • feat(language-core): introduce options to control type inference of $attrs, $el, $refs and $slots (#​5135) - Thanks to @​KazariEX!
  • feat(language-core): enhance single root nodes collection (#​4819) - Thanks to @​KazariEX!
Bug Fixes
  • fix(language-core): move generateSfcBlockSection to the end to fix missing comma errors (#​5184) - Thanks to @​zhiyuanzmj!
  • fix(language-core): handle edge case of default slot name mismatch - Thanks to @​KazariEX!
  • fix(language-core): combine dollar variable keys from the upper level interface - Thanks to @​KazariEX!
  • fix(language-core): hoist the variables that may cause TS4081 (#​5192) - Thanks to @​KazariEX!
  • fix(language-core): adjust regex match for @vue-generic to improve offset calculation (#​5193) - Thanks to @​Gehbt!
  • fix(language-core): correct codegen of native element refs - Thanks to @​KazariEX!
  • fix(language-core): ignore latex block content (#​5151) - Thanks to @​KazariEX!
  • fix(language-core): do not emit undefined for model with default value (#​5198) - Thanks to @​RylanBueckert-Broadsign!
  • fix(language-service): typescript-semantic renaming first in style blocks (#​4685) - Thanks to @​KazariEX!
  • fix(typescript-plugin): prevent removed components from appearing in the completion list - Thanks to @​KazariEX!
Other Changes
  • refactor(language-core): drop invalid v-scope implemention - Thanks to @​KazariEX!
  • refactor(language-core): improve type declaration of v-for - Thanks to @​KazariEX!
  • test: enable declaration to track more errors - Thanks to @​KazariEX!
  • refactor(language-core): remove semantic highlight of style module names - Thanks to @​KazariEX!
  • chore(language-core): add docs for @vue-expect-error support (#​5176) - Thanks to @​machty!
  • ci: upload extension as artifact for each commit - Thanks to @​KazariEX!
cloudflare/workers-sdk (wrangler)

v4.6.0

Compare Source

Minor Changes
Patch Changes

v4.5.1

Compare Source

Patch Changes

v4.5.0

Compare Source

Minor Changes
Patch Changes
  • #​8435 8e3688f Thanks @​emily-shen! - fix: include assets binding when printing summary of bindings

  • #​8675 f043b74 Thanks @​vicb! - Bump @cloudflare/unenv-preset to 2.3.1

    Use the workerd native implementation of createSecureContext and checkServerIdentity from node:tls. The functions have been implemented in cloudflare/workerd#3754.

v4.4.1

Compare Source

Patch Changes

v4.4.0

Compare Source

Minor Changes
Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 24c3e04 to 533be7d Compare March 8, 2025 04:37
@renovate renovate bot changed the title chore(deps): update devdependency eslint to ^9.22.0 chore(deps): update all non-major dependencies Mar 8, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 533be7d to 6156e26 Compare March 8, 2025 16:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6156e26 to 1dc0619 Compare March 8, 2025 20:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1dc0619 to b4defa0 Compare March 9, 2025 01:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b4defa0 to 142fe48 Compare March 9, 2025 08:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 142fe48 to 4511055 Compare March 9, 2025 16:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4511055 to 8952be8 Compare March 10, 2025 00:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8952be8 to b83f4b9 Compare March 10, 2025 05:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b83f4b9 to b64527a Compare March 10, 2025 09:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b64527a to bc8eb26 Compare March 12, 2025 05:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bc8eb26 to 56ead5d Compare March 13, 2025 12:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 56ead5d to e3b1067 Compare March 13, 2025 17:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e3b1067 to 0d81300 Compare March 17, 2025 14:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9dac900 to 73f4b0a Compare March 27, 2025 00:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 73f4b0a to 8d2bd86 Compare March 27, 2025 08:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8d2bd86 to a6d8508 Compare March 27, 2025 20:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a6d8508 to 83a2d91 Compare March 28, 2025 16:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 83a2d91 to 709d5bb Compare March 28, 2025 16:54
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.

0 participants