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

Merged
merged 1 commit into from
Apr 5, 2025

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/simple-icons ^1.2.28 -> ^1.2.30 age adoption passing confidence
@nuxt/content (source) ^3.3.0 -> ^3.4.0 age adoption passing confidence
@nuxt/devtools-kit (source) ^2.3.1 -> ^2.3.2 age adoption passing confidence
@nuxt/devtools-ui-kit (source) ^2.3.1 -> ^2.3.2 age adoption passing confidence
@nuxt/eslint-config (source) ^1.2.0 -> ^1.3.0 age adoption passing confidence
@nuxt/fonts ^0.11.0 -> ^0.11.1 age adoption passing confidence
@nuxt/image (source) ^1.9.0 -> ^1.10.0 age adoption passing confidence
@nuxtjs/seo (source) ^3.0.0 -> ^3.0.2 age adoption passing confidence
@types/semver (source) ^7.5.8 -> ^7.7.0 age adoption passing confidence
@typescript-eslint/typescript-estree (source) ^8.28.0 -> ^8.29.0 age adoption passing confidence
@unhead/vue (source) 2.0.1 -> 2.0.3 age adoption passing confidence
@unhead/vue (source) ^2.0.0-rc.8 -> ^2.0.3 age adoption passing confidence
eslint (source) 9.23.0 -> 9.24.0 age adoption passing confidence
eslint-plugin-n ^17.16.2 -> ^17.17.0 age adoption passing confidence
nuxt-llms ^0.1.0 -> ^0.1.2 age adoption passing confidence
pnpm (source) 10.6.5 -> 10.7.1 age adoption passing confidence
std-env ^3.8.1 -> ^3.9.0 age adoption passing confidence
unhead (source) 2.0.1 -> 2.0.3 age adoption passing confidence
vitest (source) ^3.0.9 -> ^3.1.1 age adoption passing confidence

Release Notes

nuxt/devtools (@​nuxt/devtools-kit)

v2.3.2

Compare Source

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

v1.3.0

Compare Source

   🚀 Features
    View changes on GitHub
nuxt/fonts (@​nuxt/fonts)

v0.11.1

Compare Source

harlan-zw/nuxt-seo (@​nuxtjs/seo)

v3.0.2

Compare Source

No significant changes

    View changes on GitHub
typescript-eslint/typescript-eslint (@​typescript-eslint/typescript-estree)

v8.29.0

Compare Source

This was a version bump only for typescript-estree to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

unjs/unhead (@​unhead/vue)

v2.0.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.0.2

Compare Source

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

v9.24.0

Compare Source

eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.17.0

Compare Source

🌟 Features
  • allow-modules: include virtual: in the modules pattern (#​425) (a109793)
  • node-builtin: Add support for import.meta properties (#​420) (76fc219)
🩹 Fixes
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
pnpm/pnpm (pnpm)

v10.7.1: pnpm 10.7.1

Compare Source

Patch Changes

  • pnpm config set should convert the settings to their correct type before adding them to pnpm-workspace.yaml #​9355.
  • pnpm config get should read auth related settings via npm CLI #​9345.
  • Replace leading ~/ in a path in .npmrc with the home directory #​9217.

Platinum Sponsors

Bit Bit Syntax

Gold Sponsors

Discord u|screen
JetBrains Nx
CodeRabbit Route4Me
Workleap Stackblitz

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
      foo@2.1.0: patches/foo-3.patch

    The above configuration would apply patches/foo-3.patch to foo@2.1.0, 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
      'foo@2.2.0-2.8.0': 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.
unjs/std-env (std-env)

v3.9.0

Compare Source

compare changes

🚀 Enhancements
  • Detect cloudflare workers build ci (#​156)
🏡 Chore
❤️ Contributors
vitest-dev/vitest (vitest)

v3.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.1.0

Compare Source

🚀 Features
🐞 Bug Fixes
🏎 Performance
View changes on GitHub

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.

Copy link

vercel bot commented Mar 8, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
scripts-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 4, 2025 8:42pm
scripts-playground ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 4, 2025 8:42pm

@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update devdependency eslint to v9.22.0 Mar 8, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cd1e4b5 to 1e8cdc9 Compare March 8, 2025 02:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1e8cdc9 to 493e00b Compare March 8, 2025 16:07
@renovate renovate bot changed the title chore(deps): update devdependency eslint to v9.22.0 chore(deps): update all non-major dependencies Mar 8, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 493e00b to 80a2fab Compare March 8, 2025 21:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 80a2fab to 8b4621b Compare March 8, 2025 23:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8b4621b to 196e87d Compare March 9, 2025 02:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 196e87d to 5e330aa Compare March 9, 2025 16:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5e330aa to d814318 Compare March 10, 2025 04:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d814318 to 418479b Compare March 10, 2025 08:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 418479b to addbdb5 Compare March 10, 2025 20:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e9ff1fb to 226aa38 Compare March 31, 2025 09:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 226aa38 to 9140f7c Compare March 31, 2025 13:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9140f7c to a4e2741 Compare March 31, 2025 18:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a4e2741 to dbb7f13 Compare April 1, 2025 08:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dbb7f13 to ba0374c Compare April 1, 2025 15:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ba0374c to b0b5833 Compare April 2, 2025 09:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b0b5833 to 4315b62 Compare April 2, 2025 13:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4315b62 to efe45c8 Compare April 4, 2025 00:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from efe45c8 to 9c330a9 Compare April 4, 2025 20:37
@harlan-zw harlan-zw merged commit f67e18b into main Apr 5, 2025
7 checks passed
@harlan-zw harlan-zw deleted the renovate/all-minor-patch branch April 5, 2025 00:26
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.

1 participant