chore(deps): update devdependencies (non-major) (patch)
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
prettier (source) | devDependencies | patch | 3.3.2 -> 3.3.3 |
renovate (source) | devDependencies | patch | 37.431.0 -> 37.431.4 |
Release Notes
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.
renovatebot/renovate (renovate)
v37.431.4
Bug Fixes
v37.431.3
Miscellaneous Chores
- deps: update dependency rimraf to v5.0.8 (#30160) (671fa27)
- deps: update dependency rimraf to v5.0.9 (#30162) (abfa85a)
- platform/github: add schemas for Github content REST API (#30154) (574ca2c)
Build System
- deps: update dependency glob to v10.4.5 (#30159) (b03ce8c)
- deps: update dependency lru-cache to v10.4.3 (#30161) (e54b56d)
v37.431.2
Build System
v37.431.1
Tests
Build System
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.