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

fix(deps): update eslint and prettier (minor) #713

Merged
merged 1 commit into from Mar 26, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 20, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-config-prettier ^9.0.0 -> ^9.1.0 age adoption passing confidence
eslint-plugin-import ^2.28.1 -> ^2.29.1 age adoption passing confidence
eslint-plugin-jsx-a11y ^6.7.1 -> ^6.8.0 age adoption passing confidence
eslint-plugin-prettier ^5.0.1 -> ^5.1.3 age adoption passing confidence
eslint-plugin-react ^7.33.2 -> ^7.34.1 age adoption passing confidence
prettier (source) ^3.0.3 -> ^3.2.5 age adoption passing confidence

Release Notes

prettier/eslint-config-prettier (eslint-config-prettier)

v9.1.0

Compare Source

  • Added: [unicorn/template-indent], (as a [special rule][unicorn/template-indent-special]). Thanks to Gürgün Dayıoğlu (@​gurgunday)!
  • Changed: All the [formatting rules that were deprecated in ESLint 8.53.0][deprecated-8.53.0] are now excluded if you set the ESLINT_CONFIG_PRETTIER_NO_DEPRECATED environment variable.
import-js/eslint-plugin-import (eslint-plugin-import)

v2.29.1

Compare Source

Fixed

v2.29.0

Compare Source

Added
jsx-eslint/eslint-plugin-jsx-a11y (eslint-plugin-jsx-a11y)

v6.8.0

Compare Source

Merged
  • Allow title attribute or aria-label attribute instead of accessible child in the "anchor-has-content" rule #727
Fixed
  • [Docs] aria-activedescendant-has-tabindex: align with changes from #​708 #924
  • [Fix] control-has-associated-label: don't accept whitespace as an accessible label #918
Commits
  • [Tests] migrate helper parsers function from eslint-plugin-react ce4d57f
  • [Refactor] use es-iterator-helpers 52de824
  • [New] mouse-events-have-key-events: add hoverInHandlers/hoverOutHandlers config db64898
  • [New] add polymorphicPropName setting for polymorphic components fffb05b
  • [Fix] isNonInteractiveElement: Upgrade aria-query to 5.3.0 and axobject-query to 3.2.1 64bfea6
  • [Refactor] use hasown instead of has 9a8edde
  • [actions] update used actions 10c061a
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, @babel/register, aud, eslint-doc-generator, eslint-plugin-import, minimist 6d5022d
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/register, eslint-doc-generator, eslint-plugin-import 4dc7f1e
  • [New] anchor-has-content: Allow title attribute OR aria-label attribute e6bfd5c
  • [patch] mouse-events-have-key-events: rport the attribute, not the node eadd70c
  • [Deps] update @babel/runtime, array-includes, array.prototype.flatmap, object.entries, object.fromentries 46ffbc3
  • [Deps] update @babel/runtime, axobject-query, jsx-ast-utils, semver 5999555
  • [Fix] pin aria-query and axe-core to fix failing tests on main 8d8f016
  • [patch] move semver from Deps to Dev Deps 4da13e7
  • [Deps] update ast-types-flow b755318
  • [Dev Deps] update eslint-plugin-import f1c976b
  • [Deps] unpin language-tags 3d1d26d
  • [Docs] no-static-element-interactions: tabIndex is written tabindex 1271153
  • [Deps] Upgrade ast-types-flow to mitigate Docker user namespacing problems f0d2ddb
  • [Dev Deps] pin jackspeak since 2.1.2+ depends on npm aliases, which kill the install process in npm < 6 0c278f4
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.1.3

Compare Source

Patch Changes

v5.1.2

Compare Source

Patch Changes
  • #​623 8210e44 Thanks @​BPScott! - Add exports mapping to package.json, to allow import eslintPluginRecommended from 'eslint-plugin-prettier/recommended' to work as expected.

    Strictly speaking this is a breaking change as it removes the ability for people to import from "eslint-plugin-prettier/eslint-plugin-prettier.js" and "eslint-plugin-prettier/recommended.js" but the former was never recommended in the first place and the latter has only been available for a few days.

  • #​621 2b09e7f Thanks @​JounQin! - feat: support parsing markdown via eslint-mdx natively

v5.1.1

Compare Source

Patch Changes

v5.1.0

Compare Source

