Skip to content

Comments

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

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#253
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 8, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@antfu/eslint-config ^7.2.0^7.6.0 age confidence
@iconify-json/ri ^1.2.7^1.2.10 age confidence
@iconify-json/simple-icons ^1.2.68^1.2.71 age confidence
@iconify-json/tabler ^1.2.26^1.2.27 age confidence
@nuxt/content (source) ^3.11.0^3.11.2 age confidence
@nuxt/devtools-kit (source) ^3.1.1^3.2.2 age confidence
@nuxt/devtools-ui-kit (source) ^3.1.1^3.2.2 age confidence
@nuxt/fonts ^0.13.0^0.14.0 age confidence
@nuxt/ui (source) ^4.4.0^4.5.0 age confidence
@nuxtjs/i18n (source) ^10.2.1^10.2.3 age confidence
@vueuse/core (source) ^14.1.0^14.2.1 age confidence
@vueuse/nuxt (source) ^14.1.0^14.2.1 age confidence
bumpp ^10.4.0^10.4.1 age confidence
eslint (source) ^9.39.2^9.39.3 age confidence
firebase-functions ^7.0.4^7.0.5 age confidence
happy-dom ^20.4.0^20.7.0 age confidence
nuxt-site-config ^3.2.18^3.2.21 age confidence
playwright-core (source) ^1.58.0^1.58.2 age confidence
pnpm (source) 10.28.210.30.2 age confidence
shiki (source) ^3.21.0^3.22.0 age confidence
vue (source) ^3.5.27^3.5.29 age confidence
zod (source) >=3>=3.25.76 age confidence

Release Notes

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

v7.6.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v7.5.0

Compare Source

   🚀 Features
    View changes on GitHub

v7.4.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.4.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.4.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.4.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v7.3.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
nuxt/content (@​nuxt/content)

v3.11.2

Compare Source

