8000 chore(release): publish 7.3.1 · naruaway/typescript-eslint@5995614 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5995614

Browse files
chore(release): publish 7.3.1
1 parent d78d98b commit 5995614

File tree

36 files changed

+275
-120
lines changed

36 files changed

+275
-120
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 7.3.1 (2024-03-18)
2+
3+
4+
### 🩹 Fixes
5+
6+
- **eslint-plugin:** [no-floating-promises] revert disable of ignoreVoid in strict config ([#8718](https://github.com/typescript-eslint/typescript-eslint/pull/8718))
7+
8+
### ❤️ Thank You
9+
10+
- Josh Goldberg ✨
11+
12+
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.
13+
114
## 7.3.0 (2024-03-18)
215

316

packages/ast-spec/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.3.1 (2024-03-18)
2+
3+
This was a version bump only for ast-spec to align it with other projects, there were no code changes.
4+
5+
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.
6+
17
## 7.3.0 (2024-03-18)
28

39

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": "7.3.0",
3+
"version": "7.3.1",
44
"description": "Complete specification for the TypeScript-ESTree AST",
55
"private": true,
66
"keywords": [

packages/eslint-plugin-internal/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.3.1 (2024-03-18)
2+
3+
This was a version bump only for eslint-plugin-internal to align it with other projects, there were no code changes.
4+
5+
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.
6+
17
## 7.3.0 (2024-03-18)
28

39

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": "7.3.0",
3+
"version": "7.3.1",
44
"private": true,
55
"main": "dist/index.js",
66
"types": "index.d.ts",
@@ -15,10 +15,10 @@
1515
},
1616
"dependencies": {
1717
"@prettier/sync": "^0.5.0",
18-
"@typescript-eslint/rule-tester": "7.3.0",
19-
"@typescript-eslint/scope-manager": "7.3.0",
20-
"@typescript-eslint/type-utils": "7.3.0",
21-
"@typescript-eslint/utils": "7.3.0",
18+
"@typescript-eslint/rule-tester": "7.3.1",
19+
"@typescript-eslint/scope-manager": "7.3.1",
20+
"@typescript-eslint/type-utils": "7.3.1",
21+
"@typescript-eslint/utils": "7.3.1",
2222
"prettier": "^3.0.3"
2323
},
2424
"devDependencies": {

packages/eslint-plugin/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 7.3.1 (2024-03-18)
2+
3+
4+
### 🩹 Fixes
5+
6+
- **eslint-plugin:** [no-floating-promises] revert disable of ignoreVoid in strict config
7+
8+
9+
### ❤️ Thank You
10+
11+
- Josh Goldberg ✨
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+
115
## 7.3.0 (2024-03-18)
216

317

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": "7.3.0",
3+
"version": "7.3.1",
44
"description": "TypeScript plugin for ESLint",
55
"files": [
66
"dist",
@@ -61,10 +61,10 @@
6161
},
6262
"dependencies": {
6363
"@eslint-community/regexpp": "^4.5.1",
64-
"@typescript-eslint/scope-manager": "7.3.0",
65-
"@typescript-eslint/type-utils": "7.3.0",
66-
"@typescript-eslint/utils": "7.3.0",
67-
"@typescript-eslint/visitor-keys": "7.3.0",
64+
"@typescript-eslint/scope-manager": "7.3.1",
65+
"@typescript-eslint/type-utils": "7.3.1",
66+
"@typescript-eslint/utils": "7.3.1",
67+
"@typescript-eslint/visitor-keys": "7.3.1",
6868
"debug": "^4.3.4",
6969
"graphemer": "^1.4.0",
7070
"ignore": "^5.2.4",
@@ -76,8 +76,8 @@
7676
"@types/debug": "*",
7777
"@types/marked": "*",
7878
"@types/natural-compare": "*",
79-
"@typescript-eslint/rule-schema-to-typescript-types": "7.3.0",
80-
"@typescript-eslint/rule-tester": "7.3.0",
79+
"@typescript-eslint/rule-schema-to-typescript-types": "7.3.1",
80+
"@typescript-eslint/rule-tester": "7.3.1",
8181
"ajv": "^6.12.6",
8282
"chalk": "^5.3.0",
8383
"cross-env": "^7.0.3",

packages/integration-tests/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
< CE7 tr class="diff-line-row">
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.3.1 (2024-03-18)
2+
3+
This was a version bump only for integration-tests to align it with other projects, there were no code changes.
4+
5+
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.
6+
17
## 7.3.0 (2024-03-18)
28

39
This was a version bump only for integration-tests to align it with other projects, there were no code changes.

packages/integration-tests/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/integration-tests",
3-
"version": "7.3.0",
3+
"version": "7.3.1",
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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.3.1 (2024-03-18)
2+
3+
This was a version bump only for parser to align it with other projects, there were no code changes.
4+
5+
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.
6+
17
## 7.3.0 (2024-03-18)
28

39

0 commit comments

Comments
 (0)
0