Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 8, 2025

This PR contains the following updates:

Package Change Age Confidence
@commitlint/cli (source) ^20.1.0 -> ^20.2.0 age confidence
@commitlint/config-conventional (source) ^20.0.0 -> ^20.2.0 age confidence
@iconify-json/lucide ^1.2.77 -> ^1.2.79 age confidence
@sveltejs/kit (source) ^2.49.0 -> ^2.49.2 age confidence
@types/node (source) ^24.10.1 -> ^24.10.2 age confidence
daisyui (source) ^5.5.5 -> ^5.5.8 age confidence
devalue ^5.5.0 -> ^5.6.0 age confidence
eslint-plugin-svelte (source) ^3.13.0 -> ^3.13.1 age confidence
pnpm (source) 10.24.0 -> 10.25.0 age confidence
pnpm (source) 10.24.0 -> 10.25.0 age confidence
prettier (source) ^3.7.3 -> ^3.7.4 age confidence
svelte (source) ^5.45.3 -> ^5.45.8 age confidence
svelte-dnd-action ^0.9.67 -> ^0.9.68 age confidence
typescript-eslint (source) ^8.48.0 -> ^8.49.0 age confidence
vite (source) ^7.2.6 -> ^7.2.7 age confidence
vitest (source) ^4.0.14 -> ^4.0.15 age confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v20.2.0

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v20.2.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

sveltejs/kit (@​sveltejs/kit)

v2.49.2

Compare Source

Patch Changes
  • fix: Stop re-loading already-loaded CSS during server-side route resolution (#​15014)

  • fix: posixify the instrumentation file import on Windows (#​14993)

  • fix: Correctly handle shared memory when decoding binary form data (#​15028)

v2.49.1

Compare Source

Patch Changes
  • fix: suppress state_referenced_locally warnings in .svelte-kit/generated/root.svelte (#​15013)

  • fix: TypeError when doing response.clone() in page load (#​15005)

saadeghi/daisyui (daisyui)

v5.5.8

Compare Source

Bug Fixes
  • badge padding to respect --size-selector, clean up kbd and tab padding properties. closes: #​4293 (e713958)

v5.5.7

Compare Source

Bug Fixes

v5.5.6

Compare Source

Bug Fixes
sveltejs/devalue (devalue)

v5.6.0

Compare Source

Minor Changes
  • a3d09d4: feat: expose DevalueError for instanceof checks in catch clauses
  • a3d09d4: feat: add value and root properties in DevalueError instances
sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)

v3.13.1

Compare Source

Patch Changes
pnpm/pnpm (pnpm)

v10.25.0

Compare Source

prettier/prettier (prettier)

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);
sveltejs/svelte (svelte)

v5.45.8

Compare Source

Patch Changes
  • fix: set AST root.start to 0 and root.end to template.length (#​17125)

  • fix: prevent erroneous state_referenced_locally warnings on prop fallbacks (#​17329)

v5.45.7

Compare Source

Patch Changes
  • fix: Add <textarea wrap="off"> as a valid attribute value (#​17326)

  • fix: add more css selectors to print() (#​17330)

  • fix: don't crash on hydratable serialization failure (#​17315)

v5.45.6

Compare Source

Patch Changes
  • fix: don't issue a11y warning for <video> without captions if it has no src (#​17311)

  • fix: add srcObject to permitted <audio>/<video> attributes (#​17310)

v5.45.5

Compare Source

Patch Changes
  • fix: correctly reconcile each blocks after outroing branches are resumed (#​17258)

  • fix: destroy each items after siblings are resumed (#​17258)

v5.45.4

Compare Source

Patch Changes
  • chore: move DOM-related effect properties to effect.nodes (#​17293)

  • fix: allow $props.id() to occur after an await (#​17285)

  • fix: keep reactions up to date even when read outside of effect (#​17295)

isaacHagoel/svelte-dnd-action (svelte-dnd-action)

v0.9.68

Compare Source

Bugfix - dragHandleZones are now testable within playwright

typescript-eslint/typescript-eslint (typescript-eslint)

v8.49.0

Compare Source

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

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

v8.48.1

Compare Source

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

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

vitejs/vite (vite)

v7.2.7

Compare Source

vitest-dev/vitest (vitest)

v4.0.15

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - "after 5:00pm on Monday" in timezone America/New_York, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 effb997 to fc17c87 Compare December 9, 2025 03:02
@drewbitt drewbitt merged commit 10ffb70 into master Dec 9, 2025
1 check passed
@renovate renovate bot deleted the renovate/all-minor-patch branch December 9, 2025 03:21
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