Dependencies: [skip ci] Bump @typescript-eslint/eslint-plugin from 5.59.5 to 6.1.0
Bumps @typescript-eslint/eslint-plugin from 5.59.5 to 6.1.0.
Release notes
Sourced from @typescript-eslint/eslint-plugin
's releases.
v6.1.0
6.1.0 (2023-07-17)
Bug Fixes
- eslint-plugin: [comma-dangle] fixed crash from undefined predicate.ignore (#7223) (d368164)
- eslint-plugin: [no-floating-promises] false negative calling .then with second argument undefined (#6881) (606a52c), closes #6850
- eslint-plugin: [no-floating-promises] finally should be transparent to unhandled promises (#7092) (2a4421c)
- eslint-plugin: [no-unnecessary-type-constraint] correctly fix in cts/mts files (#6795) (1404796)
- eslint-plugin: [no-unused-vars] check if any variable definition is exported (#6873) (587ac30), closes #6188
- eslint-plugin: fix schemas across several rules and add schema tests (#6947) (dd31bed)
- eslint-plugin: include the rules types in the package (#7215) (a3da11d)
- typescript-estree: remove ts.sys watch program override (#7252) (41d6e9d)
- utils: accept null as default option in
applyDefault
(#6724) (841889f)Features
- typescript-estree: add EXPERIMENTAL_useProjectService option to use TypeScript project service (#6754) (6d3d162)
You can read about our versioning strategy and releases on our website.
v6.0.0
See the announcement blog post for a friendly description of all changes and CHANGELOG.md for a full organized list of them.
🎉 What's Changed
- feat: made BaseNode.parent non-optional by
@JoshuaKGoldberg
in typescript-eslint/typescript-eslint#5252- feat(experimental-utils): console.warn on import of experimental-utils by
@kball
in typescript-eslint/typescript-eslint#6179- chore(eslint-plugin): remove deprecated rules for v6 by
@JoshuaKGoldberg
in typescript-eslint/typescript-eslint#6112- feat: remove partial type-information program by
@bradzacher
in typescript-eslint/typescript-eslint#6066- chore(typescript-estree): remove unnecessary this.inTypeMode field by
@bradzacher
in typescript-eslint/typescript-eslint#6375- feat(eslint-plugin): deprecate no-type-alias by
@JoshuaKGoldberg
in typescript-eslint/typescript-eslint#6229- chore(typescript-estree): remove visitor-keys backwards compat export by
@JoshuaKGoldberg
in typescript-eslint/typescript-eslint#6242- fix(typescript-estree): wrap import = declaration in an export node by
@JoshuaKGoldberg
in typescript-eslint/typescript-eslint#5885- feat(typescript-estree): add type checker wrapper APIs to ParserServicesWithTypeInformation by
@JoshuaKGoldberg
in typescript-eslint/typescript-eslint#6404- fix: replace tsutils with ts-api-tools by
@JoshuaKGoldberg
in typescript-eslint/typescript-eslint#6428- feat: bump ts-api-utils to v0.0.21 by
@bradzacher
in typescript-eslint/typescript-eslint#6459- feat(eslint-plugin): rework configs: recommended, strict, stylistic; -type-checked by
@JoshuaKGoldberg
in typescript-eslint/typescript-eslint#5251- feat: remove
experimental-utils
by@bradzacher
in typescript-eslint/typescript-eslint#6468- fix(ast-spec): remove more invalid properties by
@JoshuaKGoldberg
in typescript-eslint/typescript-eslint#6243- feat(eslint-plugin): add config that disables type-aware linting by
@bradzacher
in typescript-eslint/typescript-eslint#6470- chore: update downlevel-dts config to target TS4.2 by
@bradzacher
in typescript-eslint/typescript-eslint#6471- feat: bump ts-api-utils to v0.0.22 by
@bradzacher
in typescript-eslint/typescript-eslint#6472- chore: cleanup repo lint + typechecking by
@bradzacher
in typescript-eslint/typescript-eslint#6473- test: allow to execute tests on windows by
@armano2
in typescript-eslint/typescript-eslint#6488- fix(typescript-estree): account for namespace nesting in AST conversion by
@JoshuaKGoldberg
in typescript-eslint/typescript-eslint#6272- feat: add package.json exports for public packages by
@bradzacher
in typescript-eslint/typescript-eslint#6458- fix: bumped ts-api-utils to 0.0.39 by
@JoshuaKGoldberg
in typescript-eslint/typescript-eslint#6497- fix: rename typeParameters to typeArguments where needed by
@JoshuaKGoldberg
in typescript-eslint/typescript-eslint#5384
... (truncated)
Changelog
Sourced from @typescript-eslint/eslint-plugin
's changelog.
6.1.0 (2023-07-17)
Bug Fixes
- eslint-plugin: [comma-dangle] fixed crash from undefined predicate.ignore (#7223) (d368164)
- eslint-plugin: [no-floating-promises] false negative calling .then with second argument undefined (#6881) (606a52c), closes #6850
- eslint-plugin: [no-floating-promises] finally should be transparent to unhandled promises (#7092) (2a4421c)
- eslint-plugin: [no-unnecessary-type-constraint] correctly fix in cts/mts files (#6795) (1404796)
- eslint-plugin: [no-unused-vars] check if any variable definition is exported (#6873) (587ac30), closes #6188
- eslint-plugin: fix schemas across several rules and add schema tests (#6947) (dd31bed)
- eslint-plugin: include the rules types in the package (#7215) (a3da11d)
Features
- typescript-estree: add EXPERIMENTAL_useProjectService option to use TypeScript project service (#6754) (6d3d162)
You can read about our versioning strategy and releases on our website.
6.0.0 (2023-07-10)
Bug Fixes
- bumped ts-api-utils to 0.0.39 (#6497) (217c710)
- correct handling of additionalProperties in object schemas (#6939) (489c7a5)
- correct lint error after merge (277fdb5)
- eslint-plugin: [explicit-module-boundary-types] remove shouldTrackReferences option from schema (#5399) (6d32734)
- eslint-plugin: allow parser@^6.0.0 (#6630) (92908bd)
- eslint-plugin: remove valid-typeof disable in eslint-recommended (#5381) (b82df5e)
- fix illegal decorator check (#6723) (c456f8c)
- rename typeParameters to typeArguments where needed (#5384) (08d757b)
- replace tsutils with ts-api-tools (#6428) (79327b4)
- type-utils: treat intrinsic types as if they are from lib and never match error types (#6869) (ecb57de)
- typescript-estree: account for namespace nesting in AST conversion (#6272) (09e3877)
- update
exports
field in package.json files (#6550) (53776c2)chore
Features
... (truncated)
Commits
-
d98f1e8
chore: publish v6.1.0 -
1404796
fix(eslint-plugin): [no-unnecessary-type-constraint] correctly fix in cts/mts... -
587ac30
fix(eslint-plugin): [no-unused-vars] check if any variable definition is expo... -
2a4421c
fix(eslint-plugin): [no-floating-promises] finally should be transparent to u... -
6d3d162
feat(typescript-estree): add EXPERIMENTAL_useProjectService option to use Typ... -
606a52c
fix(eslint-plugin): [no-floating-promises] false negative calling .then with ... -
d368164
fix(eslint-plugin): [comma-dangle] fixed crash from undefined predicate.ignor... -
e08a722
docs: fix typo in explicit-member-accessibility (#7224) -
a3da11d
fix(eslint-plugin): include the rules types in the package (#7215) -
2e30379
chore: bump dependency versions (#7191) - Additional commits viewable in compare view