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 typescript-eslint monorepo to v3 (major) #155

Merged
merged 1 commit into from Jun 19, 2020

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 24, 2020

This PR contains the following updates:

Package Type Update Change
@typescript-eslint/eslint-plugin dependencies major 2.30.0 -> 3.3.0
@typescript-eslint/parser dependencies major 2.30.0 -> 3.3.0

Release Notes

typescript-eslint/typescript-eslint

v3.3.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-unused-expressions] handle ternary and short-circuit options (#​2194) (ee9f100)
  • typescript-estree: handle TS4.0 breaking change in TupleType (#​2197) (5d68129)
Features
  • eslint-plugin: [naming-convention] better error message and docs for prefix/suffix (#​2195) (a2ffe55)

v3.2.0

Compare Source

Bug Fixes
  • eslint-plugin: [explicit-module-boundary-types] dont report return type errors on constructor overloads (#​2158) (53232d7)
  • eslint-plugin: [explicit-module-boundary-types] handle bodyless arrow functions with explicit return types that return functions (#​2169) (58db655)
  • eslint-plugin: [explicit-module-boundary-types] handle nested functions and functions expressions in a typed variable declaration (#​2176) (6ff450d)
  • eslint-plugin: [no-extra-non-null-assertion] dont report for assertions not followed by the optional chain (#​2167) (e4c1834)
  • eslint-plugin: [no-unnecessary-conditionals] Handle comparison of generics and loose comparisons with undefined values (#​2152) (c86e2a2)
  • eslint-plugin: [prefer-optional-chain] handling first member expression (#​2156) (de18660)
  • eslint-plugin: [return-await] correct handling of ternaries (#​2168) (fe4c0bf)
Features
  • eslint-plugin: [naming-convention] put identifiers in quotes in error messages (#​2182) (fc61932), closes #​2178
  • eslint-plugin: [require-array-sort-compare] add ignoreStringArrays option (#​1972) (6dee784)
  • eslint-plugin: add rule ban-tslint-comment (#​2140) (43ee226)
  • eslint-plugin: add rule no-confusing-non-null-assertion (#​1941) (9b51c44)

v3.1.0

Compare Source

Bug Fixes
  • eslint-plugin: [explicit-module-boundary-types] don't check returned functions if parent function has return type (#​2084) (d7d4eeb)
  • eslint-plugin: [no-unnecessary-condition] handle comparison of any, unknown and loose comparisons with nullish values (#​2123) (1ae1d01)
  • eslint-plugin: [no-unnecessary-condition] improve optional chain handling (#​2111) (9ee399b)
  • eslint-plugin: [no-unnecessary-condition] improve optional chain handling 2 - electric boogaloo (#​2138) (c87cfaf)
  • eslint-plugin: [no-unused-expressions] ignore import expressions (#​2130) (e383691)
  • eslint-plugin: [no-var-requires] false negative for TSAsExpression and MemberExpression (#​2139) (df95338)
  • experimental-utils: downlevel type declarations for versions older than 3.8 (#​2133) (7925823)
Features
  • eslint-plugin: [ban-ts-comments] add "allow-with-description" option (#​2099) (8a0fd18)
  • eslint-plugin: [ban-types] allow selective disable of default options with false value (#​2137) (1cb8ca4)
  • eslint-plugin: [explicit-module-boundary-types] improve accuracy and coverage (#​2135) (caaa859)

3.0.2 (2020-05-27)

Bug Fixes

3.0.1 (2020-05-25)

Bug Fixes

v3.0.2

Compare Source

Bug Fixes

v3.0.1

Compare Source

Bug Fixes

v3.0.0

Compare Source

Please see the release notes for v3.0.0

Bug Fixes
  • eslint-plugin: [dot-notation] fix typo in schema (#​2040) (242328f)
  • eslint-plugin: correct parser peerDep version (fe59f69)
  • experimental-utils: add back SourceCode.isSpaceBetweenTokens (ae82ea4)
  • typescript-estree: remove now defunct Import node type (f199cbd)
  • typescript-estree: use TSEmptyBodyFunctionExpression for body-less nodes (#​1289) (82e7163)
Features
  • add index files to parser and typescript-estree (3dfc46d)
  • eslint-plugin: [no-floating-promises] ignore void operator by default (#​2003) (3626a67)
  • eslint-plugin: [no-unnecessary-condition] remove checkArrayPredicates and always check it (#​1579) (bfd9b60)
  • eslint-plugin: [no-unnecessary-condition] report when non-nullish is compared to null/undefined (#​1659) (7fa9060)
  • eslint-plugin: [prefer-nullish-coalescing][prefer-optional-chain] remove unsafe fixers (52b6085)
  • eslint-plugin: [restrict-template-expressions] allowNumber: true by default (#​2005) (643ec24)
  • eslint-plugin: [restrict-template-expressions] rename allowNullable to allowNullish (#​2006) (264b017)
  • experimental-utils: upgrade eslint types for v7 (#​2023) (06869c9)
  • bump minimum required TS version (#​2004) (7ad4d7c)
  • upgrade to ESLint v7 (#​2022) (208de71)
  • eslint-plugin: [ban-types] rework default options (#​848) (8e31d5d)
  • eslint-plugin: [no-unnecessary-condition] remove option ignoreRHS (#​1163) (ee8dd8f)
  • eslint-plugin: [strict-boolean-expression] rework options (#​1631) (cd14482)
  • eslint-plugin: delete deprecated rules (#​2002) (da0aec2)
  • eslint-plugin: eslint-recommended: disable no-func-assign (#​984) (ae9b8a9)
  • eslint-plugin: eslint-recommended: disable no-obj-calls (#​1000) (b9ca14c)
  • eslint-plugin: update eslint-recommended set (#​1996) (9a96e18)
  • eslint-plugin: update recommended sets (#​2001) (0126b4f)
  • typescript-estree: align nodes with estree 2020 (#​1389) (aff5b62)
  • typescript-estree: align optional fields (#​1429) (0e0010f)
  • drop support for node v8 (#​1997) (b6c3b7b)
  • typescript-estree: always return parserServices (#​716) (5b23443)
  • typescript-estree: handle 3.9's non-null assertion changes (#​2036) (06bec63)

v2.34.0

Compare Source

Bug Fixes
  • typescript-estree: fix handling of range/loc removal (#​2028) (ce344d9)
Features
  • eslint-plugin: [no-invalid-void-type] allow union of void and allowInGenericTypeArguments (#​1960) (1bc105a)
  • eslint-plugin: [restrict-template-expressions] improve error message (#​1926) (1af59ba)
  • experimental-utils: add suggestion property for rule modules (#​2033) (f42a5b0)

v2.33.0

Compare Source

Bug Fixes
  • experimental-utils: remove accidental dep on json-schema (#​2010) (1875fba)
Features
  • eslint-plugin: add extension rule lines-between-class-members (#​1684) (08f93e6)

v2.32.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-base-to-string] support boolean in unions (#​1979) (6987ecc)
  • eslint-plugin: [no-type-alias] handle readonly types in aliases (#​1990) (56d9870)
  • eslint-plugin: [no-unused-expressions] inherit messages from base rule (#​1992) (51ca404)
Features

v2.31.0

Compare Source

Bug Fixes
  • eslint-plugin: [dot-notation] handle missing declarations (#​1947) (383f931)
  • eslint-plugin: [method-signature-style] fix overloaded methods to an intersection type (#​1966) (7f3fba3)
  • eslint-plugin: [return-await] await in a normal function (#​1962) (f82fd7b)
  • eslint-plugin: [unbound-method] false positives for unary expressions (#​1964) (b35070e)
  • eslint-plugin: no-base-to-string boolean expression detect (#​1969) (f78f13a)
Features
  • eslint-plugin: [member-ordering] add decorators support (#​1870) (f7ec192)
  • eslint-plugin: [prefer-optional-chain] added option to convert to suggestion fixer (#​1965) (2f0824b)
  • eslint-plugin: new extended rule 'no-invalid-this' (#​1823) (b18bc35)
  • eslint-plugin-internal: add rule no-poorly-typed-ts-props (#​1949) (56ea7c9)
  • experimental-utils: expose our RuleTester extension (#​1948) (2dd1638)

Renovate configuration

📅 Schedule: "before 3am on Monday" in timezone Europe/Lisbon.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label May 24, 2020
@rfgamaral rfgamaral added the BLOCKED Blocked until further notice label May 25, 2020
@rfgamaral
Copy link
Owner

Although not completely related, I'm blocking this until airbnb/javascript#2223 is completed so I can then review the whole configuration and make the necessary changes.

@renovate renovate bot force-pushed the renovate/major-typescript-eslint-monorepo branch 3 times, most recently from d7e6610 to f2d3462 Compare June 1, 2020 17:14
@renovate renovate bot changed the title fix(deps): update typescript-eslint monorepo to v3 (major) fix(deps): update typescript-eslint monorepo (major) Jun 1, 2020
@renovate renovate bot force-pushed the renovate/major-typescript-eslint-monorepo branch from f2d3462 to b4b5449 Compare June 1, 2020 17:36
@renovate renovate bot changed the title fix(deps): update typescript-eslint monorepo (major) fix(deps): update typescript-eslint monorepo to v3 (major) Jun 1, 2020
@renovate renovate bot force-pushed the renovate/major-typescript-eslint-monorepo branch from b4b5449 to 8806995 Compare June 8, 2020 17:20
@renovate renovate bot changed the title fix(deps): update typescript-eslint monorepo to v3 (major) fix(deps): update typescript-eslint monorepo (major) Jun 8, 2020
@renovate renovate bot force-pushed the renovate/major-typescript-eslint-monorepo branch from 8806995 to eb17867 Compare June 8, 2020 20:48
@renovate renovate bot changed the title fix(deps): update typescript-eslint monorepo (major) fix(deps): update typescript-eslint monorepo to v3 (major) Jun 8, 2020
@renovate renovate bot force-pushed the renovate/major-typescript-eslint-monorepo branch from eb17867 to 175ba0c Compare June 15, 2020 17:31
@renovate renovate bot force-pushed the renovate/major-typescript-eslint-monorepo branch from 175ba0c to 4808915 Compare June 19, 2020 10:47
@rfgamaral rfgamaral removed the BLOCKED Blocked until further notice label Jun 19, 2020
@rfgamaral rfgamaral merged commit f0460bd into master Jun 19, 2020
@rfgamaral rfgamaral deleted the renovate/major-typescript-eslint-monorepo branch June 19, 2020 10:52
rfgamaral pushed a commit that referenced this pull request Jun 19, 2020
# [3.0.0](v2.0.0...v3.0.0) (2020-06-19)

### Bug Fixes

* **deps:** update dependency eslint-config-airbnb to v18.2.0 ([#166](#166)) ([2e78f09](2e78f09))
* **deps:** update dependency eslint-config-airbnb-base to v14.2.0 ([#163](#163)) ([a65551f](a65551f))
* **deps:** update dependency eslint-config-prettier to v6.11.0 ([#140](#140)) ([3fb8b63](3fb8b63))
* **deps:** update dependency eslint-plugin-import to v2.20.2 ([#122](#122)) ([da6dc54](da6dc54))
* **deps:** update dependency eslint-plugin-import to v2.21.2 ([#162](#162)) ([daa69eb](daa69eb))
* **deps:** update dependency eslint-plugin-jsx-a11y to v6.3.0 ([#167](#167)) ([5902c86](5902c86))
* **deps:** update dependency eslint-plugin-prettier to v3.1.3 ([#133](#133)) ([644bdac](644bdac))
* **deps:** update dependency eslint-plugin-prettier to v3.1.4 ([#164](#164)) ([cffc338](cffc338))
* **deps:** update dependency eslint-plugin-react to v7.20.0 ([#153](#153)) ([e4590af](e4590af))
* **deps:** update dependency eslint-plugin-react-hooks to v4 ([#124](#124)) ([51c5f1b](51c5f1b))
* **deps:** update typescript-eslint monorepo to v2.25.0 ([#123](#123)) ([1686e92](1686e92))
* **deps:** update typescript-eslint monorepo to v2.26.0 ([#127](#127)) ([cb26926](cb26926))
* **deps:** update typescript-eslint monorepo to v2.27.0 ([#130](#130)) ([f45e4ac](f45e4ac))
* **deps:** update typescript-eslint monorepo to v2.29.0 ([#137](#137)) ([522cb9f](522cb9f))
* **deps:** update typescript-eslint monorepo to v2.30.0 ([#144](#144)) ([1dad430](1dad430))
* **deps:** update typescript-eslint monorepo to v3 ([#155](#155)) ([f0460bd](f0460bd))
* **peers:** update dependency eslint to ^6.8 ([dc3a34e](dc3a34e))

### Features

* **peers:** support ESLint v7 ([668dd5b](668dd5b))

### BREAKING CHANGES

* **peers:** drop support for ESLint versions unsupported by Airbnb
configurations
@rfgamaral
Copy link
Owner

🎉 This PR is included in version 3.0.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file released
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants