Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Conversation

@renovate
Copy link

@renovate renovate bot commented Jun 1, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) ^20.12.7 -> ^20.14.11 age adoption passing confidence
@typescript-eslint/parser (source) ^7.8.0 -> ^7.16.1 age adoption passing confidence
eslint-plugin-jest ^28.3.0 -> ^28.6.0 age adoption passing confidence
eslint-plugin-prettier ^5.1.3 -> ^5.2.1 age adoption passing confidence
prettier (source) 3.2.5 -> 3.3.3 age adoption passing confidence
ts-jest (source) ^29.1.2 -> ^29.2.2 age adoption passing confidence
typescript (source) ^5.4.5 -> ^5.5.3 age adoption passing confidence

Release Notes

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.16.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.16.0

Compare Source

🩹 Fixes
❤️ Thank You
  • Abraham Guo
  • auvred
  • Josh Goldberg ✨
  • Juan Sanchez
  • Vinccool96
  • YeonJuan
  • Yukihiro Hasegawa

You can read about our versioning strategy and releases on our website.

v7.15.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.14.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.14.0

Compare Source

🚀 Features
  • support TypeScript 5.5
❤️ Thank You
  • Brad Zacher
  • cm-ayf
  • Jake Bailey
  • James Zhan
  • Joshua Chen
  • yoshi2no

You can read about our versioning strategy and releases on our website.

v7.13.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.13.0

Compare Source

🚀 Features
  • parser, typescript-estree: export withoutProjectParserOptions utility
❤️ Thank You
  • Fotis Papadogeorgopoulos
  • Joshua Chen
  • Kirk Waiblinger
  • Tobiloba Adedeji
  • Vinccool96
  • YeonJuan

You can read about our versioning strategy and releases on our website.

v7.12.0

Compare Source

🩹 Fixes
  • types: correct typing ParserOptions
❤️ Thank You
  • Abraham Guo
  • Han Yeong-woo
  • Joshua Chen
  • Kim Sang Du
  • Kirk Waiblinger
  • YeonJuan

You can read about our versioning strategy and releases on our website.

v7.11.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.10.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.9.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

jest-community/eslint-plugin-jest (eslint-plugin-jest)

v28.6.0

Compare Source

Features

v28.5.0

Compare Source

Features
  • allow @typescript-eslint/utils v7 as a direct dependency (#​1567) (1476f10)

v28.4.0

Compare Source

Features
  • valid-expect: supporting automatically fixing missing await in some cases (#​1574) (a407098)
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.1

Compare Source

Patch Changes
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

kulshekhar/ts-jest (ts-jest)

v29.2.2

Compare Source

v29.2.1

Compare Source

v29.2.0

Compare Source

Bug Fixes
  • fix: don't show warning message with Node16/NodeNext (99c4f49), closes #​4266
Features
  • feat(cli): allow migrating cjs presets to transform config (22fb027)
  • feat(presets): add util functions to create ESM presets (06f78ed)
  • feat(presets): add util functions to create CJS presets (f9cc3c0)
Code refactoring
  • refactor: replace lodash deps with native js implementation (40f1708)
  • refactor: use TsJestTransformerOptions type everywhere possibly (7d001be)
  • refactor(cli): use new preset util functions to initialize test config (c2b56ca)
  • refactor(presets): use create preset util functions for cjs presets (922d6d0)
  • test: switch react-app to use Vite (827c8ad)

v29.1.5

Compare Source

Bug Fixes

v29.1.4

Compare Source

Bug Fixes
Features

v29.1.3

Compare Source

Bug Fixes
  • add @jest/transform as an optional peer dependency (0ba7f86)
  • bring back Node 14 support (eda56a7)
Performance Improvements
  • remove ts resolved module cache file (4c88da5)
Microsoft/TypeScript (typescript)

v5.5.3

Compare Source

v5.5.2

Compare Source


Configuration

📅 Schedule: Branch creation - "before 7am on the first day of the month" (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.

@github-actions
Copy link

github-actions bot commented Jun 1, 2024

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from ae1b963 to 534b0a3 Compare June 2, 2024 02:48
@github-actions
Copy link

github-actions bot commented Jun 2, 2024

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from 534b0a3 to 55dbf47 Compare June 4, 2024 05:38
@github-actions
Copy link

github-actions bot commented Jun 4, 2024

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from 55dbf47 to f858ff3 Compare June 5, 2024 12:01
@github-actions
Copy link

github-actions bot commented Jun 5, 2024

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from f858ff3 to 95c816c Compare June 6, 2024 08:42
@github-actions
Copy link

github-actions bot commented Jun 6, 2024

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from 95c816c to f6ab955 Compare June 7, 2024 05:26
@github-actions
Copy link

github-actions bot commented Jun 7, 2024

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from f6ab955 to 0863dbc Compare June 9, 2024 05:08
@github-actions
Copy link

github-actions bot commented Jun 9, 2024

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from 0863dbc to f58edd0 Compare June 12, 2024 05:29
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from f58edd0 to 910f25e Compare June 14, 2024 05:51
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from 910f25e to a292920 Compare June 15, 2024 08:56
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from a292920 to df8027a Compare June 20, 2024 17:54
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from df8027a to b3902e0 Compare June 21, 2024 18:01
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from b3902e0 to 1ae06d8 Compare June 22, 2024 20:41
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from 1ae06d8 to df79def Compare June 25, 2024 05:54
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from df79def to ecf652f Compare June 26, 2024 11:49
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from ecf652f to 53796cd Compare June 28, 2024 02:21
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from 53796cd to 6d30620 Compare June 29, 2024 08:40
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from 6d30620 to 04b9e6e Compare July 4, 2024 20:33
@github-actions
Copy link

github-actions bot commented Jul 4, 2024

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from 04b9e6e to 38b0042 Compare July 8, 2024 23:25
@github-actions
Copy link

github-actions bot commented Jul 8, 2024

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from 38b0042 to 162e203 Compare July 12, 2024 14:43
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from 162e203 to ab95243 Compare July 13, 2024 12:00
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from ab95243 to 1697c80 Compare July 14, 2024 23:34
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from 1697c80 to ecbef3d Compare July 18, 2024 20:56
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

@renovate renovate bot force-pushed the renovate/all-non-major-npm-devdependencies branch from ecbef3d to 71bbb88 Compare July 20, 2024 17:56
@github-actions
Copy link

Sadly there were some test failures on 'That Ubuntu test machine':

The following tests FAILED:
	 69 - tst_platformhelperstest (Timeout)

69: FAIL!  : PlatformHelpersTest::requireThat_parallellExportSucceeds() Compared values are not the same
69:    Actual   ((messages.size())) : 0
69:    Expected (outputPaths.size()): 5
69:    Loc: [../unittests/platformhelperstest.cpp(154)]

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants