Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 15, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
@eslint/js (source) ^9.39.1 -> ^9.39.2 age confidence devDependencies patch
@iconify-json/lucide ^1.2.79 -> ^1.2.81 age confidence devDependencies patch
@tailwindcss/vite (source) ^4.1.17 -> ^4.1.18 age confidence devDependencies patch
@trpc/client (source) ^11.7.2 -> ^11.8.0 age confidence dependencies minor
@trpc/server (source) ^11.7.2 -> ^11.8.0 age confidence dependencies minor
@types/node (source) ^24.10.2 -> ^24.10.4 age confidence devDependencies patch
daisyui (source) ^5.5.8 -> ^5.5.14 age confidence devDependencies patch
devalue ^5.6.0 -> ^5.6.1 age confidence dependencies patch
eslint (source) ^9.39.1 -> ^9.39.2 age confidence devDependencies patch
kysely (source) ^0.28.8 -> ^0.28.9 age confidence dependencies patch
node 24.11.1 -> 24.12.0 age confidence uses-with minor
pnpm (source) 10.25.0 -> 10.26.0 age confidence packageManager minor
pnpm (source) 10.25.0 -> 10.26.0 age confidence uses-with minor
prettier-plugin-svelte ^3.4.0 -> ^3.4.1 age confidence devDependencies patch
svelte (source) ^5.45.8 -> ^5.46.0 age confidence devDependencies minor
tailwindcss (source) ^4.1.17 -> ^4.1.18 age confidence devDependencies patch
typescript-eslint (source) ^8.49.0 -> ^8.50.0 age confidence devDependencies minor
vite (source) ^7.2.7 -> ^7.3.0 age confidence devDependencies minor
zod (source) ^4.1.13 -> ^4.2.1 age confidence dependencies minor

Release Notes

eslint/eslint (@​eslint/js)

v9.39.2

Compare Source

tailwindlabs/tailwindcss (@​tailwindcss/vite)

v4.1.18

Compare Source

Fixed
  • Ensure validation of source(…) happens relative to the file it is in (#​19274)
  • Include filename and line numbers in CSS parse errors (#​19282)
  • Skip comments in Ruby files when checking for class names (#​19243)
  • Skip over arbitrary property utilities with a top-level ! in the value (#​19243)
  • Support environment API in @tailwindcss/vite (#​18970)
  • Preserve case of theme keys from JS configs and plugins (#​19337)
  • Write source maps correctly on the CLI when using --watch (#​19373)
  • Handle special defaults (like ringColor.DEFAULT) in JS configs (#​19348)
  • Improve backwards compatibility for content theme key from JS configs (#​19381)
  • Upgrade: Handle future and experimental config keys (#​19344)
  • Try to canonicalize any arbitrary utility to a bare value (#​19379)
  • Validate candidates similarly to Oxide (#​19397)
  • Canonicalization: combine text-* and leading-* classes (#​19396)
  • Correctly handle duplicate CLI arguments (#​19416)
  • Don’t emit color-mix fallback rules inside @keyframes (#​19419)
  • CLI: Don't hang when output is /dev/stdout (#​19421)
trpc/trpc (@​trpc/client)

v11.8.0

Compare Source

What's Changed
saadeghi/daisyui (daisyui)

v5.5.14

Compare Source

Bug Fixes

v5.5.13

Compare Source

Bug Fixes
  • allow .list-col-wrap to work with Tailwind CSS variant prefixes. closes: #​4336 (56ef803)

v5.5.12

Compare Source

Bug Fixes

v5.5.11

Compare Source

Bug Fixes

v5.5.10

Compare Source

Bug Fixes
  • rule priority for .drawer-end and .drawer-open. closes #​4331 (82e68d4)

v5.5.9

Compare Source

Bug Fixes
sveltejs/devalue (devalue)

v5.6.1

Compare Source

Patch Changes
  • 2161d44: fix: add hasOwn check before calling reviver
eslint/eslint (eslint)

v9.39.2

Compare Source

kysely-org/kysely (kysely)

v0.28.9: 0.28.9

Compare Source

Hey 👋

A small batch of bug fixes. Please report any issues. 🤞😰🤞

🚀 Features

🐞 Bugfixes

PostgreSQL 🐘

📖 Documentation

📦 CICD & Tooling

⚠️ Breaking Changes

🐤 New Contributors

Full Changelog: kysely-org/kysely@v0.28.8...v0.28.9

actions/node-versions (node)

v24.12.0: 24.12.0

Compare Source

Node.js 24.12.0

pnpm/pnpm (pnpm)

v10.26.0

Compare Source

sveltejs/prettier-plugin-svelte (prettier-plugin-svelte)

v3.4.1

Compare Source

sveltejs/svelte (svelte)

v5.46.0

Compare Source

Minor Changes
  • feat: Add csp option to render(...), and emit hashes when using hydratable (#​17338)

v5.45.10

Compare Source

Patch Changes
  • fix: race condition when importing AsyncLocalStorage (#​17350)

v5.45.9

Compare Source

Patch Changes
  • fix: correctly reschedule deferred effects when reviving a batch after async work (#​17332)

  • fix: correctly print !doctype during print (#​17341)

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

v8.50.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.

vitejs/vite (vite)

v7.3.0

Compare Source

Please refer to CHANGELOG.md for details.

colinhacks/zod (zod)

v4.2.1

Compare Source

v4.2.0

Compare Source

Features

Implement Standard JSON Schema

standard-schema/standard-schema#134

Implement z.fromJSONSchema()
const jsonSchema = {
  type: "object",
  properties: {
    name: { type: "string" },
    age: { type: "number" }
  },
  required: ["name"]
};

const schema = z.fromJSONSchema(jsonSchema);
Implement z.xor()
const schema = z.xor(
  z.object({ type: "user", name: z.string() }),
  z.object({ type: "admin", role: z.string() })
);
// Exactly one of the schemas must match
Implement z.looseRecord()
const schema = z.looseRecord(z.string(), z.number());
// Allows additional properties beyond those defined

Commits:


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 b30a3cd to 9251b9d Compare December 16, 2025 03:05
@drewbitt drewbitt merged commit 55e6a98 into master Dec 16, 2025
1 check passed
@renovate renovate bot deleted the renovate/all-minor-patch branch December 16, 2025 03:43
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