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 linters #3219

Open
wants to merge 1 commit into
base: v2-develop
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 5, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence
eslint-plugin-vue (source) 9.26.0 -> 9.28.0 age adoption passing confidence
eslint-plugin-vuejs-accessibility 2.3.0 -> 2.4.1 age adoption passing confidence
prettier (source) 3.2.5 -> 3.3.3 age adoption passing confidence

Release Notes

eslint/eslint (eslint)

v8.57.1

Compare Source

vuejs/eslint-plugin-vue (eslint-plugin-vue)

v9.28.0

Compare Source

v9.27.0

Compare Source

vue-a11y/eslint-plugin-vuejs-accessibility (eslint-plugin-vuejs-accessibility)

v2.4.1

Compare Source

  • fix: use relative path for table links (#​1135) 2c8a293
  • fix: export the new rules for prohibiting use of aria-hidden and role='presentation' on focusable elements. (#​1180) b6c74e5
  • Merge pull request #​1182 from vue-a11y/dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-7.17.0 10fe4e8
  • build(deps-dev): bump @​typescript-eslint/eslint-plugin bf0c891
  • Merge pull request #​1181 from vue-a11y/dependabot/npm_and_yarn/typescript-5.5.4 887e7c0
  • build(deps-dev): bump typescript from 5.5.3 to 5.5.4 cebf496
  • Merge pull request #​1179 from vue-a11y/dependabot/npm_and_yarn/husky-9.1.1 476e639
  • build(deps-dev): bump husky from 9.1.0 to 9.1.1 64448c2
  • Merge pull request #​1178 from vue-a11y/dependabot/npm_and_yarn/ts-jest-29.2.3 f3f0044
  • build(deps-dev): bump ts-jest from 29.2.2 to 29.2.3 a956e8d
  • Merge pull request #​1177 from vue-a11y/dependabot/npm_and_yarn/husky-9.1.0 722c3bd
  • build(deps-dev): bump husky from 9.0.11 to 9.1.0 a407110

v2.4.0

Compare Source

v2.3.1

Compare Source

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


Configuration

📅 Schedule: Branch creation - "before 5am on Monday" in timezone Europe/Warsaw, 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.

Copy link

changeset-bot bot commented Aug 5, 2024

⚠️ No Changeset found

Latest commit: 1b5bf3d

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

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.

0 participants