kc-workspace / kcws-js

A personal monorepo for javascript and typescript libraries
https://js.kcws.kamontat.net
GNU Affero General Public License v3.0
1 stars 0 forks source link

[Snyk] Upgrade @typescript-eslint/eslint-plugin from 6.11.0 to 6.13.1 #151

Closed kamontat closed 7 months ago

kamontat commented 8 months ago

This PR was automatically created by Snyk using the credentials of a real user.


Snyk has created this PR to upgrade @typescript-eslint/eslint-plugin from 6.11.0 to 6.13.1.

:information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
- The recommended version is **32 versions** ahead of your current version. - The recommended version was released **25 days ago**, on 2023-11-28.
Release notes
Package name: @typescript-eslint/eslint-plugin
  • 6.13.1 - 2023-11-28

    6.13.1 (2023-11-28)

    Bug Fixes

    • default to parse all JSDoc and provide options to configure it (#7999) (779e13e)

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

  • 6.13.1-alpha.0 - 2023-11-27
  • 6.13.0 - 2023-11-27

    6.13.0 (2023-11-27)

    Note for eslint plugin authors and other API consumers

    TypeScript v5.3 shipped with a type change that was incompatible with our types. This change has been fixed and will be released in v5.3.3. Until that time you can work around this error using skipLibCheck.

    Bug Fixes

    • typescript-estree: ensure backwards compat with pre-5.3 import attributes (#7967) (810fc8c)

    Features

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

  • 6.12.1-alpha.7 - 2023-11-27
  • 6.12.1-alpha.6 - 2023-11-27
  • 6.12.1-alpha.5 - 2023-11-24
  • 6.12.1-alpha.4 - 2023-11-24
  • 6.12.1-alpha.3 - 2023-11-24
  • 6.12.1-alpha.2 - 2023-11-23
  • 6.12.1-alpha.1 - 2023-11-21
  • 6.12.1-alpha.0 - 2023-11-20
  • 6.12.0 - 2023-11-20

    6.12.0 (2023-11-20)

    Bug Fixes

    • eslint-plugin: [class-methods-use-this] detect a problematic case for private/protected members if ignoreClassesThatImplementAnInterface is set (#7705) (155aa1f)
    • eslint-plugin: [no-unnecessary-condition] fix false positive with computed member access and branded key type (#7706) (f151b26)
    • eslint-plugin: [switch-exhaustiveness-check] enum members with new line or single quotes are not being fixed correctly (#7806) (a034d0a), closes #7768
    • utils: add missing fields to flat config types (#7933) (533861a)
    • utils: allow string processor in flat config (024ed9e)

    Features

    • [member-ordering] add accessor support for member-ordering (#7927) (3c8312d)
    • eslint-plugin: [switch-exhaustiveness-check] add requireDefaultForNonUnion option (#7880) (4cfcd45)
    • update TypeScript to 5.3-rc (#7923) (9034d17)

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

  • 6.11.1-alpha.38 - 2023-11-20
  • 6.11.1-alpha.36 - 2023-11-19
  • 6.11.1-alpha.28 - 2023-11-17
  • 6.11.1-alpha.27 - 2023-11-17
  • 6.11.1-alpha.24 - 2023-11-17
  • 6.11.1-alpha.23 - 2023-11-17
  • 6.11.1-alpha.22 - 2023-11-17
  • 6.11.1-alpha.21 - 2023-11-16
  • 6.11.1-alpha.20 - 2023-11-16
  • 6.11.1-alpha.19 - 2023-11-16
  • 6.11.1-alpha.18 - 2023-11-15
  • 6.11.1-alpha.17 - 2023-11-15
  • 6.11.1-alpha.16 - 2023-11-15
  • 6.11.1-alpha.15 - 2023-11-14
  • 6.11.1-alpha.14 - 2023-11-14
  • 6.11.1-alpha.12 - 2023-11-13
  • 6.11.1-alpha.10 - 2023-11-13
  • 6.11.1-alpha.9 - 2023-11-13
  • 6.11.1-alpha.3 - 2023-11-13
  • 6.11.1-alpha.0 - 2023-11-13
  • 6.11.0 - 2023-11-13

    6.11.0 (2023-11-13)

    Bug Fixes

    • eslint-plugin: [explicit-function-return-type] support JSX attributes in allowTypedFunctionExpressions (#7553) (be2777c)
    • eslint-plugin: [no-unnecessary-qualifier] handle nested namespace id (#7883) (a668f5b)

    Features

    • add no-unsafe-unary-minus rule (#7390) (c4709c2)
    • add types for flat config files (#7273) (66cd0c0)
    • allow typescript 5.3.0-beta as devDependency (#7821) (b6c40b4)
    • eslint-plugin: no-unsafe-enum-comparison handles switch cases (#7898) (72cb9e4)
    • typescript-estree: skip isTTY version check if user passes loggerFn on unsupported TypeScript version warning (#7739) (9656e13)
    • utils: add ESLint CodePath selector types (#7551) (99a026f)
    • utils: update types to reflect RuleContext and SourceCode changes and deprecations (#7812) (b73d8b2)

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

from @typescript-eslint/eslint-plugin GitHub release notes
Commit messages
Package name: @typescript-eslint/eslint-plugin
  • 14f3ff0 chore: publish v6.13.1
  • 779e13e fix: default to parse all JSDoc and provide options to configure it (#7999)
  • 39c437a chore: publish v6.13.0
  • 3d2a344 feat(typescript-estree): pass jsDocParsingMode everywhere (#7997)
  • fb50638 feat: support TS 5.3 (#7968)
  • d244b0e chore(deps): update dependency @ types/node to v20.9.3 (#7989)
  • d378f9e chore(deps): update dependency @ swc/core to v1.3.99 (#7985)
  • 8b1e09e chore: update sponsors (#7981)
  • a9fbeb7 docs: fix incorrect example command (#7976)
  • 810fc8c fix(typescript-estree): ensure backwards compat with pre-5.3 import attributes (#7967)
  • 9139b9d chore: revert "chore(deps): update dependency react-resizable-panels to ^0.0.57" (#7963)
  • 9093e95 chore: publish v6.12.0
  • 237259b chore(deps): update dependency @ types/node to v20.9.1 (#7958)
  • 2e535b8 chore(deps): update dependency prettier to v3.1.0 (#7938)
  • 4a079d7 chore(deps): update dependency react-resizable-panels to ^0.0.57 (#7937)
  • a842bc9 chore(deps): update dependency ignore to v5.3.0 (#7953)
  • 4cfcd45 feat(eslint-plugin): [switch-exhaustiveness-check] add requireDefaultForNonUnion option (#7880)
  • 9034d17 feat: update TypeScript to 5.3-rc (#7923)
  • 5dbf622 chore: fix failing integration test snapshots post-merge
  • 8ec3800 chore(deps): update yarn to v3.7.0 (#7947)
  • 2f2fb61 docs: add `getting_started.mdx` pnpm command (#7952)
  • 92628ae chore: add windows ci (#7695)
  • 155aa1f fix(eslint-plugin): [class-methods-use-this] detect a problematic case for private/protected members if `ignoreClassesThatImplementAnInterface` is set (#7705)
  • 5ab15ce chore(deps): update dependency lint-staged to v15.1.0 (#7931)
Compare

**Note:** *You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.* For more information: 🧐 [View latest project report](https://app.snyk.io/org/kamontat/project/e23060c2-bf8a-428c-9a3d-68e9443ce858?utm_source=github&utm_medium=referral&page=upgrade-pr) 🛠 [Adjust upgrade PR settings](https://app.snyk.io/org/kamontat/project/e23060c2-bf8a-428c-9a3d-68e9443ce858/settings/integration?utm_source=github&utm_medium=referral&page=upgrade-pr) 🔕 [Ignore this dependency or unsubscribe from future upgrade PRs](https://app.snyk.io/org/kamontat/project/e23060c2-bf8a-428c-9a3d-68e9443ce858/settings/integration?pkg=@typescript-eslint/eslint-plugin&utm_source=github&utm_medium=referral&page=upgrade-pr#auto-dep-upgrades)
mergify[bot] commented 8 months ago

Hey @kamontat, this pull request failed to merge and has been dequeued from the merge train. If you believe your PR failed in the merge train because of a flaky test, requeue it by commenting with @mergifyio requeue. More details can be found on the Queue: Embarked in merge train check-run.