Skip to content

Update all non-major dependencies

renovate requested to merge renovate/all-minor-patch into main

This MR contains the following updates:

Package Type Update Change
@types/eslint (source) devDependencies patch ^8.56.10 -> ^8.56.11
@types/node (source) devDependencies patch ^20.14.9 -> ^20.14.13
eslint-plugin-prettier devDependencies minor ^5.1.3 -> ^5.2.1
eslint-plugin-svelte (source) devDependencies minor ^2.41.0 -> ^2.43.0
postcss (source) devDependencies patch ^8.4.39 -> ^8.4.40
prettier (source) devDependencies patch ^3.3.2 -> ^3.3.3
prettier-plugin-svelte devDependencies patch ^3.2.5 -> ^3.2.6
svelte-check devDependencies patch ^3.8.4 -> ^3.8.5
tailwindcss (source) devDependencies patch ^3.4.4 -> ^3.4.7
typescript (source) devDependencies patch ^5.5.3 -> ^5.5.4
typescript-eslint (source) devDependencies minor ^7.15.0 -> ^7.18.0
vite (source) devDependencies patch ^5.3.2 -> ^5.3.5

Release Notes

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.1

Compare Source

Patch Changes
sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)

v2.43.0

Compare Source

Minor Changes

v2.42.0

Compare Source

Minor Changes
postcss/postcss (postcss)

v8.4.40

Compare Source

  • Moved to getter/setter in nodes types to help Sass team (by @​nex3).
prettier/prettier (prettier)

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@​(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@​let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

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

v3.2.6

Compare Source

  • (feat) Svelte 5: never quote single-expression-attributes
sveltejs/language-tools (svelte-check)

v3.8.5

Compare Source

  • chore: bump html/css language service (#​2424)
  • chore: better "cannot use bind:" error message (#​2429)
  • fix: no implicit children prop when using slot (#​2427)
  • fix: correctly handle HTML between implicit snippet props (#​2450)
  • fix: correctly scope snippet declarations (#​2449)
  • fix: make it possible to type snippet parameters using JSDoc (#​2449)
  • fix: add legacy methods to own component shape (#​2451)
tailwindlabs/tailwindcss (tailwindcss)

v3.4.7

Compare Source

Fixed
  • Fix class detection in Slim templates with attached attributes and ID (#​14019)
  • Ensure attribute values in data-* and aria-* modifiers are always quoted in the generated CSS (#​14037)

v3.4.6

Compare Source

Fixed
  • Fix detection of some utilities in Slim/Pug templates (#​14006)
Changed
  • Loosen :is() wrapping rules when using an important selector (#​13900)

v3.4.5

Compare Source

Fixed
  • Disable automatic var() injection for anchor properties (#​13826)
  • Use no value instead of blur(0px) for backdrop-blur-none and blur-none utilities (#​13830)
  • Add .mts and .cts config file detection (#​13940)
  • Don't generate utilities like px-1 unnecessarily when using utilities like px-1.5 (#​13959)
  • Always generate -webkit-backdrop-filter for backdrop-* utilities (#​13997)
Microsoft/TypeScript (typescript)

v5.5.4: TypeScript 5.5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

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

v7.18.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.

v7.17.0

Compare Source

🚀 Features
  • eslint-plugin: backport no-unsafe-function type, no-wrapper-object-types from v8 to v7
️ Thank You
  • Armano
  • Josh Goldberg
  • Kirk Waiblinger
  • StyleShit

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

v7.16.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.

v7.16.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unnecessary-parameter-property-assignment] add new rule
🩹 Fixes
️ Thank You
  • Abraham Guo
  • auvred
  • Josh Goldberg
  • Juan Sanchez
  • Vinccool96
  • YeonJuan
  • Yukihiro Hasegawa

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

vitejs/vite (vite)

v5.3.5

Compare Source

v5.3.4

Compare Source

v5.3.3

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This MR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Renovate Bot.

Edited by renovate

Merge request reports