Skip to content

Commit

Permalink
chore(release): publish 7.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
typescript-eslint[bot] committed Mar 25, 2024
1 parent c2abdd4 commit 5d24691
Show file tree
Hide file tree
Showing 22 changed files with 420 additions and 75 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,33 @@
## 7.4.0 (2024-03-25)


### 🚀 Features

- **eslint-plugin:** [consistent-type-imports] ignore files with decorators, experimentalDecorators, and emitDecoratorMetadata ([#8335](https://github.com/typescript-eslint/typescript-eslint/pull/8335))
- **eslint-plugin:** [no-unnecessary-type-arguments] handle tagged templates ([#8708](https://github.com/typescript-eslint/typescript-eslint/pull/8708))
- **eslint-plugin:** deprecate no-throw-literal and add a renamed only-throw-error ([#8701](https://github.com/typescript-eslint/typescript-eslint/pull/8701))

### 🩹 Fixes

- **eslint-plugin:** [prefer-optional-chain] address multipart nullish checks false positive ([#8678](https://github.com/typescript-eslint/typescript-eslint/pull/8678))
- **eslint-plugin:** [prefer-optional-chain] properly disambiguate between `boolean` and `false` ([#8685](https://github.com/typescript-eslint/typescript-eslint/pull/8685))
- **eslint-plugin:** [no-unnecessary-type-assertion] avoid remove const casting on template literals with expressions inside ([#8740](https://github.com/typescript-eslint/typescript-eslint/pull/8740))
- **typescript-eslint:** declare peer dependency on `utils` to ensure npm correctly installs dependencies ([#8738](https://github.com/typescript-eslint/typescript-eslint/pull/8738))
- **website:** visual Editor is not scrolled ([#8709](https://github.com/typescript-eslint/typescript-eslint/pull/8709))
- **website:** make 404 page good again ([#8750](https://github.com/typescript-eslint/typescript-eslint/pull/8750))

### ❤️ Thank You

- Abraham Guo
- Brad Zacher @bradzacher
- Josh Goldberg ✨
- Kim Sang Du @developer-bandi
- Kirk Waiblinger @kirkwaiblinger
- Marco Pasqualetti @marcalexiei
- YeonJuan @yeonjuan

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.

## 7.3.1 (2024-03-18)


Expand Down
33 changes: 33 additions & 0 deletions packages/eslint-plugin/CHANGELOG.md
@@ -1,3 +1,36 @@
## 7.4.0 (2024-03-25)


### 🚀 Features

- **eslint-plugin:** [consistent-type-imports] ignore files with decorators, experimentalDecorators, and emitDecoratorMetadata

- **eslint-plugin:** [no-unnecessary-type-arguments] handle tagged templates

- **eslint-plugin:** deprecate no-throw-literal and add a renamed only-throw-error


### 🩹 Fixes

- **eslint-plugin:** [prefer-optional-chain] address multipart nullish checks false positive

- **eslint-plugin:** [prefer-optional-chain] properly disambiguate between `boolean` and `false`

- **eslint-plugin:** [no-unnecessary-type-assertion] avoid remove const casting on template literals with expressions inside


### ❤️ Thank You

- Abraham Guo
- Brad Zacher
- Josh Goldberg ✨
- Kim Sang Du
- Kirk Waiblinger
- Marco Pasqualetti
- YeonJuan

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.

## 7.3.1 (2024-03-18)


Expand Down
12 changes: 6 additions & 6 deletions packages/eslint-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "@typescript-eslint/eslint-plugin",
"version": "7.3.1",
"version": "7.4.0",
"description": "TypeScript plugin for ESLint",
"files": [
"dist",
Expand Down Expand Up @@ -61,10 +61,10 @@
},
"dependencies": {
"@eslint-community/regexpp": "^4.5.1",
"@typescript-eslint/scope-manager": "7.3.1",
"@typescript-eslint/type-utils": "7.3.1",
"@typescript-eslint/utils": "7.3.1",
"@typescript-eslint/visitor-keys": "7.3.1",
"@typescript-eslint/scope-manager": "7.4.0",
"@typescript-eslint/type-utils": "7.4.0",
"@typescript-eslint/utils": "7.4.0",
"@typescript-eslint/visitor-keys": "7.4.0",
"debug": "^4.3.4",
"graphemer": "^1.4.0",
"ignore": "^5.2.4",
Expand All @@ -77,7 +77,7 @@
"@types/marked": "*",
"@types/natural-compare": "*",
"@typescript-eslint/rule-schema-to-typescript-types": "7.3.1",
"@typescript-eslint/rule-tester": "7.3.1",
"@typescript-eslint/rule-tester": "7.4.0",
"ajv": "^6.12.6",
"chalk": "^5.3.0",
"cross-env": "^7.0.3",
Expand Down
20 changes: 20 additions & 0 deletions packages/parser/CHANGELOG.md
@@ -1,3 +1,23 @@
## 7.4.0 (2024-03-25)


### 🚀 Features

- **eslint-plugin:** [consistent-type-imports] ignore files with decorators, experimentalDecorators, and emitDecoratorMetadata


### ❤️ Thank You

- Abraham Guo
- Brad Zacher
- Josh Goldberg ✨
- Kim Sang Du
- Kirk Waiblinger
- Marco Pasqualetti
- YeonJuan

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.

## 7.3.1 (2024-03-18)

This was a version bump only for parser to align it with other projects, there were no code changes.
Expand Down
10 changes: 5 additions & 5 deletions packages/parser/package.json
@@ -1,6 +1,6 @@
{
"name": "@typescript-eslint/parser",
"version": "7.3.1",
"version": "7.4.0",
"description": "An ESLint custom parser which leverages TypeScript ESTree",
"files": [
"dist",
Expand Down Expand Up @@ -51,10 +51,10 @@
"eslint": "^8.56.0"
},
"dependencies": {
"@typescript-eslint/scope-manager": "7.3.1",
"@typescript-eslint/types": "7.3.1",
"@typescript-eslint/typescript-estree": "7.3.1",
"@typescript-eslint/visitor-keys": "7.3.1",
"@typescript-eslint/scope-manager": "7.4.0",
"@typescript-eslint/types": "7.4.0",
"@typescript-eslint/typescript-estree": "7.4.0",
"@typescript-eslint/visitor-keys": "7.4.0",
"debug": "^4.3.4"
},
"devDependencies": {
Expand Down
20 changes: 20 additions & 0 deletions packages/rule-tester/CHANGELOG.md
@@ -1,3 +1,23 @@
## 7.4.0 (2024-03-25)


### 🚀 Features

- **eslint-plugin:** [consistent-type-imports] ignore files with decorators, experimentalDecorators, and emitDecoratorMetadata


### ❤️ Thank You

- Abraham Guo
- Brad Zacher
- Josh Goldberg ✨
- Kim Sang Du
- Kirk Waiblinger
- Marco Pasqualetti
- YeonJuan

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.

## 7.3.1 (2024-03-18)


Expand Down
8 changes: 4 additions & 4 deletions packages/rule-tester/package.json
@@ -1,6 +1,6 @@
{
"name": "@typescript-eslint/rule-tester",
"version": "7.3.1",
"version": "7.4.0",
"description": "Tooling to test ESLint rules",
"files": [
"dist",
Expand Down Expand Up @@ -47,8 +47,8 @@
},
"//": "NOTE - AJV is out-of-date, but it's intentionally synced with ESLint - https://github.com/eslint/eslint/blob/ad9dd6a933fd098a0d99c6a9aa059850535c23ee/package.json#L70",
"dependencies": {
"@typescript-eslint/typescript-estree": "7.3.1",
"@typescript-eslint/utils": "7.3.1",
"@typescript-eslint/typescript-estree": "7.4.0",
"@typescript-eslint/utils": "7.4.0",
"ajv": "^6.10.0",
"lodash.merge": "4.6.2",
"semver": "^7.5.4"
Expand All @@ -59,7 +59,7 @@
},
"devDependencies": {
"@types/lodash.merge": "4.6.9",
"@typescript-eslint/parser": "7.3.1",
"@typescript-eslint/parser": "7.4.0",
"chai": "^4.3.7",
"mocha": "^10.0.0",
"sinon": "^16.0.0",
Expand Down
20 changes: 20 additions & 0 deletions packages/scope-manager/CHANGELOG.md
@@ -1,3 +1,23 @@
## 7.4.0 (2024-03-25)


### 🚀 Features

- **eslint-plugin:** [consistent-type-imports] ignore files with decorators, experimentalDecorators, and emitDecoratorMetadata


### ❤️ Thank You

- Abraham Guo
- Brad Zacher
- Josh Goldberg ✨
- Kim Sang Du
- Kirk Waiblinger
- Marco Pasqualetti
- YeonJuan

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.

## 7.3.1 (2024-03-18)

This was a version bump only for scope-manager to align it with other projects, there were no code changes.
Expand Down
8 changes: 4 additions & 4 deletions packages/scope-manager/package.json
@@ -1,6 +1,6 @@
{
"name": "@typescript-eslint/scope-manager",
"version": "7.3.1",
"version": "7.4.0",
"description": "TypeScript scope analyser for ESLint",
"files": [
"dist",
Expand Down Expand Up @@ -45,12 +45,12 @@
"typecheck": "npx nx typecheck"
},
"dependencies": {
"@typescript-eslint/types": "7.3.1",
"@typescript-eslint/visitor-keys": "7.3.1"
"@typescript-eslint/types": "7.4.0",
"@typescript-eslint/visitor-keys": "7.4.0"
},
"devDependencies": {
"@types/glob": "*",
"@typescript-eslint/typescript-estree": "7.3.1",
"@typescript-eslint/typescript-estree": "7.4.0",
"glob": "*",
"jest-specific-snapshot": "*",
"make-dir": "*",
Expand Down
6 changes: 6 additions & 0 deletions packages/type-utils/CHANGELOG.md
@@ -1,3 +1,9 @@
## 7.4.0 (2024-03-25)

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

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.

## 7.3.1 (2024-03-18)

This was a version bump only for type-utils to align it with other projects, there were no code changes.
Expand Down
8 changes: 4 additions & 4 deletions packages/type-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@typescript-eslint/type-utils",
"version": "7.3.1",
"version": "7.4.0",
"description": "Type utilities for working with TypeScript + ESLint together",
"files": [
"dist",
Expand Down Expand Up @@ -45,13 +45,13 @@
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "7.3.1",
"@typescript-eslint/utils": "7.3.1",
"@typescript-eslint/typescript-estree": "7.4.0",
"@typescript-eslint/utils": "7.4.0",
"debug": "^4.3.4",
"ts-api-utils": "^1.0.1"
},
"devDependencies": {
"@typescript-eslint/parser": "7.3.1",
"@typescript-eslint/parser": "7.4.0",
"ajv": "^6.10.0",
"downlevel-dts": "*",
"jest": "29.7.0",
Expand Down
20 changes: 20 additions & 0 deletions packages/types/CHANGELOG.md
@@ -1,3 +1,23 @@
## 7.4.0 (2024-03-25)


### 🚀 Features

- **eslint-plugin:** [consistent-type-imports] ignore files with decorators, experimentalDecorators, and emitDecoratorMetadata


### ❤️ Thank You

- Abraham Guo
- Brad Zacher
- Josh Goldberg ✨
- Kim Sang Du
- Kirk Waiblinger
- Marco Pasqualetti
- YeonJuan

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.

## 7.3.1 (2024-03-18)

This was a version bump only for types to align it with other projects, there were no code changes.
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
@@ -1,6 +1,6 @@
{
"name": "@typescript-eslint/types",
"version": "7.3.1",
"version": "7.4.0",
"description": "Types for the TypeScript-ESTree AST spec",
"files": [
"dist",
Expand Down
25 changes: 25 additions & 0 deletions packages/typescript-eslint/CHANGELOG.md
@@ -1,3 +1,28 @@
## 7.4.0 (2024-03-25)


### 🚀 Features

- **eslint-plugin:** deprecate no-throw-literal and add a renamed only-throw-error


### 🩹 Fixes

- **typescript-eslint:** declare peer dependency on `utils` to ensure npm correctly installs dependencies


### ❤️ Thank You

- Abraham Guo
- Brad Zacher
- Josh Goldberg ✨
- Kim Sang Du
- Kirk Waiblinger
- Marco Pasqualetti
- YeonJuan

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.

## 7.3.1 (2024-03-18)


Expand Down
8 changes: 4 additions & 4 deletions packages/typescript-eslint/package.json
@@ -1,6 +1,6 @@
{
"name": "typescript-eslint",
"version": "7.3.1",
"version": "7.4.0",
"description": "Tooling which enables you to use TypeScript with ESLint",
"files": [
"dist",
Expand Down Expand Up @@ -54,9 +54,9 @@
"eslint": "^8.56.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"@typescript-eslint/utils": "7.3.1"
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"@typescript-eslint/utils": "7.4.0"
},
"devDependencies": {
"downlevel-dts": "*",
Expand Down
20 changes: 20 additions & 0 deletions packages/typescript-estree/CHANGELOG.md
@@ -1,3 +1,23 @@
## 7.4.0 (2024-03-25)


### 🚀 Features

- **eslint-plugin:** [consistent-type-imports] ignore files with decorators, experimentalDecorators, and emitDecoratorMetadata


### ❤️ Thank You

- Abraham Guo
- Brad Zacher
- Josh Goldberg ✨
- Kim Sang Du
- Kirk Waiblinger
- Marco Pasqualetti
- YeonJuan

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.

## 7.3.1 (2024-03-18)

This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
Expand Down

0 comments on commit 5d24691

Please sign in to comment.