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 eslint/prettier #241

Merged
merged 1 commit into from
Jul 23, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 4, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@typescript-eslint/eslint-plugin (source) 7.14.1 -> 7.16.1 age adoption passing confidence
@typescript-eslint/parser (source) 7.14.1 -> 7.16.1 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

Release Notes

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

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.

v7.15.0

Compare Source

🚀 Features
  • eslint-plugin: [array-type] detect Readonly<string[]> case

  • eslint-plugin: back-port new rules around empty object types from v8

🩹 Fixes
  • disable EXPERIMENTAL_useProjectService in disabled-type-checked shared config

  • eslint-plugin: [no-unsafe-return] differentiate a types-error any from a true any

  • eslint-plugin: [no-unsafe-call] differentiate a types-error any from a true any

❤️ Thank You
  • auvred
  • Kim Sang Du
  • rgehbt
  • Vinccool96

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

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.

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
@&#8203;(foo`tagged template`)
class X {}

// Prettier 3.3.2
@&#8203;foo`tagged template`
class X {}

// Prettier 3.3.3
@&#8203;(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:

@&#8203;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 - At any time (no schedule defined), 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from pbennett as a code owner July 4, 2024 19:01
@renovate renovate bot requested a review from drichar as a code owner July 4, 2024 19:01
Copy link

vercel bot commented Jul 4, 2024

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

Name Status Preview Comments Updated (UTC)
reti ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 23, 2024 10:06pm

@renovate renovate bot force-pushed the renovate/contracts-eslintprettier branch from 6259d7a to f8e0da4 Compare July 11, 2024 20:34
@renovate renovate bot changed the title chore(deps): update eslint/prettier to v7.15.0 chore(deps): update eslint/prettier to v7.16.0 Jul 11, 2024
@renovate renovate bot force-pushed the renovate/contracts-eslintprettier branch from f8e0da4 to c8dd2be Compare July 15, 2024 20:12
@renovate renovate bot force-pushed the renovate/contracts-eslintprettier branch from c8dd2be to 25346ea Compare July 16, 2024 14:10
@renovate renovate bot changed the title chore(deps): update eslint/prettier to v7.16.0 chore(deps): update eslint/prettier Jul 16, 2024
@renovate renovate bot force-pushed the renovate/contracts-eslintprettier branch from 25346ea to 5e63acb Compare July 18, 2024 07:48
@renovate renovate bot force-pushed the renovate/contracts-eslintprettier branch from 5e63acb to 2893d96 Compare July 18, 2024 07:52
@renovate renovate bot force-pushed the renovate/contracts-eslintprettier branch from 2893d96 to 79fcd29 Compare July 18, 2024 19:02
@renovate renovate bot force-pushed the renovate/contracts-eslintprettier branch from 79fcd29 to 52bfd21 Compare July 18, 2024 19:55
@renovate renovate bot force-pushed the renovate/contracts-eslintprettier branch from 52bfd21 to 2311c7f Compare July 20, 2024 13:33
@renovate renovate bot force-pushed the renovate/contracts-eslintprettier branch from 2311c7f to 3aec8c6 Compare July 21, 2024 12:45
@renovate renovate bot force-pushed the renovate/contracts-eslintprettier branch from 3aec8c6 to 1a48c06 Compare July 23, 2024 20:14
@renovate renovate bot force-pushed the renovate/contracts-eslintprettier branch from 1a48c06 to a6fc1cf Compare July 23, 2024 20:47
@renovate renovate bot force-pushed the renovate/contracts-eslintprettier branch from a6fc1cf to 72557fa Compare July 23, 2024 22:05
@drichar drichar merged commit 9a33a61 into dev Jul 23, 2024
4 checks passed
@drichar drichar deleted the renovate/contracts-eslintprettier branch July 23, 2024 22:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants