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

fix: update minor-updates #128

Merged
merged 3 commits into from
Jul 20, 2024
Merged

fix: update minor-updates #128

merged 3 commits into from
Jul 20, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 20, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
dfx-bootstrap-icons (source) 2.0.0 -> 2.0.1 age adoption passing confidence
dfx-bootstrap-table (source) 4.0.0 -> 4.0.1 age adoption passing confidence
dfx-helper (source) 8.0.0 -> 8.0.1 age adoption passing confidence
dfx-qrcode (source) 3.0.0 -> 3.0.1 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence

Release Notes

Dafnik/dfts-common (dfx-bootstrap-icons)

v2.0.1

Compare Source

Bug Fixes
  • dfx-bootstrap-icons: bump Angular to v18 (d313379)
Dafnik/dfts-common (dfx-helper)

v8.0.1

Compare Source

Bug Fixes
  • dfx-helper: bump Angular to v18 (555d4c9)
Dafnik/dfts-common (dfx-qrcode)

v3.0.1

Compare Source

Bug Fixes
  • dfx-qrcode: bump Angular to v18 (a137522)
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.


Configuration

📅 Schedule: Branch creation - "after 11:00pm on the 1 day of the month,before 4am on the 2 day of the month,after 11:00pm on the 15 day of the month,before 4am on the 16 day of the month" in timezone Europe/Vienna, Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, 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.

Copy link

github-actions bot commented Jul 20, 2024

This pull request has been automatically deployed using Dafnik's static site preview (SSP) action.
Learn more.

🔎 Commit: 78c11e1
📅 Updated at: 2024-07-20 19:57:58 (UTC)
Preview URL: https://a6fbad49a8.preview.dafnik.me

Note: If there is no further activity, this preview will be deleted 30 day(s) from now on 2024-08-19.

See associated pull request for more information.
@renovate renovate bot force-pushed the renovate/minor-updates branch from 20d97ee to 5ab12cb Compare July 20, 2024 19:55
@renovate renovate bot temporarily deployed to preview-128 July 20, 2024 19:55 Inactive
@Dafnik Dafnik merged commit cf987b3 into develop Jul 20, 2024
8 checks passed
@Dafnik Dafnik deleted the renovate/minor-updates branch July 20, 2024 19:58
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