Skip to content

Commit 7246e56

Browse files
chore: publish v6.16.0
1 parent 3182959 commit 7246e56

37 files changed

+329
-121
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@
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.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
7+
8+
9+
### Bug Fixes
10+
11+
* **eslint-plugin:** [unbound-method] exempt all non-Promise built-in statics ([#8096](https://github.com/typescript-eslint/typescript-eslint/issues/8096)) ([3182959](https://github.com/typescript-eslint/typescript-eslint/commit/31829591e2c5cf6bdbdd5da23b12c5782f710fa5))
12+
13+
14+
### Features
15+
16+
* **eslint-plugin:** deprecate formatting (meta.type: layout) rules ([#8073](https://github.com/typescript-eslint/typescript-eslint/issues/8073)) ([04dea84](https://github.com/typescript-eslint/typescript-eslint/commit/04dea84e8e934a415ec1381a90de3cde670d0dc3))
17+
* **eslint-plugin:** deprecate no-extra-semi in favor of ESLint Stylistic equivalent ([#8123](https://github.com/typescript-eslint/typescript-eslint/issues/8123)) ([9368bf3](https://github.com/typescript-eslint/typescript-eslint/commit/9368bf390afc58a19123782f8dff2bb5cdd3cccc))
18+
* **typescript-estree:** add allowDefaultProjectForFiles project service allowlist option ([#7752](https://github.com/typescript-eslint/typescript-eslint/issues/7752)) ([7ddadda](https://github.com/typescript-eslint/typescript-eslint/commit/7ddadda10845bc53967eeec83ba6b7cdc71a079f))
19+
20+
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.
21+
22+
23+
24+
25+
626
# [6.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0) (2023-12-18)
727

828

lerna.json

+1-1
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.15.0",
3+
"version": "6.16.0",
44
"npmClient": "yarn",
55
"stream": true,
66
"command": {

packages/ast-spec/CHANGELOG.md

+10
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.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
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.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0) (2023-12-18)
717

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

packages/ast-spec/package.json

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

packages/eslint-plugin-internal/CHANGELOG.md

+10
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.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
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.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0) (2023-12-18)
717

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

packages/eslint-plugin-internal/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin-internal",
3-
"version": "6.15.0",
3+
"version": "6.16.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.15.0",
18-
"@typescript-eslint/scope-manager": "6.15.0",
19-
"@typescript-eslint/type-utils": "6.15.0",
20-
"@typescript-eslint/utils": "6.15.0",
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",
2121
"prettier": "^3.0.3"
2222
},
2323
"devDependencies": {

packages/eslint-plugin-tslint/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
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.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
7+
8+
9+
### Features
10+
11+
* **typescript-estree:** add allowDefaultProjectForFiles project service allowlist option ([#7752](https://github.com/typescript-eslint/typescript-eslint/issues/7752)) ([7ddadda](https://github.com/typescript-eslint/typescript-eslint/commit/7ddadda10845bc53967eeec83ba6b7cdc71a079f))
12+
13+
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.
14+
15+
16+
17+
18+
619
# [6.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0) (2023-12-18)
720

821
**Note:** Version bump only for package @typescript-eslint/eslint-plugin-tslint

packages/eslint-plugin-tslint/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin-tslint",
3-
"version": "6.15.0",
3+
"version": "6.16.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.15.0"
49+
"@typescript-eslint/utils": "6.16.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.15.0",
58+
"@typescript-eslint/parser": "6.16.0",
5959
"jest": "29.7.0",
6060
"prettier": "^3.0.3",
6161
"rimraf": "*"

packages/eslint-plugin/CHANGELOG.md

+19
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.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
7+
8+
9+
### Bug Fixes
10+
11+
* **eslint-plugin:** [unbound-method] exempt all non-Promise built-in statics ([#8096](https://github.com/typescript-eslint/typescript-eslint/issues/8096)) ([3182959](https://github.com/typescript-eslint/typescript-eslint/commit/31829591e2c5cf6bdbdd5da23b12c5782f710fa5))
12+
13+
14+
### Features
15+
16+
* **eslint-plugin:** deprecate formatting (meta.type: layout) rules ([#8073](https://github.com/typescript-eslint/typescript-eslint/issues/8073)) ([04dea84](https://github.com/typescript-eslint/typescript-eslint/commit/04dea84e8e934a415ec1381a90de3cde670d0dc3))
17+
* **eslint-plugin:** deprecate no-extra-semi in favor of ESLint Stylistic equivalent ([#8123](https://github.com/typescript-eslint/typescript-eslint/issues/8123)) ([9368bf3](https://github.com/typescript-eslint/typescript-eslint/commit/9368bf390afc58a19123782f8dff2bb5cdd3cccc))
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.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0) (2023-12-18)
726

827

packages/eslint-plugin/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin",
3-
"version": "6.15.0",
3+
"version": "6.16.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.15.0",
61-
"@typescript-eslint/type-utils": "6.15.0",
62-
"@typescript-eslint/utils": "6.15.0",
63-
"@typescript-eslint/visitor-keys": "6.15.0",
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",
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.15.0",
77-
"@typescript-eslint/rule-tester": "6.15.0",
76+
"@typescript-eslint/rule-schema-to-typescript-types": "6.16.0",
77+
"@typescript-eslint/rule-tester": "6.16.0",
7878
"ajv": "^6.12.6",
7979
"chalk": "^5.3.0",
8080
"cross-fetch": "*",

packages/integration-tests/CHANGELOG.md

+10
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.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
7+
8+
**Note:** Version bump only for package @typescript-eslint/integration-tests
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.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0) (2023-12-18)
717

818
**Note:** Version bump only for package @typescript-eslint/integration-tests

packages/integration-tests/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/integration-tests",
3-
"version": "6.15.0",
3+
"version": "6.16.0",
44
"private": true,
55
"scripts": {
66
"format": "prettier --write \"./**/*.{ts,mts,cts,tsx,js,mjs,cjs,jsx,json,md,css}\" --ignore-path ../../.prettierignore",

packages/parser/CHANGELOG.md

+10
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.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
7+
8+
**Note:** Version bump only for package @typescript-eslint/parser
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.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0) (2023-12-18)
717

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

packages/parser/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/parser",
3-
"version": "6.15.0",
3+
"version": "6.16.0",
44
"description": "An ESLint custom parser which leverages TypeScript ESTree",
55
"files": [
66
"dist",
@@ -51,10 +51,10 @@
5151
"eslint": "^7.0.0 || ^8.0.0"
5252
},
5353
"dependencies": {
54-
"@typescript-eslint/scope-manager": "6.15.0",
55-
"@typescript-eslint/types": "6.15.0",
56-
"@typescript-eslint/typescript-estree": "6.15.0",
57-
"@typescript-eslint/visitor-keys": "6.15.0",
54+
"@typescript-eslint/scope-manager": "6.16.0",
55+
"@typescript-eslint/types": "6.16.0",
56+
"@typescript-eslint/typescript-estree": "6.16.0",
57+
"@typescript-eslint/visitor-keys": "6.16.0",
5858
"debug": "^4.3.4"
5959
},
6060
"devDependencies": {

packages/repo-tools/CHANGELOG.md

+10
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.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
7+
8+
**Note:** Version bump only for package @typescript-eslint/repo-tools
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.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0) (2023-12-18)
717

818
**Note:** Version bump only for package @typescript-eslint/repo-tools

packages/repo-tools/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/repo-tools",
3-
"version": "6.15.0",
3+
"version": "6.16.0",
44
"private": true,
55
"scripts": {
66
"//": "NOTE: intentionally no build step in this package",

packages/rule-schema-to-typescript-types/CHANGELOG.md

+10
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.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
7+
8+
**Note:** Version bump only for package @typescript-eslint/rule-schema-to-typescript-types
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.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0) (2023-12-18)
717

818
**Note:** Version bump only for package @typescript-eslint/rule-schema-to-typescript-types

packages/rule-schema-to-typescript-types/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/rule-schema-to-typescript-types",
3-
"version": "6.15.0",
3+
"version": "6.16.0",
44
"private": true,
55
"type": "commonjs",
66
"exports": {
@@ -34,8 +34,8 @@
3434
},
3535
"dependencies": {
3636
"@prettier/sync": "*",
37-
"@typescript-eslint/type-utils": "6.15.0",
38-
"@typescript-eslint/utils": "6.15.0",
37+
"@typescript-eslint/type-utils": "6.16.0",
38+
"@typescript-eslint/utils": "6.16.0",
3939
"natural-compare": "^1.4.0",
4040
"prettier": "^3.0.3"
4141
},

packages/rule-tester/CHANGELOG.md

+10
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.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
7+
8+
**Note:** Version bump only for package @typescript-eslint/rule-tester
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.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0) (2023-12-18)
717

818
**Note:** Version bump only for package @typescript-eslint/rule-tester

packages/rule-tester/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/rule-tester",
3-
"version": "6.15.0",
3+
"version": "6.16.0",
44
"description": "Tooling to test ESLint rules",
55
"files": [
66
"dist",
@@ -47,8 +47,8 @@
4747
},
4848
"//": "NOTE - AJV is out-of-date, but it's intentionally synced with ESLint - https://github.com/eslint/eslint/blob/ad9dd6a933fd098a0d99c6a9aa059850535c23ee/package.json#L70",
4949
"dependencies": {
50-
"@typescript-eslint/typescript-estree": "6.15.0",
51-
"@typescript-eslint/utils": "6.15.0",
50+
"@typescript-eslint/typescript-estree": "6.16.0",
51+
"@typescript-eslint/utils": "6.16.0",
5252
"ajv": "^6.10.0",
5353
"lodash.merge": "4.6.2",
5454
"semver": "^7.5.4"
@@ -59,7 +59,7 @@
5959
},
6060
"devDependencies": {
6161
"@types/lodash.merge": "4.6.9",
62-
"@typescript-eslint/parser": "6.15.0",
62+
"@typescript-eslint/parser": "6.16.0",
6363
"chai": "^4.3.7",
6464
"mocha": "^10.0.0",
6565
"sinon": "^16.0.0",

packages/scope-manager/CHANGELOG.md

+10
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.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
7+
8+
**Note:** Version bump only for package @typescript-eslint/scope-manager
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.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0) (2023-12-18)
717

818
**Note:** Version bump only for package @typescript-eslint/scope-manager

0 commit comments

Comments
 (0)