proxy-chain
proxy-chain copied to clipboard
chore: bump @typescript-eslint/eslint-plugin from 5.29.0 to 6.1.0
Bumps @typescript-eslint/eslint-plugin from 5.29.0 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
@​JoshuaKGoldbergin typescript-eslint/typescript-eslint#5252- feat(experimental-utils): console.warn on import of experimental-utils by
@​kballin typescript-eslint/typescript-eslint#6179- chore(eslint-plugin): remove deprecated rules for v6 by
@​JoshuaKGoldbergin typescript-eslint/typescript-eslint#6112- feat: remove partial type-information program by
@​bradzacherin typescript-eslint/typescript-eslint#6066- chore(typescript-estree): remove unnecessary this.inTypeMode field by
@​bradzacherin typescript-eslint/typescript-eslint#6375- feat(eslint-plugin): deprecate no-type-alias by
@​JoshuaKGoldbergin typescript-eslint/typescript-eslint#6229- chore(typescript-estree): remove visitor-keys backwards compat export by
@​JoshuaKGoldbergin typescript-eslint/typescript-eslint#6242- fix(typescript-estree): wrap import = declaration in an export node by
@​JoshuaKGoldbergin typescript-eslint/typescript-eslint#5885- feat(typescript-estree): add type checker wrapper APIs to ParserServicesWithTypeInformation by
@​JoshuaKGoldbergin typescript-eslint/typescript-eslint#6404- fix: replace tsutils with ts-api-tools by
@​JoshuaKGoldbergin typescript-eslint/typescript-eslint#6428- feat: bump ts-api-utils to v0.0.21 by
@​bradzacherin typescript-eslint/typescript-eslint#6459- feat(eslint-plugin): rework configs: recommended, strict, stylistic; -type-checked by
@​JoshuaKGoldbergin typescript-eslint/typescript-eslint#5251- feat: remove
experimental-utilsby@​bradzacherin typescript-eslint/typescript-eslint#6468- fix(ast-spec): remove more invalid properties by
@​JoshuaKGoldbergin typescript-eslint/typescript-eslint#6243- feat(eslint-plugin): add config that disables type-aware linting by
@​bradzacherin typescript-eslint/typescript-eslint#6470- chore: update downlevel-dts config to target TS4.2 by
@​bradzacherin typescript-eslint/typescript-eslint#6471- feat: bump ts-api-utils to v0.0.22 by
@​bradzacherin typescript-eslint/typescript-eslint#6472- chore: cleanup repo lint + typechecking by
@​bradzacherin typescript-eslint/typescript-eslint#6473- test: allow to execute tests on windows by
@​armano2in typescript-eslint/typescript-eslint#6488- fix(typescript-estree): account for namespace nesting in AST conversion by
@​JoshuaKGoldbergin typescript-eslint/typescript-eslint#6272- feat: add package.json exports for public packages by
@​bradzacherin typescript-eslint/typescript-eslint#6458- fix: bumped ts-api-utils to 0.0.39 by
@​JoshuaKGoldbergin typescript-eslint/typescript-eslint#6497- fix: rename typeParameters to typeArguments where needed by
@​JoshuaKGoldbergin 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
exportsfield in package.json files (#6550) (53776c2)chore
Features
... (truncated)
Commits
d98f1e8chore: publish v6.1.01404796fix(eslint-plugin): [no-unnecessary-type-constraint] correctly fix in cts/mts...587ac30fix(eslint-plugin): [no-unused-vars] check if any variable definition is expo...2a4421cfix(eslint-plugin): [no-floating-promises] finally should be transparent to u...6d3d162feat(typescript-estree): add EXPERIMENTAL_useProjectService option to use Typ...606a52cfix(eslint-plugin): [no-floating-promises] false negative calling .then with ...d368164fix(eslint-plugin): [comma-dangle] fixed crash from undefined predicate.ignor...e08a722docs: fix typo in explicit-member-accessibility (#7224)a3da11dfix(eslint-plugin): include the rules types in the package (#7215)2e30379chore: bump dependency versions (#7191)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)