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

[Snyk] Upgrade @typescript-eslint/eslint-plugin from 2.14.0 to 2.16.0 #21

Closed

Conversation

snyk-bot
Copy link
Contributor

@snyk-bot snyk-bot commented Feb 8, 2020

Snyk has created this PR to upgrade @typescript-eslint/eslint-plugin from 2.14.0 to 2.16.0.

ℹ️ 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 a month ago, on 2020-01-13.
Release notes
Package name: @typescript-eslint/eslint-plugin
  • 2.16.0 - 2020-01-13

    2.16.0 (2020-01-13)

    Bug Fixes

    • eslint-plugin: [no-magic-numbers] handle UnaryExpression for enums (#1415) (852fc31)
    • eslint-plugin: [no-unnec-type-assert] handle JSX attributes (#1002) (3c5659b)
    • eslint-plugin: handle error classes using generics (#1428) (b139540)
    • typescript-estree: fix persisted parse for relative paths (#1424) (9720d2c)
    • typescript-estree: parsing of deeply nested new files in new folder (#1412) (206c94b)
    • typescript-estree: resolve path relative to tsconfigRootDir (#1439) (c709056)

    Features

    • eslint-plugin: [no-unnec-cond] array predicate callbacks (#1206) (f7ad716)
    • eslint-plugin: add default-param-last rule (#1418) (a37ff9f)
    • eslint-plugin: add rule naming-conventions (#1318) (9eab26f)
    • typescript-estree: add parserOption to turn on debug logs (#1413) (25092fd)
    • typescript-estree: add strict type mapping to esTreeNodeToTSNodeMap (#1382) (d3d70a3)
  • 2.15.1-alpha.20 - 2020-01-13
  • 2.15.1-alpha.19 - 2020-01-13
  • 2.15.1-alpha.18 - 2020-01-13
  • 2.15.1-alpha.17 - 2020-01-13
  • 2.15.1-alpha.16 - 2020-01-13
  • 2.15.1-alpha.15 - 2020-01-13
  • 2.15.1-alpha.14 - 2020-01-12
  • 2.15.1-alpha.13 - 2020-01-12
  • 2.15.1-alpha.12 - 2020-01-10
  • 2.15.1-alpha.11 - 2020-01-10
  • 2.15.1-alpha.10 - 2020-01-09
  • 2.15.1-alpha.9 - 2020-01-09
  • 2.15.1-alpha.8 - 2020-01-09
  • 2.15.1-alpha.7 - 2020-01-09
  • 2.15.1-alpha.6 - 2020-01-08
  • 2.15.1-alpha.5 - 2020-01-08
  • 2.15.1-alpha.4 - 2020-01-08
  • 2.15.1-alpha.3 - 2020-01-07
  • 2.15.1-alpha.2 - 2020-01-07
  • 2.15.1-alpha.1 - 2020-01-07
  • 2.15.1-alpha.0 - 2020-01-06
  • 2.15.0 - 2020-01-06

    2.15.0 (2020-01-06)

    Bug Fixes

    • eslint-plugin: crash in no-unnecessary-type-arguments (#1401) (01c939f)
    • typescript-estree: correct persisted parse for windows (#1406) (1a42f3d)

    Features

    • eslint-plugin: [strict-bool-expr] add allowSafe option (#1385) (9344233)
    • eslint-plugin: add no-implied-eval (#1375) (254d276)
  • 2.14.1-alpha.8 - 2020-01-06
  • 2.14.1-alpha.7 - 2020-01-06
  • 2.14.1-alpha.6 - 2020-01-05
  • 2.14.1-alpha.5 - 2020-01-05
  • 2.14.1-alpha.4 - 2020-01-02
  • 2.14.1-alpha.3 - 2020-01-02
  • 2.14.1-alpha.2 - 2020-01-02
  • 2.14.1-alpha.1 - 2020-01-02
  • 2.14.1-alpha.0 - 2019-12-30
  • 2.14.0 - 2019-12-30

    2.14.0 (2019-12-30)

    Bug Fixes

    • eslint-plugin: type assertion in rule no-extra-parens (#1376) (f40639e)
    • typescript-estree: visit typeParameters in OptionalCallExpr (#1377) (cba6a2a)

    Features

    • add internal eslint plugin for repo-specific lint rules (#1373) (3a15413)
from @typescript-eslint/eslint-plugin GitHub release notes
Commit messages
Package name: @typescript-eslint/eslint-plugin
  • d52f519 chore: publish v2.16.0
  • 9eab26f feat(eslint-plugin): add rule naming-conventions (#1318)
  • 25092fd feat(typescript-estree): add parserOption to turn on debug logs (#1413)
  • d8445d5 test: migrate some tests from `assert` to jest `expect` (#1437)
  • c709056 fix(typescript-estree): resolve path relative to tsconfigRootDir (#1439)
  • 3c5659b fix(eslint-plugin): [no-unnec-type-assert] handle JSX attributes (#1002)
  • 4ee1a25 docs(eslint-plugin): improve doc for `requ-array-sort-comp` (#1434)
  • c69e402 chore: migrate lodash from function packages (#1430)
  • 9720d2c fix(typescript-estree): fix persisted parse for relative paths (#1424)
  • a37ff9f feat(eslint-plugin): add default-param-last rule (#1418)
  • b139540 fix(eslint-plugin): handle error classes using generics (#1428)
  • 42b0fcc test(typescript-estree): alignment tests for TemplateLiteral node (#1421)
  • 6c35de6 test(typescript-estree): upgrade `@babel/parser` to v7.7.7 (#1422)
  • d3d70a3 feat(typescript-estree): add strict type mapping to esTreeNodeToTSNodeMap (#1382)
  • a2cd3a7 docs(eslint-plugin): fix typo in ROADMAP.md (#1419)
  • 852fc31 fix(eslint-plugin): [no-magic-numbers] handle UnaryExpression for enums (#1415)
  • 206c94b fix(typescript-estree): parsing of deeply nested new files in new folder (#1412)
  • 6aa6bc7 test(typescript-estree): add more persistentParse tests (#1411)
  • aee7238 docs(eslint-plugin): explicit-member-accessibility (#1409)
  • 40d9127 test(eslint-plugin): migrate validation tools to jest test cases (#1403)
  • f7ad716 feat(eslint-plugin): [no-unnec-cond] array predicate callbacks (#1206)
  • 1898bdf chore(eslint-plugin): add space in comment (#1408)
  • ac789dd chore: publish v2.15.0
  • 1a42f3d fix(typescript-estree): correct persisted parse for windows (#1406)

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

🛠 Adjust upgrade PR settings

🔕 Ignore this dependency or unsubscribe from future upgrade PRs

@shlomif shlomif closed this Feb 10, 2020
@shlomif shlomif deleted the snyk-upgrade-3bfca3e945ac030e93c470bd29183652 branch May 26, 2020 12:10
shlomif added a commit that referenced this pull request Sep 28, 2021
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.

None yet

2 participants