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 #111

Merged
merged 1 commit into from
Jul 14, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 14, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-config-next (source) ^14.2.4 -> ^14.2.5 age adoption passing confidence
eslint-plugin-react ^7.34.3 -> ^7.34.4 age adoption passing confidence
lucide-react (source) ^0.404.0 -> ^0.408.0 age adoption passing confidence
next (source) ^14.2.4 -> ^14.2.5 age adoption passing confidence
prettier (source) ^3.3.2 -> ^3.3.3 age adoption passing confidence
rimraf ^6.0.0 -> ^6.0.1 age adoption passing confidence

Release Notes

vercel/next.js (eslint-config-next)

v14.2.5

Compare Source

jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.34.4

Compare Source

Fixed
lucide-icons/lucide (lucide-react)

v0.408.0: New icons 0.408.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.407.0: New icons 0.407.0

Compare Source

New icons 🎨

v0.406.0: New icons 0.406.0

Compare Source

New icons 🎨

v0.405.0: New icons 0.405.0

Compare Source

New icons 🎨

vercel/next.js (next)

v14.2.5

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.

isaacs/rimraf (rimraf)

v6.0.1

Compare Source


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" in timezone Europe/Amsterdam, 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.

@renovate renovate bot added the dependencies New dependency updates label Jul 14, 2024
@renovate renovate bot enabled auto-merge (squash) July 14, 2024 22:55
Copy link

vercel bot commented Jul 14, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
next-boilerplate ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 14, 2024 10:56pm

@renovate renovate bot merged commit 2561eb5 into main Jul 14, 2024
8 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch July 14, 2024 22:58
@remcolakens
Copy link
Owner

🎉 This PR is included in version 3.2.1 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

@remcolakens remcolakens added the released This feature has been released label Oct 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies New dependency updates released This feature has been released
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant