Skip to content

Comments

chore(deps): update npm-rolldown#1615

Merged
IWANABETHATGUY merged 1 commit intomainfrom
renovate/npm-rolldown
Jul 15, 2024
Merged

chore(deps): update npm-rolldown#1615
IWANABETHATGUY merged 1 commit intomainfrom
renovate/npm-rolldown

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 14, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) 7.24.7 -> 7.24.9 age adoption passing confidence
@babel/preset-env (source) 7.24.7 -> 7.24.8 age adoption passing confidence
@napi-rs/cli 3.0.0-alpha.57 -> 3.0.0-alpha.58 age adoption passing confidence
glob 10.4.3 -> 10.4.5 age adoption passing confidence
npm-rolldown (source) 0.11.0 -> 0.12.1 age adoption passing confidence
oxlint (source) 0.5.3 -> 0.6.0 age adoption passing confidence
pnpm (source) 9.4.0 -> 9.5.0 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence
rollup (source) 4.18.0 -> 4.18.1 age adoption passing confidence
terser (source) 5.31.1 -> 5.31.2 age adoption passing confidence
vitepress (source) 1.3.0 -> 1.3.1 age adoption passing confidence
why-is-node-running 2.2.2 -> 2.3.0 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v7.24.9

Compare Source

🐛 Bug Fix
💅 Polish
🏠 Internal

v7.24.8

Compare Source

👓 Spec Compliance
🐛 Bug Fix
💅 Polish
napi-rs/napi-rs (@​napi-rs/cli)

v3.0.0-alpha.58

Compare Source

isaacs/node-glob (glob)

v10.4.5

Compare Source

v10.4.4

Compare Source

rolldown/rolldown (npm-rolldown)

v0.12.1

Compare Source

Important features

What's Changed

Please refer to https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md.

New Contributors

Full Changelog: v0.11.1...v0.12.1

v0.12.0

Compare Source

Bug Fixes
Features
Performance Improvements

0.11.1 (2024-07-09)

Bug Fixes
Features

v0.11.1

Compare Source

Bug Fixes
Features
oxc-project/oxc (oxlint)

v0.6.0

Compare Source

Features
pnpm/pnpm (pnpm)

v9.5.0

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.

rollup/rollup (rollup)

v4.18.1

Compare Source

2024-07-08

Bug Fixes
  • Prevent "%" in generated file names to ensure imports resolve (#​5535)
Pull Requests
terser/terser (terser)

v5.31.2

Compare Source

  • drop_unused: scan variables in self-referential class declarations that contain side effects.
  • Don't add parens to arrow function when it's the default for an argument (#​1540)
  • Update domprops (#​1538)
vuejs/vitepress (vitepress)

v1.3.1

Compare Source

Bug Fixes
  • don't reopen browser on restart when vite.server.open is specified (6263db1), closes #​4040
  • theme/regression: typo in component props resulting in nested titles not showing in navbar (01d0d45), closes #​4042
mafintosh/why-is-node-running (why-is-node-running)

v2.3.0

Compare Source

What's Changed

Full Changelog: mafintosh/why-is-node-running@v2.2.2...v2.3.0


Configuration

📅 Schedule: Branch creation - "before 10am on monday" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined).

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

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.

@netlify
Copy link

netlify bot commented Jul 14, 2024

Deploy Preview for rolldown-rs canceled.

Name Link
🔨 Latest commit dd5bf5b
🔍 Latest deploy log https://app.netlify.com/sites/rolldown-rs/deploys/669517666595e2000830598b

@IWANABETHATGUY IWANABETHATGUY enabled auto-merge July 14, 2024 16:17
@renovate renovate bot force-pushed the renovate/npm-rolldown branch 3 times, most recently from 9c2c463 to d4909b7 Compare July 15, 2024 11:48
@IWANABETHATGUY IWANABETHATGUY force-pushed the renovate/npm-rolldown branch from d4909b7 to 010069f Compare July 15, 2024 12:25
@renovate renovate bot force-pushed the renovate/npm-rolldown branch from 010069f to dd5bf5b Compare July 15, 2024 12:34
@IWANABETHATGUY IWANABETHATGUY disabled auto-merge July 15, 2024 13:01
@IWANABETHATGUY IWANABETHATGUY added this pull request to the merge queue Jul 15, 2024
Merged via the queue into main with commit 4d89536 Jul 15, 2024
@IWANABETHATGUY IWANABETHATGUY deleted the renovate/npm-rolldown branch July 15, 2024 13:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant