Skip to content

build(deps-dev): bump all - #1299

Merged
renovate[bot] merged 1 commit into
livefrom
renovate/all
Jul 15, 2024
Merged

build(deps-dev): bump all#1299
renovate[bot] merged 1 commit into
livefrom
renovate/all

Conversation

@renovate

@renovate renovate Bot commented Jul 15, 2024

Copy link
Copy Markdown
Contributor

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@devcontainers/cli 0.65.0 -> 0.66.0 age adoption passing confidence devDependencies minor
actions/setup-node v4.0.2 -> v4.0.3 age adoption passing confidence action patch
dprint 0.47.1 -> 0.47.2 age adoption passing confidence devDependencies patch
github/codeql-action v3.25.11 -> v3.25.12 age adoption passing confidence action patch
node (source) 20.15.0 -> 20.15.1 age adoption passing confidence engines patch
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence devDependencies patch
ruby (source) 3.3.3 -> 3.3.4 age adoption passing confidence patch
ruby/setup-ruby v1.185.0 -> v1.187.0 age adoption passing confidence action minor
stylelint (source) 16.6.1 -> 16.7.0 age adoption passing confidence devDependencies minor

Release Notes

devcontainers/cli (@​devcontainers/cli)

v0.66.0

Compare Source

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

v4.0.3

Compare Source

dprint/dprint (dprint)

v0.47.2

Compare Source

Changes

  • fix(npm): use x64 build for aarch64-pc-windows-msvc (#​887)

Install

Run dprint upgrade or see https://dprint.dev/install/

Checksums

Artifact SHA-256 Checksum
dprint-x86_64-apple-darwin.zip b174a7bc1ee55413da80b4469a5bcd1d91fdda2b813ac212bc8bbd0df293c448
dprint-aarch64-apple-darwin.zip d3af3952e4590663282e66413153f20cf7d3f6ac2795990d3652dec8971f68bb
dprint-x86_64-pc-windows-msvc.zip 20ed46ace9d70dadf564cdee3fdf3d06e44539b05c67387f461062890330c218
dprint-x86_64-pc-windows-msvc-installer.exe ac14be2cf3e62a0f4319eea6073d29ca2e694333cc984b1ef90595779a3b63bd
dprint-x86_64-unknown-linux-gnu.zip 62297402bc9ede9434c33c5de1918d97864002347c0ff85863de7d1ffe6ea384
dprint-x86_64-unknown-linux-musl.zip c821d938d27f85c4c1e68196faa6fb90e64b9ac6ee7396a018489300569f81d0
dprint-aarch64-unknown-linux-gnu.zip 6f5265d252773be43e716bedec5d1e25790292654306bcb772b46f5b245f730e
dprint-aarch64-unknown-linux-musl.zip 8bfe2b1bde933333ba9d84ce33af6cf7129c498bd5f3f8f0abf18c3c0bc4cd26
github/codeql-action (github/codeql-action)

v3.25.12

Compare Source

nodejs/node (node)

v20.15.1

Compare Source

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.

ruby/setup-ruby (ruby/setup-ruby)

v1.187.0

Compare Source

What's Changed

Full Changelog: ruby/setup-ruby@v1.186.0...v1.187.0

v1.186.0

Compare Source

What's Changed

Full Changelog: ruby/setup-ruby@v1.185.0...v1.186.0

stylelint/stylelint (stylelint)

v16.7.0

Compare Source


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 has been generated by Mend Renovate. View repository job log here.

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate Bot added build labels Jul 15, 2024
@renovate
renovate Bot merged commit ff27c72 into live Jul 15, 2024
@renovate
renovate Bot deleted the renovate/all branch July 15, 2024 05:06
@DerekNonGeneric DerekNonGeneric added 🏗️ Category: Build Issues and PRs related to the build directory 📦 Type: Dependencies PRs that modify packages req'd by product in production 📦 Type: Developer Dependencies PRs that modify packages only req'd for local development and testing labels Aug 25, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

🏗️ Category: Build Issues and PRs related to the build directory 📦 Type: Dependencies PRs that modify packages req'd by product in production 📦 Type: Developer Dependencies PRs that modify packages only req'd for local development and testing

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant