8000 chore: publish v6.17.0 · StyleShit/typescript-eslint@e566a5d · GitHub
[go: up one dir, main page]

Skip to content

Commit e566a5d

Browse files
chore: publish v6.17.0
1 parent 675e987 commit e566a5d

File tree

37 files changed

+319
-121
lines changed

37 files changed

+319
-121
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [6.17.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.16.0...v6.17.0) (2024-01-01)
7+
8+
9+
### Bug Fixes
10+
11+
* **eslint-plugin:** [no-restricted-imports] prevent crash when `patterns` or `paths` in options are empty ([#8108](https://github.com/typescript-eslint/typescript-eslint/issues/8108)) ([675e987](https://github.com/typescript-eslint/typescript-eslint/commit/675e987ca1d13244c03d7e09d4e42c6539689d9a))
12+
13+
14+
### Features
15+
16+
* **eslint-plugin:** [no-floating-promises] flag result of .map(async) ([#7897](https://github.com/typescript-eslint/typescript-eslint/issues/7897)) ([5857356](https://github.com/typescript-eslint/typescript-eslint/commit/5857356962060b19aa792bee778f9167ee54154b))
17+
* **eslint-plugin:** [switch-exhaustiveness-check] add an option to warn against a `default` case on an already exhaustive `switch` ([#7539](https://github.com/typescript-eslint/typescript-eslint/issues/7539)) ([6a219bd](https://github.com/typescript-eslint/typescript-eslint/commit/6a219bdfe6fcf86aae28158e0d855f87a8bac719))
18+
19+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
20+
21+
22+
23+
24+
625
# [6.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
726

827

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "6.16.0",
3+
"version": "6.17.0",
44
"npmClient": "yarn",
55
"stream": true,
66
"command": {

packages/ast-spec/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [6.17.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.16.0...v6.17.0) (2024-01-01)
7+
8+
**Note:** Version bump only for package @typescript-eslint/ast-spec
9+
10+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
11+
12+
13+
14+
15+
616
# [6.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
717

818
**Note:** Version bump only for package @typescript-eslint/ast-spec

packages/ast-spec/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/ast-spec",
3-
"version": "6.16.0",
3+
"version": "6.17.0",
44
"description": "Complete specification for the TypeScript-ESTree AST",
55
"private": true,
66
"keywords": [

packages/eslint-plugin-internal/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [6.17.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.16.0...v6.17.0) (2024-01-01)
7+
8+
**Note:** Version bump only for package @typescript-eslint/eslint-plugin-internal
9+
10+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
11+
12+
13+
14+
15+
616
# [6.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
717

818
**Note:** Version bump only for package @typescript-eslint/eslint-plugin-internal

packages/eslint-plugin-internal/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin-internal",
3-
"version": "6.16.0",
3+
"version": "6.17.0",
44
"private": true,
55
"main": "dist/index.js",
66
"scripts": {
@@ -14,10 +14,10 @@
1414
},
1515
"dependencies": {
1616
"@prettier/sync": "*",
17-
"@typescript-eslint/rule-tester": "6.16.0",
18-
"@typescript-eslint/scope-manager": "6.16.0",
19-
"@typescript-eslint/type-utils": "6.16.0",
20-
"@typescript-eslint/utils": "6.16.0",
17+
"@typescript-eslint/rule-tester": "6.17.0",
18+
"@typescript-eslint/scope-manager": "6.17.0",
19+
"@typescript-eslint/type-utils": "6.17.0",
20+
"@typescript-eslint/utils": "6.17.0",
2121
"prettier": "^3.0.3"
2222
},
2323
"devDependencies": {

packages/eslint-plugin-tslint/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [6.17.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.16.0...v6.17.0) (2024-01-01)
F438
7+
8+
**Note:** Version bump only for package @typescript-eslint/eslint-plugin-tslint
9+
10+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
11+
12+
13+
14+
15+
616
# [6.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
717

818

packages/eslint-plugin-tslint/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin-tslint",
3-
"version": "6.16.0",
3+
"version": "6.17.0",
44
"main": "dist/index.js",
55
"typings": "src/index.ts",
66
"description": "ESLint plugin that wraps a TSLint configuration and lints the whole source using TSLint",
@@ -46,7 +46,7 @@
4646
"typecheck": "tsc -p tsconfig.json --noEmit"
4747
},
4848
"dependencies": {
49-
"@typescript-eslint/utils": "6.16.0"
49+
"@typescript-eslint/utils": "6.17.0"
5050
},
5151
"peerDependencies": {
5252
"eslint": "^7.0.0 || ^8.0.0",
@@ -55,7 +55,7 @@
5555
},
5656
"devDependencies": {
5757
"@types/lodash": "*",
58-
"@typescript-eslint/parser": "6.16.0",
58+
"@typescript-eslint/parser": "6.17.0",
5959
"jest": "29.7.0",
6060
"prettier": "^3.0.3",
6161
"rimraf": "*"

packages/eslint-plugin/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [6.17.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.16.0...v6.17.0) (2024-01-01)
7+
8+
9+
### Bug Fixes
10+
11+
* **eslint-plugin:** [no-restricted-imports] prevent crash when `patterns` or `paths` in options are empty ([#8108](https://github.com/typescript-eslint/typescript-eslint/issues/8108)) ([675e987](https://github.com/typescript-eslint/typescript-eslint/commit/675e987ca1d13244c03d7e09d4e42c6539689d9a))
12+
13+
14+
### Features
15+
16+
* **eslint-plugin:** [no-floating-promises] flag result of .map(async) ([#7897](https://github.com/typescript-eslint/typescript-eslint/issues/7897)) ([5857356](https://github.com/typescript-eslint/typescript-eslint/commit/5857356962060b19aa792bee778f9167ee54154b))
17+
* **eslint-plugin:** [switch-exhaustiveness-check] add an option to warn against a `default` case on an already exhaustive `switch` ([#7539](https://github.com/typescript-eslint/typescript-eslint/issues/7539)) ([6a219bd](https://github.com/typescript-eslint/typescript-eslint/commit/6a219bdfe6fcf86aae28158e0d855f87a8bac719))
18+
19+
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
20+
21+
22+
23+
24+
625
# [6.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
726

827

packages/eslint-plugin/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin",
3-
"version": "6.16.0",
3+
"version": "6.17.0",
44
"description": "TypeScript plugin for ESLint",
55
"files": [
66
"dist",
@@ -57,10 +57,10 @@
5757
},
5858
"dependencies": {
5959
"@eslint-community/regexpp": "^4.5.1",
60-
"@typescript-eslint/scope-manager": "6.16.0",
61-
"@typescript-eslint/type-utils": "6.16.0",
62-
"@typescript-eslint/utils": "6.16.0",
63-
"@typescript-eslint/visitor-keys": "6.16.0",
60+
"@typescript-eslint/scope-manager": "6.17.0",
61+
"@typescript-eslint/type-utils": "6.17.0",
62+
"@typescript-eslint/utils": "6.17.0",
63+
"@typescript-eslint/visitor-keys": "6.17.0",
6464
"debug": "^4.3.4",
6565
"graphemer": "^1.4.0",
6666
"ignore": "^5.2.4",
@@ -73,8 +73,8 @@
7373
"@types/debug": "*",
7474
"@types/marked": "*",
7575
"@types/natural-compare": "*",
76-
"@typescript-eslint/rule-schema-to-typescript-types": "6.16.0",
77-
"@typescript-eslint/rule-tester": "6.16.0",
76+
"@typescript-eslint/rule-schema-to-typescript-types": "6.17.0",
77+
"@typescript-eslint/rule-tester": "6.17.0",
7878
"ajv": "^6.12.6",
7979
"chalk": "^5.3.0",
8080
"cross-fetch": "*",

0 commit comments

Comments
 (0)
0