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 devdependencies (non-major) - autoclosed #45

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jul 1, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) 1.44.1 -> 1.45.2 age adoption passing confidence
@scalprum/react-test-utils 0.1.3 -> 0.2.0 age adoption passing confidence
@testing-library/jest-dom 6.4.5 -> 6.4.6 age adoption passing confidence
@types/node (source) 18.19.33 -> 18.19.41 age adoption passing confidence
@types/node (source) 20.12.12 -> 20.14.11 age adoption passing confidence
jose 5.3.0 -> 5.6.3 age adoption passing confidence
lint-staged 15.2.5 -> 15.2.7 age adoption passing confidence
msw (source) 2.3.0 -> 2.3.2 age adoption passing confidence
prettier (source) 3.2.5 -> 3.3.3 age adoption passing confidence
turbo (source) 1.13.3 -> 1.13.4 age adoption passing confidence
typescript (source) 5.4.5 -> 5.5.3 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.45.2

Compare Source

v1.45.1

Compare Source

v1.45.0

Compare Source

scalprum/scaffloding (@​scalprum/react-test-utils)

v0.2.0

Compare Source

Dependency Updates
  • @scalprum/react-core updated to version 0.8.0
Features
  • enable ScalprumProvider intialization with scalprum instance (894c8bf)
testing-library/jest-dom (@​testing-library/jest-dom)

v6.4.6

Compare Source

Bug Fixes
panva/jose (jose)

v5.6.3

Compare Source

Fixes
  • add sideEffects:false to nested ESM package.json files (f3aff1c)

v5.6.2

Compare Source

Refactor
  • CryptoKey normalization is not always async (b7751f5)
  • weak cache normalized CryptoKey instances (32b25a5)
Fixes
  • ensure KeyObject type in Web API encrypt/decrypt (b7920bd)

v5.6.1

Compare Source

Refactor
  • normalize is always defined for Web API runtimes (7bcb103)
Fixes

v5.6.0

Compare Source

Features
  • support KeyObject inputs in WebCryptoAPI runtimes given compatibility (e178b8f)

v5.5.0

Compare Source

Features

v5.4.1

Compare Source

Fixes
  • ensure latest release on npm is v5.x (a9b2a30)

v5.4.0

Compare Source

Features
  • expose JWT's payload in JWTClaimValidationFailed instances (58bcffb), closes #​680
Refactor
  • add explicit return types everywhere (cc2b2d7)
okonet/lint-staged (lint-staged)

v15.2.7

Compare Source

Patch Changes
  • #​1440 a51be80 Thanks @​iiroj! - In the previous version the native git rev-parse --show-toplevel command was taken into use for resolving the current git repo root. This version drops the --path-format=absolute option to support earlier git versions since it's also the default behavior. If you are still having trouble, please try upgrading git to the latest version.

v15.2.6

Compare Source

Patch Changes
  • #​1433 119adb2 Thanks @​iiroj! - Use native "git rev-parse" commands to determine git repo root directory and the .git config directory, instead of using custom logic. This hopefully makes path resolution more robust on non-POSIX systems.
mswjs/msw (msw)

v2.3.2

Compare Source

v2.3.2 (2024-07-19)

Bug Fixes

v2.3.1

Compare Source

v2.3.1 (2024-06-01)

Bug Fixes
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.

v3.3.2

Compare Source

diff

Fix handlebars path expressions starts with @ (#​16358 by @​Princeyadav05)
{{! Input }}
<div>{{@&#8203;x.y.z}}</div>

{{! Prettier 3.3.1 }}
<div>{{@&#8203;x}}</div>

{{! Prettier 3.3.2 }}
<div>{{@&#8203;x.y.z}}</div>

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - bar3
---

Markdown

<!-- Prettier 3.3.1 -->
---
foo:
  - bar1

  - bar2

  - bar3
---

Markdown
Preserve explicit language in front matter (#​16348 by @​fisker)
<!-- Input -->
---yaml
title: Hello
slug: home
---

<!-- Prettier 3.3.0 -->
---
title: Hello
slug: home
---

<!-- Prettier 3.3.1 -->
---yaml
title: Hello
slug: home
---
Avoid line breaks in import attributes (#​16349 by @​fisker)
// Input
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

// Prettier 3.3.0
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type:
  "json" };

// Prettier 3.3.1
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

v3.3.0

Compare Source

diff

🔗 Release Notes

vercel/turbo (turbo)

v1.13.4: Turborepo v1.13.4

Compare Source

What's Changed

Docs
turbo-ignore
@​turbo/repository
Examples
Changelog

New Contributors

Full Changelog: vercel/turbo@v1.13.3...v1.13.4

Microsoft/TypeScript (typescript)

v5.5.3

Compare Source

v5.5.2

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

@renovate renovate bot force-pushed the renovate/js-devdependencies-(non-major) branch 2 times, most recently from 1024f7e to 0946273 Compare July 7, 2024 00:16
@renovate renovate bot force-pushed the renovate/js-devdependencies-(non-major) branch from 0946273 to 65d90d0 Compare July 18, 2024 06:01
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/js-devdependencies-(non-major) branch from 65d90d0 to dfff26e Compare July 20, 2024 09:13
@renovate renovate bot changed the title chore(deps): update devdependencies (non-major) chore(deps): update devdependencies (non-major) - autoclosed Jul 22, 2024
@renovate renovate bot closed this Jul 22, 2024
@renovate renovate bot deleted the renovate/js-devdependencies-(non-major) branch July 22, 2024 15:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
0 participants