Minor Changes
  • #​616 3856413 Thanks @​BPScott! - Add recommended config for the flat config format.

    If you are using flat config, import the recommended config from eslint-plugin-prettier/recommended. Like the legacy format recommended config, this automatically includes the contents of eslint-config-prettier.

    // eslint.config.js
    const eslintPluginPrettierRecommended = require('eslint-plugin-prettier/recommended');
    
    module.exports = [
      // Any other config imports go at the top
      eslintPluginPrettierRecommended,
    ];
Patch Changes
  • #​614 5270877 Thanks @​BPScott! - Add meta block to plugin. This improves debugging and cachebusting when using the new flat config

  • #​603 a63a570 Thanks @​filiptammergard! - fix: specify eslint-config-prettier as peer dependency

    It's already added to peerDependenciesMeta as optional, which means it should also be specified in peerDependencies.

jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.34.1

Compare Source

Fixed
  • [jsx-no-leaked-render][jsx-no-leaked-render]: prevent wrongly adding parens ([#​3700][] @​developer-bandi)
  • [boolean-prop-naming][boolean-prop-naming]: detect TS interfaces ([#​3701][] @​developer-bandi)
  • [boolean-prop-naming][boolean-prop-naming]: literalType error fix ([#​3704][] @​developer-bandi)
  • [boolean-prop-naming][boolean-prop-naming]: allow TSIntersectionType ([#​3705][] @​developer-bandi)
  • [no-unknown-property][no-unknown-property]: support popover, popovertarget, popovertargetaction attributes ([#​3707][] @​ljharb)
  • [no-unknown-property][no-unknown-property]: only match data-* attributes containing - ([#​3713][] @​silverwind)
  • [checked-requires-onchange-or-readonly][checked-requires-onchange-or-readonly]: correct options that were behaving opposite ([#​3715][] @​jaesoekjjang)
Changed
  • [boolean-prop-naming][boolean-prop-naming]: improve error message (@​ljharb)

Configuration

📅 Schedule: Branch creation - "after 9pm,before 9am" in timezone Asia/Tokyo, 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.

@renovate renovate bot requested a review from sosukesuzuki as a code owner October 20, 2023 22:17
@renovate renovate bot added the renovate label Oct 20, 2023
@renovate renovate bot changed the title chore(deps): update dependency eslint to ^8.52.0 chore(deps): update eslint and prettier (minor) Oct 23, 2023
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 3 times, most recently from 3e3135c to ce597e8 Compare October 26, 2023 13:12
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 2 times, most recently from 3a28814 to 1704ba8 Compare November 2, 2023 13:16
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 5 times, most recently from b989c08 to b92c783 Compare November 8, 2023 12:30
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 2 times, most recently from bd3d27e to 7a7bc2d Compare November 18, 2023 12:47
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 2 times, most recently from fe9389c to 0ba5b5d Compare November 27, 2023 21:47
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 4 times, most recently from dd5124c to bd39535 Compare December 5, 2023 14:21
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 5 times, most recently from 1a986f8 to ec76ff5 Compare December 16, 2023 13:04
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 2 times, most recently from 7ac2728 to 8daee59 Compare December 21, 2023 19:44
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 3 times, most recently from 774d834 to e9f5bc4 Compare January 17, 2024 15:02
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 6 times, most recently from a7dc2b1 to 4f7a5f8 Compare February 8, 2024 18:16
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 4 times, most recently from 6d22090 to ae23cc8 Compare February 23, 2024 22:13
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 5 times, most recently from 7277562 to 6d96ebd Compare March 5, 2024 15:26
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 2 times, most recently from 2e98bca to 5662f87 Compare March 12, 2024 15:51
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 3 times, most recently from 2ce4e06 to b5e891a Compare March 18, 2024 18:02
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 2 times, most recently from a2dcfe5 to e90d6e7 Compare March 25, 2024 17:48
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from e90d6e7 to 8dce343 Compare March 26, 2024 07:44
@renovate renovate bot changed the title chore(deps): update eslint and prettier (minor) fix(deps): update eslint and prettier (minor) Mar 26, 2024
@sajikix sajikix merged commit 0e73a61 into master Mar 26, 2024
8 checks passed
@sajikix sajikix deleted the renovate/eslint-and-prettier branch March 26, 2024 07:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant