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

Update devDependencies (non-major) #70

Merged
merged 2 commits into from
Oct 3, 2024
Merged

Update devDependencies (non-major) #70

merged 2 commits into from
Oct 3, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 15, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/jest (source) 29.5.12 -> 29.5.13 age adoption passing confidence
@types/node (source) 20.14.10 -> 20.16.10 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.15.0 -> 7.18.0 age adoption passing confidence
@typescript-eslint/parser (source) 7.15.0 -> 7.18.0 age adoption passing confidence
@vercel/ncc 0.38.1 -> 0.38.2 age adoption passing confidence
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence
eslint-plugin-github 5.0.1 -> 5.0.2 age adoption passing confidence
eslint-plugin-jest 28.6.0 -> 28.8.3 age adoption passing confidence
eslint-plugin-prettier 5.1.3 -> 5.2.1 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence
ts-jest (source) 29.1.5 -> 29.2.5 age adoption passing confidence
typescript (source) 5.5.3 -> 5.6.2 age adoption passing confidence

Release Notes

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

v7.18.0

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-assertion] prevent runtime error when asserting a variable declared in default TS lib

  • eslint-plugin: [unbound-method] report on destructuring in function parameters

  • eslint-plugin: [no-duplicate-type-constituents] shouldn't report on error types

  • eslint-plugin: [strict-boolean-expressions] support branded booleans

❤️ Thank You
  • auvred
  • Oliver Salzburg
  • Vinccool96
  • Yukihiro Hasegawa

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

v7.17.0

Compare Source

🚀 Features
  • eslint-plugin: backport no-unsafe-function type, no-wrapper-object-types from v8 to v7

  • eslint-plugin: [return-await] add option to report in error-handling scenarios only, and deprecate "never"

🩹 Fixes
  • eslint-plugin: [no-floating-promises] check top-level type assertions (and more)

  • eslint-plugin: [strict-boolean-expressions] consider assertion function argument a boolean context

  • eslint-plugin: [no-unnecessary-condition] false positive on optional private field

❤️ Thank You
  • Armano
  • Josh Goldberg ✨
  • Kirk Waiblinger
  • StyleShit

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

v7.16.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-parameters] descend into all parts of mapped types in no-unnecessary-type-parameters
❤️ Thank You
  • Dan Vanderkam

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

v7.16.0

Compare Source

🚀 Features
  • rule-tester: stricter rule test validations

  • eslint-plugin: [no-unnecessary-parameter-property-assignment] add new rule

  • eslint-plugin: add support for nested namespaces to unsafe-member-access

  • eslint-plugin: [no-floating-promises] add checkThenables option

🩹 Fixes
  • deps: update dependency @​eslint-community/regexpp to v4.11.0

  • eslint-plugin: [no-floating-promises] add suggestions to tests from #​9263 checkThenables

  • website: react key error on internal pages of website

  • eslint-plugin: [restrict-template-expressions] don't report tuples if allowArray option is enabled

❤️ 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.

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

v7.18.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.17.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.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.

vercel/ncc (@​vercel/ncc)

v0.38.2

Compare Source

Bug Fixes

Huge thanks to @​theoludwig 🎉

eslint/eslint (eslint)

v8.57.1

Compare Source

github/eslint-plugin-github (eslint-plugin-github)

v5.0.2

Compare Source

What's Changed

Full Changelog: github/eslint-plugin-github@v5.0.1...v5.0.2

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

v28.8.3

Compare Source

Bug Fixes
  • prefer-importing-jest-globals: don't add imports in the middle of statements (#​1645) (9c4197c)

v28.8.2

Compare Source

Performance Improvements
  • prefer-importing-jest-globals: stop collecting import specifiers for no reason (#​1646) (0660242)

v28.8.1

Compare Source

Bug Fixes
  • prefer-importing-jest-globals: support typescript-eslint parser (#​1639) (307f6a7)

v28.8.0

Compare Source

Features
  • import formatting rules from eslint-plugin-jest-formatting (#​1563) (74078ee)

v28.7.0

Compare Source

Features
  • allow [@typescript-eslint](https://redirect.github.com/typescript-eslint) v8 (#​1636) (fb43171)
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.

kulshekhar/ts-jest (ts-jest)

v29.2.5

Compare Source

v29.2.4

Compare Source

v29.2.3

Compare Source

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

v5.6.2

Compare Source

v5.5.4: TypeScript 5.5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the automerge label Jul 15, 2024
@renovate renovate bot enabled auto-merge (squash) July 15, 2024 01:17
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 5 times, most recently from b1c002d to 3ae9d59 Compare July 21, 2024 12:06
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 5 times, most recently from 51ca45d to 3a1c4cf Compare July 29, 2024 18:40
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 4 times, most recently from de84bb2 to 9d16669 Compare August 7, 2024 19:01
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from cea5832 to b419b1f Compare August 16, 2024 18:42
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 3 times, most recently from 544dd6d to 6b85642 Compare August 23, 2024 17:52
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 4 times, most recently from 2019eb9 to d3a3e7d Compare September 2, 2024 03:32
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 4 times, most recently from 49b66b0 to 3c3793b Compare September 9, 2024 20:13
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from 3c3793b to 7cae372 Compare September 11, 2024 13:49
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from fd9eab3 to d60ec2c Compare September 16, 2024 16:02
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 5 times, most recently from 29a2563 to 691c51b Compare September 25, 2024 23:18
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from 691c51b to 41c2ebc Compare September 27, 2024 18:15
@simu simu disabled auto-merge October 3, 2024 11:56
@simu simu merged commit febd080 into main Oct 3, 2024
16 of 19 checks passed
@simu simu deleted the renovate/dev-dependencies branch October 3, 2024 11:57
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