Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 22, 2025

This PR contains the following updates:

Package Change Age Confidence
@nuxt/ui (source) ^4.2.1^4.3.0 age confidence
@unocss/core (source) ^66.5.10^66.5.12 age confidence
@unocss/nuxt (source) ^66.5.10^66.5.12 age confidence
@unocss/preset-attributify (source) ^66.5.10^66.5.12 age confidence
@unocss/preset-icons (source) ^66.5.10^66.5.12 age confidence
@unocss/preset-mini (source) ^66.5.10^66.5.12 age confidence
@unocss/reset (source) ^66.5.10^66.5.12 age confidence
@vitest/coverage-v8 (source) ^4.0.15^4.0.16 age confidence
docus ^5.4.0^5.4.1 age confidence
esbuild ^0.27.1^0.27.2 age confidence
pnpm (source) 10.26.010.27.0 age confidence
sass ^1.97.0^1.97.1 age confidence
unifont ^0.6.0^0.7.1 age confidence
unocss (source) ^66.5.10^66.5.12 age confidence
vitest (source) ^4.0.15^4.0.16 age confidence
vue (source) 3.5.253.5.26 age confidence
vue-tsc (source) ^3.1.8^3.2.1 age confidence

Release Notes

nuxt/ui (@​nuxt/ui)

v4.3.0

Compare Source

Features
Bug Fixes
  • BlogPost/ChangelogVersion/PageFeature/User: allow tab focus (47d93d3), closes #​5635
  • Carousel: consistent stopOnInteraction behavior (#​5489) (36a7861)
  • Carousel: improve dots focus styles (cc90fb8)
  • ColorModeButton: improve icon class merging (2ce9af2)
  • ContentSearch/DasboardSearch: set full height on mobile to prevent jump (70317e5)
  • DashboardResizeHandle: allow hover over panel with z-index (07147f1)
  • EditorDragHandle: add missing UButton import (1b850bb)
  • EditorToolbar: map dropdown items recursively to support kind (feb756d)
  • FormField: hide error if error prop is false (#​5599) (6b7fe25)
  • InputDate/InputTime: add missing field group variant (#​5596) (cb3cec2)
  • PageCard/PageCTA/PageSection: handle reverse prop under lg screens (#​5545) (60b430c)
  • ProseA/ProseCallout/ProseCard: improve focus styles (df5f8c2)
  • Slider: add aria-label to thumb (#​5313) (f99ec46)
  • Table: only forward necessary props (#​5527) (b0b209e)
  • Table: properly position pinned columns based on size (e885b0e), closes #​4721 #​3927
unocss/unocss (@​unocss/core)

v66.5.12

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v66.5.11

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vitest-dev/vitest (@​vitest/coverage-v8)

v4.0.16

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
nuxt-content/docus (docus)

v5.4.1

Compare Source

Bug Fixes
evanw/esbuild (esbuild)

v0.27.2

Compare Source

  • Allow import path specifiers starting with #/ (#​4361)

    Previously the specification for package.json disallowed import path specifiers starting with #/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping #/* to ./src/* (previously you had to use another character such as #_* instead, which was more confusing). There is some more context in nodejs/node#49182.

    This change was contributed by @​hybrist.

  • Automatically add the -webkit-mask prefix (#​4357, #​4358)

    This release automatically adds the -webkit- vendor prefix for the mask CSS shorthand property:

    /* Original code */
    main {
      mask: url(x.png) center/5rem no-repeat
    }
    
    /* Old output (with --target=chrome110) */
    main {
      mask: url(x.png) center/5rem no-repeat;
    }
    
    /* New output (with --target=chrome110) */
    main {
      -webkit-mask: url(x.png) center/5rem no-repeat;
      mask: url(x.png) center/5rem no-repeat;
    }

    This change was contributed by @​BPJEnnova.

  • Additional minification of switch statements (#​4176, #​4359)

    This release contains additional minification patterns for reducing switch statements. Here is an example:

    // Original code
    switch (x) {
      case 0:
        foo()
        break
      case 1:
      default:
        bar()
    }
    
    // Old output (with --minify)
    switch(x){case 0:foo();break;case 1:default:bar()}
    
    // New output (with --minify)
    x===0?foo():bar();
  • Forbid using declarations inside switch clauses (#​4323)

    This is a rare change to remove something that was previously possible. The Explicit Resource Management proposal introduced using declarations. These were previously allowed inside case and default clauses in switch statements. This had well-defined semantics and was already widely implemented (by V8, SpiderMonkey, TypeScript, esbuild, and others). However, it was considered to be too confusing because of how scope works in switch statements, so it has been removed from the specification. This edge case will now be a syntax error. See tc39/proposal-explicit-resource-management#215 and rbuckton/ecma262#14 for details.

    Here is an example of code that is no longer allowed:

    switch (mode) {
      case 'read':
        using readLock = db.read()
        return readAll(readLock)
    
      case 'write':
        using writeLock = db.write()
        return writeAll(writeLock)
    }

    That code will now have to be modified to look like this instead (note the additional { and } block statements around each case body):

    switch (mode) {
      case 'read': {
        using readLock = db.read()
        return readAll(readLock)
      }
      case 'write': {
        using writeLock = db.write()
        return writeAll(writeLock)
      }
    }

    This is not being released in one of esbuild's breaking change releases since this feature hasn't been finalized yet, and esbuild always tracks the current state of the specification (so esbuild's previous behavior was arguably incorrect).

pnpm/pnpm (pnpm)

v10.27.0

Compare Source

v10.26.2: pnpm 10.26.2

Compare Source

Patch Changes

  • Improve error message when a package version exists but does not meet the minimumReleaseAge constraint. The error now clearly states that the version exists and shows a human-readable time since release (e.g., "released 6 hours ago") #​10307.

  • Fix installation of Git dependencies using annotated tags #​10335.

    Previously, pnpm would store the annotated tag object's SHA in the lockfile instead of the actual commit SHA. This caused ERR_PNPM_GIT_CHECKOUT_FAILED errors because the checked-out commit hash didn't match the stored tag object hash.

  • Binaries of runtime engines (Node.js, Deno, Bun) are written to node_modules/.bin before lifecycle scripts (install, postinstall, prepare) are executed #​10244.

  • Try to avoid making network calls with preferOffline #​10334.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite

v10.26.1: pnpm 10.26.1

Compare Source

Patch Changes

  • Don't fail on pnpm add, when blockExoticSubdeps is set to true #​10324.
  • Always resolve git references to full commits and ensure HEAD points to the commit after checkout #​10310.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite
sass/dart-sass (sass)

v1.97.1

Compare Source

unjs/unifont (unifont)

v0.7.1

Compare Source

compare changes

🚀 Enhancements
  • Strongly type provider name (#​286)
  • Throw on error (#​289)
  • bunny: Filter subsets (#​298)
  • Allow resolving specific font formats (#​297)
  • Export InitializedProvider and ResolveFontResult (#​305)
  • Allow passing provider-specific options to resolveFont (#​288)
🔥 Performance
  • googleicons: Use direct string slicing to drop first line of metadata response (#​302)
🩹 Fixes
  • Increase strength of provider types (#​290)
  • Isolate cache keys by provider name and options (#​281)
💅 Refactors
  • ⚠️ Remove resolveFontFace (#​284)
📖 Documentation
  • Update readme and add custom provider example (#​291)
  • Give correct examples for experimental.glyphs (#​293)
📦 Build
🏡 Chore
  • Fetch-depth: 0 in release workflow (551259f)
  • Update pnpm to 10.21 and enable trust policy (8a93ab7)
  • Revert pnpm trust policy and restore provenance action (7855023)
  • Remove unused types (#​285)
  • Extract unifont (#​292)
  • Disallow newlines in import/exports (ad66736)
  • Remove T prefix from generics (9e96630)
  • Remove publish step (c2ba1b7)
  • Release v0.7.0 (9ac1125)
  • Add changelogithub to deps (efd5d34)
  • Release v0.7.1 (8f191aa)
🤖 CI
  • Update release workflow to use trusted publishing (2554e6b)
⚠️ Breaking Changes
  • ⚠️ Remove resolveFontFace (#​284)
❤️ Contributors

v0.7.0

Compare Source

vuejs/core (vue)

v3.5.26

Compare Source

Bug Fixes
Performance Improvements
vuejs/language-tools (vue-tsc)

v3.2.1

Compare Source

language-core
component-meta
component-type-helpers
  • fix: npm package is missing build files (#​5893)
language-service
  • feat: props completion now only suggests :xxx (shorthand) when no prefix is typed, instead of both xxx and :xxx

v3.2.0

Compare Source

vscode
  • fix: Vue TS highlighting when trailing type alias is missing semicolon (#​5853) - Thanks to @​serkodev!
  • perf: replace fast-diff with custom character-by-character alignment algorithm (#​5849) (#​5851)
  • refactor: update Vue grammar scope name to "text.html.vue" (#​5856)
  • test: add test for embedded grammars (#​5861) - Thanks to @​serkodev!
language-service
component-meta
  • feat: add tags to slots and exposed (#​5862) - Thanks to @​aj-dev!
  • feat: filter out irrelevant properties from exposed (#​5868) - Thanks to @​aj-dev!
  • refactor: redundant logic between deduplication and language-core (#​5875)
  • refactor: de-dependency from component-type-helpers (#​5876)
  • refactor: search prop defaults with symbol declarations (#​5879)
  • refactor: deprecate "noDeclarations" and "forceUseTs" options (#​5887)
typescript-plugin
  • feat: include leading dot when finding references to CSS classes (#​5852)
  • fix: missing module error after file rename (#​5839) - Thanks to @​serkodev!
  • fix: prioritize non-warning completion entries over warning ones (#​5847)
  • fix: always pass rest parameters for future compatibility (#​5859) - Thanks to @​KazariEX!
  • fix: add nullish guards before accessing ts.CompletionEntryData (#​5869) - Thanks to @​KazariEX!
  • fix: handle import type nodes in definition proxy (#​5873)
  • fix: handle type imports in component auto-import(#​5874)
language-core
  • feat: revert overcorrection of v-for type inference (#​5836)
  • feat: align v-for key type with Object.keys (#​5837) - Thanks to @​serkodev!
  • feat: narrow component and directive types (#​5841)
  • feat: support <!-- @&#8203;strictTemplates --> magic comment (#​5845)
  • fix: correctly resolve <script src=""> (#​5838)
  • fix: preserve template slot wrappers during createIfBranch (#​5844) - Thanks to @​serkodev!
  • fix: include end tag locations when renaming global components
  • refactor: replace dynamic types generation with static files (#​5872)
  • refactor: improve Vue version detection and plugin resolution
component-type-helpers
  • refactor: remove ComponentType helper
workspace
  • chore: update testing infrastructure (#​5848)
  • chore: use tsgo in development (#​5860)
  • chore: reduce local dependencies and update workflows (#​5863)
  • chore: upgrade tsslint and vite to pre-release versions
  • chore: delete tests for Vue 3.4 (#​5871)

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.

@renovate renovate bot requested a review from danielroe as a code owner December 22, 2025 03:33
@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Dec 22, 2025

Deploying fonts with  Cloudflare Pages  Cloudflare Pages

Latest commit: bc904b5
Status: ✅  Deploy successful!
Preview URL: https://c1b6e0a9.fonts-dsw.pages.dev
Branch Preview URL: https://renovate-all-minor-patch.fonts-dsw.pages.dev

View logs

@pkg-pr-new
Copy link

pkg-pr-new bot commented Dec 22, 2025

Open in StackBlitz

npm i https://pkg.pr.new/@nuxt/fonts@754

commit: bc904b5

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 369c168 to d769a7b Compare December 30, 2025 10:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d769a7b to 339ab2d Compare December 30, 2025 23:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 339ab2d to bc904b5 Compare December 31, 2025 18:11
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