Update all non-major dependencies
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
Patch Changes
-
#668
ac036cc
Thanks @OrlovAlexei! - build(deps): Bump synckit from 0.8.6 to 0.9.1
sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)
v2.43.0
Minor Changes
-
#827
dc7eefc
Thanks @ota-meshi! - fix(deps): update dependency svelte-eslint-parser to ^0.41.0
v2.42.0
Minor Changes
-
#822
88da3cf
Thanks @renovate! - fix(deps): update dependency svelte-eslint-parser to ^0.40.0
postcss/postcss (postcss)
v8.4.40
- Moved to getter/setter in nodes types to help Sass team (by @nex3).
prettier/prettier (prettier)
v3.3.3
#16391 by @cdignam-segment)
Add parentheses for nullish coalescing in ternary (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);
#16458 by @y-schneider)
Add parentheses for decorator expressions (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 {}
@let
declaration syntax (#16474 by @sosukesuzuki)
Support 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
- (feat) Svelte 5: never quote single-expression-attributes
sveltejs/language-tools (svelte-check)
v3.8.5
- 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
Fixed
- Fix class detection in Slim templates with attached attributes and ID (#14019)
- Ensure attribute values in
data-*
andaria-*
modifiers are always quoted in the generated CSS (#14037)
v3.4.6
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
Fixed
- Disable automatic
var()
injection for anchor properties (#13826) - Use no value instead of
blur(0px)
forbackdrop-blur-none
andblur-none
utilities (#13830) - Add
.mts
and.cts
config file detection (#13940) - Don't generate utilities like
px-1
unnecessarily when using utilities likepx-1.5
(#13959) - Always generate
-webkit-backdrop-filter
forbackdrop-*
utilities (#13997)
Microsoft/TypeScript (typescript)
v5.5.4
: TypeScript 5.5.4
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for TypeScript v5.5.4 (Stable).
- fixed issues query for TypeScript v5.5.3 (Stable).
- fixed issues query for TypeScript v5.5.2 (Stable).
- fixed issues query for TypeScript v5.5.1 (RC).
- fixed issues query for TypeScript v5.5.0 (Beta).
Downloads are available on:
- npm
- NuGet package (soon!)
typescript-eslint/typescript-eslint (typescript-eslint)
v7.18.0
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
🚀 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
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
🚀 Features
- eslint-plugin: [no-unnecessary-parameter-property-assignment] add new rule
🩹 Fixes
-
deps: update dependency @eslint-community/regexpp to v4.11.0
-
website: react key error on internal pages of website
❤ ️ 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
- refactor(asset): remove rollup 3 public file watch workaround (#16331) (66bdb1d), closes #16331
- fix: make
server
type less restrictive (fix #17627) (#17628) (b55c32f), closes #17627 #17628 - fix: show error if vite client cannot be loaded (#17419) (db5ab1d), closes #17419
- fix(build): env output is not stable (#17748) (b240a83), closes #17748
- fix(client): fix vite error path (#17744) (3c1bde3), closes #17744
- fix(css): resolve url aliases with fragments (fix: #17690) (#17691) (d906d3f)
- fix(deps): update all non-major dependencies (#17629) (93281b0), closes #17629
- fix(importMetaGlob): handle alias that starts with hash (#17743) (b58b423), closes #17743
- fix(ssrTransform): sourcemaps with multiple sources (#17677) (f321fa8), closes #17677
- chore: extend commit hash (#17709) (4fc9b64), closes #17709
- chore(deps): update all non-major dependencies (#17734) (9983731), closes #17734
- chore(deps): update typescript (#17699) (df5ceb3), closes #17699
- revert: fix(logger): truncate log over 5000 characters long (#16581) (#17729) (f4f488f), closes #16581 #17729
v5.3.4
- fix: update Terser type definitions (fix #17668) (#17669) (b723a75), closes #17668 #17669
- fix(build): skip preload treeshaking for nested braces (#17687) (4be96b4), closes #17687
- fix(css): include
.css?url
in assets field of manifest (#17623) (1465b20), closes #17623 - fix(worker): nested inlined worker always fallbacked to data URI worker instead of using blob worker (07bc489), closes #17509
- refactor: replace includes with logical operations (#17620) (c4a2227), closes #17620
- chore: add callback to http-proxy.d.ts jsdoc (#17646) (d8a5d70), closes #17646
v5.3.3
- fix: lazily evaluate __vite__mapDeps files (#17602) (dafff4a), closes #17602
- fix(deps): update all non-major dependencies (#17590) (012490c), closes #17590
- fix(lib): remove pure CSS dynamic import (#17601) (055f1c1), closes #17601
- fix(proxy): replace changeOrigin changes in 5.3.0 with new rewriteWsOrigin option (#17563) (14c3d49), closes #17563
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.