Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 24, 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
@stylistic/eslint-plugin (source) 5.6.0 -> 5.6.1 age confidence devDependencies patch
@tailwindcss/vite (source) 4.1.17 -> 4.1.18 age confidence devDependencies patch
@types/node (source) 24.10.1 -> 24.10.3 age confidence devDependencies patch
@vitest/coverage-v8 (source) 4.0.10 -> 4.0.15 age confidence devDependencies patch
JamesIves/github-pages-deploy-action v4.7.4 -> v4.7.6 age confidence action patch
actions/setup-node v6.0.0 -> v6.1.0 age confidence action minor
eslint (source) 9.39.1 -> 9.39.2 age confidence devDependencies patch
happy-dom 20.0.10 -> 20.0.11 age confidence devDependencies patch
pnpm (source) 10.22.0+sha512.bf049efe995b28f527fd2b41ae0474ce29186f7edcb3bf545087bd61fbbebb2bf75362d1307fda09c2d288e1e499787ac12d4fcb617a974718a6051f2eee741c -> 10.25.0 age confidence packageManager minor
prettier (source) 3.6.2 -> 3.7.4 age confidence devDependencies minor
prettier-plugin-tailwindcss 0.7.1 -> 0.7.2 age confidence devDependencies patch
tailwindcss (source) 4.1.17 -> 4.1.18 age confidence devDependencies patch
typescript-eslint (source) 8.47.0 -> 8.49.0 age confidence devDependencies minor
vite (source) 7.2.5 -> 7.2.11 age confidence devDependencies patch
vite-plugin-checker 0.11.0 -> 0.12.0 age confidence devDependencies minor
vitest (source) 4.0.10 -> 4.0.15 age confidence devDependencies patch

Release Notes

eslint/eslint (@​eslint/js)

v9.39.2

Compare Source

eslint-stylistic/eslint-stylistic (@​stylistic/eslint-plugin)

v5.6.1

Compare Source

Bug Fixes
  • computed-property-spacing: guard with node.type instead of computed check (#​1054) (c486861)
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)
vitest-dev/vitest (@​vitest/coverage-v8)

v4.0.15

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
    View changes on GitHub

v4.0.14

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v4.0.13

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v4.0.12

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.0.11

Compare Source

   🚀 Experimental Features
   🏎 Performance
    View changes on GitHub
JamesIves/github-pages-deploy-action (JamesIves/github-pages-deploy-action)

v4.7.6

Compare Source

What's Changed

Build 🔧
  • build(deps): bump typescript-eslint from 8.48.1 to 8.49.0 in the typescript group by @​dependabot[bot] in #​1930

Full Changelog: JamesIves/github-pages-deploy-action@v4...v4.7.6

v4.7.5

Compare Source

What's Changed

Bug Fixes 🐛
Build 🔧

Full Changelog: JamesIves/github-pages-deploy-action@v4...v4.7.5

actions/setup-node (actions/setup-node)

v6.1.0

Compare Source

What's Changed

Enhancement:
Dependency updates:
Documentation update:

Full Changelog: actions/setup-node@v6...v6.1.0

eslint/eslint (eslint)

v9.39.2

Compare Source

capricorn86/happy-dom (happy-dom)

v20.0.11

Compare Source

pnpm/pnpm (pnpm)

v10.25.0

Compare Source

v10.24.0

Compare Source

v10.23.0: pnpm 10.23

Compare Source

Minor Changes

  • Added --lockfile-only option to pnpm list #​10020.

Patch Changes

  • pnpm self-update should download pnpm from the configured npm registry #​10205.
  • pnpm self-update should always install the non-executable pnpm package (pnpm in the registry) and never the @pnpm/exe package, when installing v11 or newer. We currently cannot ship @pnpm/exe as pkg doesn't work with ESM #​10190.
  • Node.js runtime is not added to "dependencies" on pnpm add, if there's a engines.runtime setting declared in package.json #​10209.
  • The installation should fail if an optional dependency cannot be installed due to a trust policy check failure #​10208.
  • pnpm list and pnpm why now display npm: protocol for aliased packages (e.g., foo npm:is-odd@3.0.1) #​8660.
  • Don't add an extra slash to the Node.js mirror URL #​10204.
  • pnpm store prune should not fail if the store contains Node.js packages #​10131.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite
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);

v3.7.3

Compare Source

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#​18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

v3.7.2

Compare Source

diff

JavaScript: Fix string print when switching quotes (#​18351 by @​fisker)
// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")

// Prettier 3.7.1
console.log('A descriptor\\'s .kind must be "method" or "field".');

// Prettier 3.7.2
console.log('A descriptor\\\'s .kind must be "method" or "field".');
JavaScript: Preserve quote for embedded HTML attribute values (#​18352 by @​kovsu)
// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;

// Prettier 3.7.1
const html = /* HTML */ ` <div class=${styles.banner}></div> `;

// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
TypeScript: Fix comment in empty type literal (#​18364 by @​fisker)
// Input
export type XXX = {
  // tbd
};

// Prettier 3.7.1
export type XXX = { // tbd };

// Prettier 3.7.2
export type XXX = {
  // tbd
};

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss)

v0.7.2

Compare Source

Fixed
  • Load compatible plugins sequentially to work around race conditions in Node.js (#​412)
  • Fix compatibility with prettier-plugin-svelte when using Prettier v3.7+ (#​418)
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.

v8.48.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/rolldown-vite (vite)

v7.2.11

Compare Source

Bug Fixes

v7.2.10

Compare Source

Features
Bug Fixes
Documentation
Tests

v7.2.9

Compare Source

Bug Fixes
Miscellaneous Chores

v7.2.8

Compare Source

Features
Bug Fixes
  • inconsistentCjsInterop: true should affect dynamic imports as well (#​521) (38a8609)
  • deps: update all non-major dependencies (#​21146) (a3cd262)
Performance Improvements
Documentation

v7.2.7

Compare Source

Bug Fixes
Performance Improvements
Miscellaneous Chores

v7.2.6

Compare Source

Features
fi3ework/vite-plugin-checker (vite-plugin-checker)

v0.12.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone Europe/Belgrade, 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.

@netlify
Copy link

netlify bot commented Nov 24, 2025

Deploy Preview for solid-clock ready!

Name Link
🔨 Latest commit 6a58daa
🔍 Latest deploy log https://app.netlify.com/projects/solid-clock/deploys/693d9606539f320008170574
😎 Deploy Preview https://deploy-preview-247--solid-clock.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 481774b to 13f6bf2 Compare December 1, 2025 09:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from c561f9c to 29e0a5f Compare December 3, 2025 18:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 60b130f to 986ef59 Compare December 13, 2025 16:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 986ef59 to 6a58daa Compare December 13, 2025 16:36
@high1 high1 merged commit 5e430f6 into main Dec 13, 2025
5 checks passed
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.

2 participants