Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #99

Merged
merged 2 commits into from
Jul 19, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 8, 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
playwright (source) ^1.45.0 -> ^1.45.2 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
typescript (source) ^5.5.2 -> ^5.5.3 age adoption passing confidence
vike ^0.4.177 -> ^0.4.181 age adoption passing confidence
vite (source) ^5.3.2 -> ^5.3.4 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
microsoft/playwright (playwright)

v1.45.2

Compare Source

v1.45.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.

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
Microsoft/TypeScript (typescript)

v5.5.3

Compare Source

vikejs/vike (vike)

v0.4.181

Compare Source

Bug Fixes
  • add assertUsage() to navigate() (fix #​1751) (01873ad)
  • add missing getPageContext() type pointer (39f5754)
  • always hard redirect upon external URL (24641cd)
  • condense client-side error message (3a7b262)
  • don't try to remove Base URL from pageContext.urlLogical or pageContext._urlRewrite (0d35bc9)
  • fix * redirection (c9f5331)
  • fix ipfs:// and ipns:// URL handling (6b75eae)
  • improve JSDocs (2eaeea4)
  • improve prefetch() validation (2bc59a9)
  • make build deterministic (closes #​1750) (648cd01)
  • make client-side error message more precise and compact (ad30cc4)
Features

v0.4.180

Compare Source

Bug Fixes
  • avoid cloning pageContext on the client-side (9f4ee04)
  • avoid cloning pageContext when routing (6ade0d5)
  • fix type PageContext['routeParams'] (1a2bff3)
  • improve handling of useConfig() serialization error (9384166)
  • improve serialization error message (0b717ad)
  • support injectScriptsAt: 'STREAM' (#​1740) (b0d2d3a)
  • update react-streaming (c4d759a)
Features

v0.4.179

Compare Source

Bug Fixes

v0.4.178

Compare Source

Bug Fixes
vitejs/vite (vite)

v5.3.4

Compare Source

v5.3.3

Compare Source


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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.

@renovate renovate bot added the dependencies label Jul 8, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 3e62f4e to 1f2f7e0 Compare July 15, 2024 14:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1f2f7e0 to 2090080 Compare July 16, 2024 11:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2090080 to 0b06cb7 Compare July 19, 2024 13:02
Copy link
Contributor Author

renovate bot commented Jul 19, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@magne4000 magne4000 merged commit 95fa866 into main Jul 19, 2024
5 checks passed
@magne4000 magne4000 deleted the renovate/all-minor-patch branch July 19, 2024 13:35
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.

None yet

1 participant