Bug Fixes
  • studio: fallback to env variable to detect ai feature (#​3713) (3fc8b7b)

v3.11.1

Compare Source

Features
  • collections: create studio collections for AI if detected (#​3709) (7744645)
Bug Fixes
  • issue with disabling contentRawMarkdown (5be6b0c)
nuxt/devtools (@​nuxt/devtools-kit)

v3.2.2

Compare Source

Bug Fixes
Features

v3.2.1

Compare Source

Bug Fixes

v3.2.0

Compare Source

Bug Fixes
  • devtools: call devtools:initialized hook after all modules run (#​919) (3662836)
Features
  • enhance inspect panel, add copy visual info for agents (#​928) (6bb2565)
  • upgrade vite-devtools (5c4a0b0)

3.1.1 (2025-11-25)

Bug Fixes
Features
  • support passing additional permissions to the iframe (#​911) (bc1d11c)
nuxt/fonts (@​nuxt/fonts)

v0.14.0

Compare Source

0.14.0 is the next minor release.

🚨 Breaking changes

Default font format is now woff2 only

Font providers previously returned multiple formats (woff2, woff, truetype, etc.). The default behavior now only resolves woff2 fonts, which is supported by all modern browsers.

Your @font-face declarations will typically have fewer src entries, reducing CSS size. In most cases this is a transparent improvement.

To restore the previous behavior or add additional formats:

export default defineNuxtConfig({
  fonts: {
    defaults: {
      formats: ['woff2', 'woff', 'ttf'],
    },
  },
})

Available values: 'woff2', 'woff', 'ttf', 'otf', 'eot'.

Cache invalidation

Font metadata caches are now isolated per provider and per provider options. After upgrading, your font metadata cache (node_modules/.cache/nuxt/fonts/) will be invalidated and fonts will be re-fetched on the next build. This is a one-time occurrence.

✨ Features

Resolve fonts from node_modules

A new built-in npm provider can resolve fonts installed as npm packages. If no other provider matches a font family, @nuxt/fonts will now attempt to find it in your node_modules via CDN metadata.

export default defineNuxtConfig({
  fonts: {
    npm: {
      // options for the npm provider (optional)
    },
  },
})
Font format resolution

You can control which font formats are resolved via the new defaults.formats option:

export default defineNuxtConfig({
  fonts: {
    defaults: {
      formats: ['woff2'], // default
    },
  },
})
Provider-specific font family options

You can now pass provider-specific options when configuring individual font families:

export default defineNuxtConfig({
  fonts: {
    families: [
      {
        name: 'My Font',
        provider: 'google',
        providerOptions: {
          google: {
            // provider-specific options for this family
          },
        },
      },
    ],
  },
})
throwOnError option

Configure whether font resolution errors should throw or warn:

export default defineNuxtConfig({
  fonts: {
    throwOnError: true, // default: false
  },
})
lightningcss support

If your Nuxt project uses Vite's lightningcss mode for CSS processing (for example, if you're using rolldown-vite!), injected @font-face declarations are now minified with lightningcss instead of esbuild.

🩹 Fixes

  • Prevent font flashes in development — The dev font proxy now returns Cache-Control: public, max-age=31536000, immutable headers, preventing font flashes during HMR on SSR frameworks.
  • Broader CSS file matching — Font family injection now matches additional CSS-like file patterns (Vue SFC &lang.css query strings and inline style IDs), aligning with fontless behavior.
  • Adobe provider race condition — Fixed a race condition in the Adobe (Typekit) provider where concurrent font resolution could clear the font family map mid-flight, causing Adobe fonts to silently fail. (fix in unifont 0.7.4)
  • Prioritize sliced woff2 over full ttf — When both formats are available, woff2 subsets are now correctly prioritized over full ttf files. (fix in unifont 0.7.2)
  • Bunny provider subset filtering — The Bunny font provider now correctly filters by subsets. (fix in unifont 0.7.0)

👉 Changelog

compare changes

🚀 Enhancements
  • Upgrade to the latest versions fontless + unifont (3d634b0)
  • Support lightningcss transforms (171c9a4)
  • Add support for resolving fonts from local node_modules (#​781)
🩹 Fixes
  • Prevent font flashes in development (0ec437e)
  • Include more css-ish files when injecting font-families (6e8e343)
  • deps: Bump unifont + reenable adobe tests (9d7715d)
📖 Documentation
  • Add nuxt.care health badge (8f0a978)
🏡 Chore
  • Fix changelog workflow (#​776)
  • Remove changelog (in favour of github releases) (25c87c4)
✅ Tests
  • Update snapshots for adobe preloads (035091a)
🤖 CI
  • Pin github actions to full-length commit shas (18e3ff7)
❤️ Contributors
nuxt/ui (@​nuxt/ui)

v4.5.0

Compare Source

Features
  • DashboardSidebar/Header: add autoClose prop (#​6089) (2663deb)
  • EditorDragHandle: proxy nested / nestedOptions props and emit hover event (#​5960) (ed60193)
  • Form: add HTML5 validation to programmatic submit (#​6002) (ed552fc)
  • locale: add Belarusian language (#​5972) (ac9e7b3)
  • module: add support for taupe / mauve / mist / olive neutral colors (#​6081) (bc49d3f)
  • NavigationMenu: allow tooltip usage in horizontal orientation (#​5682) (f46b504)
  • NavigationMenu: handle chip in items (#​6064) (401a2c0)
  • ScrollArea: add skipMeasurement virtualize option (#​5721) (548b711)
  • Select/SelectMenu: add hover effects on outline and subtle variants (94b0c31)
  • Theme: new component (#​4387) (c97047d)
  • Toaster: prevent duplicate toasts and add pulse animation (3f6581a)
Bug Fixes
  • BlogPost/ChangelogVersion: use ImgHTMLAttributes type for image prop (#​6007) (0185856)
  • ChatMessages: allow message props to override role defaults (#​6000) (f64ec17)
  • ChatMessages: prevent flash at top before scrolling to bottom on mount (4bdcb83)
  • Checkbox/Switch: prevent data-state conflict when used inside Tooltip (2bb1a8b), closes #​3599
  • CheckboxGroup: update update:modelValue emit type (#​5927) (64d2e88)
  • ColorModeImage: add baseURL support for public paths (#​6006) (db510f3)
  • components: add fixed prop to prevent responsive text size reduction (#​6074) (8f5f44c)
  • components: nullable and optional type support (#​6060) (cd3432b)
  • components: prevent iOS auto-zoom on input fields with font-size below 16px (#​6040) (1262016)
  • ContentNavigation: pass nested child data to slots (#​6043) (e67f77e)
  • defineShortcuts: add alt key guard (#​6020) (8451f45)
  • defineShortcuts: allow shifted special character shortcuts (08facc0)
  • Drawer/Modal/Popover/Slideover: prevent unexpected close on touch when interacting with other overlays (#​5695) (e2c038c)
  • Editor: handle placeholder in RTL mode (#​5977) (3cc16e3)
  • EditorMentionMenu: use char prop as mention prefix instead of always @ (0b9b097), closes #​6035
  • EditorToolbar: proxy size prop to dropdown menu (8f8d989)
  • InputMenu/InputNumber/SelectMenu: proxy size to buttons (1ec1698), closes #​5958
  • InputMenu/Select/SelectMenu: exclude cosmetic items from model value type (#​6044) (22cf1ea)
  • InputMenu/SelectMenu: sort filtered items by match relevance (058c66b), closes #​4672
  • InputMenu: prevent focus on trailing button (88073b6)
  • module: update icon cssLayer option from components to base (#​6076) (e8bc322)
  • NavigationMenu: allow clicking trailing slot in horizontal orientation (7f9996f), closes #​5192 #​6083
  • NavigationMenu: unique auto-generated item values for grouped items (7b317d9)
  • PricingPlan: truncate title (#​6041) (8e86c51)
  • Select: remove useless by prop (14dceaf)
  • Table: improve perfs with shallowRef when watch deep is disabled (#​6023) (bc06ce2)
  • Toast: allow update to keep toast open and reset duration (82afa0a)
  • Toast: improve animation smoothness (#​6065) (ee2c0a5)
  • types: improve DotPathKeys accuracy and GetItemKeys performance (#​6077) (6f7af3e)
  • useEditorMenu: rank filtered results by relevance (f53484a)
nuxt-modules/i18n (@​nuxtjs/i18n)

v10.2.3

Compare Source

This changelog is generated by GitHub Releases

No significant changes

    View changes on GitHub
vueuse/vueuse (@​vueuse/core)

v14.2.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v14.2.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
antfu-collective/bumpp (bumpp)

v10.4.1

Compare Source

   🚀 Features
    View changes on GitHub
eslint/eslint (eslint)

v9.39.3

Compare Source

Bug Fixes

  • 791bf8d fix: restore TypeScript 4.0 compatibility in types (#​20504) (sethamus)

Chores

firebase/firebase-functions (firebase-functions)

v7.0.5

Compare Source

  • Fixed issue with missing dependency on graphql. (#​1795)
  • Internal improvements (#​1800)
capricorn86/happy-dom (happy-dom)

v20.7.0

Compare Source

🎨 Features

v20.6.5

Compare Source

👷‍♂️ Patch fixes

v20.6.4

Compare Source

👷‍♂️ Patch fixes

v20.6.3

Compare Source

👷‍♂️ Patch fixes
  • Refactors query selector parser to be able to handle complex rules - By @​capricorn86 in task #​1910
  • Fixes issue related to using query selector for attribute in XML document - By @​capricorn86 in task #​1912
  • Fixes issue with using quotes within quotes for attribute query selector (e.g. [data-value="it's a test"]) - By @​capricorn86 in task #​2034

v20.6.2

Compare Source

👷‍♂️ Patch fixes
  • Update entities package version to resolve missing export for vue and vue-compat v3.5 - By @​acollins1991 in task #​2066

v20.6.1

Compare Source

v20.6.0

Compare Source

v20.5.5

Compare Source

v20.5.4

Compare Source

👷‍♂️ Patch fixes

v20.5.3

Compare Source

v20.5.2

Compare Source

v20.5.1

Compare Source

v20.5.0

Compare Source

harlan-zw/nuxt-site-config (nuxt-site-config)

v3.2.21

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.2.20

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.2.19

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
microsoft/playwright (playwright-core)

v1.58.2

Compare Source

v1.58.1

Compare Source

Highlights

#​39036 fix(msedge): fix local network permissions
#​39037 chore: update cft download location
#​38995 chore(webkit): disable frame sessions on fronzen builds

Browser Versions
  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0
pnpm/pnpm (pnpm)

v10.30.2

Compare Source

v10.30.1: pnpm 10.30.1

Compare Source

Patch Changes

  • Use the /-/npm/v1/security/audits/quick endpoint as the primary audit endpoint, falling back to /-/npm/v1/security/audits when it fails #​10649.

Platinum Sponsors

Bit

Gold Sponsors

Sanity Discord Vite
SerpApi CodeRabbit Workleap
Stackblitz Nx

v10.30.0: pnpm 10.30

Compare Source

Minor Changes

  • pnpm why now shows a reverse dependency tree. The searched package appears at the root with its dependents as branches, walking back to workspace roots. This replaces the previous forward-tree output which was noisy and hard to read for deeply nested dependencies.

Patch Changes

  • Revert pnpm why dependency pruning to prefer correctness over memory consumption. Reverted PR: #​7122.
  • Optimize pnpm why and pnpm list performance in workspaces with many importers by sharing the dependency graph and materialization cache across all importers instead of rebuilding them independently for each one #​10596.

Platinum Sponsors

Bit

Gold Sponsors

Sanity Discord Vite
SerpApi 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 e4e0b28 to 2fe1e8d Compare December 8, 2025 10:57
@renovate renovate bot changed the title chore(deps): update pnpm.catalog.default @antfu/eslint-config to ^6.4.2 chore(deps): update pnpm.catalog.default @antfu/eslint-config to ^6.5.1 Dec 8, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2fe1e8d to bcd19fb Compare December 8, 2025 16:00
@renovate renovate bot changed the title chore(deps): update pnpm.catalog.default @antfu/eslint-config to ^6.5.1 chore(deps): update all non-major dependencies Dec 8, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bcd19fb to 6495303 Compare December 11, 2025 07:25
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies - autoclosed Dec 11, 2025
@renovate renovate bot closed this Dec 11, 2025
@renovate renovate bot deleted the renovate/all-minor-patch branch December 11, 2025 07:57
@renovate renovate bot changed the title chore(deps): update all non-major dependencies - autoclosed chore(deps): update all non-major dependencies Dec 15, 2025
@renovate renovate bot reopened this Dec 15, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 601e104 to e7a6686 Compare December 22, 2025 03:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 7084dcc to 357ee30 Compare December 30, 2025 10:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 3a33f11 to 7771a82 Compare January 6, 2026 18:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 16 times, most recently from 78aaba6 to 8d7aed6 Compare February 12, 2026 07:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 00a4309 to f4ee03c Compare February 21, 2026 02:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 9e0d217 to 131e780 Compare February 24, 2026 16:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 131e780 to fd6d697 Compare February 25, 2026 03:13
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