Skip to content

Commit

Permalink
chore(release): publish 7.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
typescript-eslint[bot] committed Apr 29, 2024
1 parent 277ee38 commit ee677f6
Show file tree
Hide file tree
Showing 36 changed files with 319 additions and 122 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,30 @@
## 7.8.0 (2024-04-29)


### 🚀 Features

- **rule-tester:** assert suggestion messages are unique ([#8995](https://github.com/typescript-eslint/typescript-eslint/pull/8995))
- **typescript-estree:** add maximumDefaultProjectFileMatchCount and wide allowDefaultProjectForFiles glob restrictions ([#8925](https://github.com/typescript-eslint/typescript-eslint/pull/8925))

### 🩹 Fixes

- **eslint-plugin:** [no-unsafe-argument] handle tagged templates ([#8746](https://github.com/typescript-eslint/typescript-eslint/pull/8746))
- **eslint-plugin:** [prefer-optional-chain] suggests optional chaining during strict null equality check ([#8717](https://github.com/typescript-eslint/typescript-eslint/pull/8717))
- **eslint-plugin:** [consistent-type-assertions] handle tagged templates ([#8993](https://github.com/typescript-eslint/typescript-eslint/pull/8993))
- **eslint-plugin:** [no-unsafe-return] handle union types ([#9001](https://github.com/typescript-eslint/typescript-eslint/pull/9001))
- **eslint-plugin:** [no-unused-vars] clear error report range ([#8640](https://github.com/typescript-eslint/typescript-eslint/pull/8640))
- **utils:** export ESLint backwards-compat functions ([#8976](https://github.com/typescript-eslint/typescript-eslint/pull/8976))

### ❤️ Thank You

- auvred @auvred
- Josh Goldberg ✨
- jsfm01 @jsfm01
- Kim Sang Du @developer-bandi
- 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.7.1 (2024-04-22)


Expand Down
6 changes: 6 additions & 0 deletions packages/ast-spec/CHANGELOG.md
@@ -1,3 +1,9 @@
## 7.8.0 (2024-04-29)

This was a version bump only for ast-spec 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.7.1 (2024-04-22)

This was a version bump only for ast-spec to align it with other projects, there were no code changes.
Expand Down
2 changes: 1 addition & 1 deletion packages/ast-spec/package.json
@@ -1,6 +1,6 @@
{
"name": "@typescript-eslint/ast-spec",
"version": "7.7.1",
"version": "7.8.0",
"description": "Complete specification for the TypeScript-ESTree AST",
"private": true,
"keywords": [
Expand Down
6 changes: 6 additions & 0 deletions packages/eslint-plugin-internal/CHANGELOG.md
@@ -1,3 +1,9 @@
## 7.8.0 (2024-04-29)

This was a version bump only for eslint-plugin-internal 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.7.1 (2024-04-22)

This was a version bump only for eslint-plugin-internal to align it with other projects, there were no code changes.
Expand Down
10 changes: 5 additions & 5 deletions packages/eslint-plugin-internal/package.json
@@ -1,6 +1,6 @@
{
"name": "@typescript-eslint/eslint-plugin-internal",
"version": "7.7.1",
"version": "7.8.0",
"private": true,
"main": "dist/index.js",
"types": "index.d.ts",
Expand All @@ -15,10 +15,10 @@
},
"dependencies": {
"@prettier/sync": "^0.5.1",
"@typescript-eslint/rule-tester": "7.7.1",
"@typescript-eslint/scope-manager": "7.7.1",
"@typescript-eslint/type-utils": "7.7.1",
"@typescript-eslint/utils": "7.7.1",
"@typescript-eslint/rule-tester": "7.8.0",
"@typescript-eslint/scope-manager": "7.8.0",
"@typescript-eslint/type-utils": "7.8.0",
"@typescript-eslint/utils": "7.8.0",
"prettier": "^3.2.5"
},
"devDependencies": {
Expand Down
26 changes: 26 additions & 0 deletions packages/eslint-plugin/CHANGELOG.md
@@ -1,3 +1,29 @@
## 7.8.0 (2024-04-29)


### 🩹 Fixes

- **eslint-plugin:** [no-unsafe-argument] handle tagged templates

- **eslint-plugin:** [prefer-optional-chain] suggests optional chaining during strict null equality check

- **eslint-plugin:** [consistent-type-assertions] handle tagged templates

- **eslint-plugin:** [no-unsafe-return] handle union types

- **eslint-plugin:** [no-unused-vars] clear error report range


### ❤️ Thank You

- auvred
- Josh Goldberg ✨
- jsfm01
- Kim Sang Du
- 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.7.1 (2024-04-22)


Expand Down
14 changes: 7 additions & 7 deletions packages/eslint-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "@typescript-eslint/eslint-plugin",
"version": "7.7.1",
"version": "7.8.0",
"description": "TypeScript plugin for ESLint",
"files": [
"dist",
Expand Down Expand Up @@ -62,10 +62,10 @@
},
"dependencies": {
"@eslint-community/regexpp": "^4.10.0",
"@typescript-eslint/scope-manager": "7.7.1",
"@typescript-eslint/type-utils": "7.7.1",
"@typescript-eslint/utils": "7.7.1",
"@typescript-eslint/visitor-keys": "7.7.1",
"@typescript-eslint/scope-manager": "7.8.0",
"@typescript-eslint/type-utils": "7.8.0",
"@typescript-eslint/utils": "7.8.0",
"@typescript-eslint/visitor-keys": "7.8.0",
"debug": "^4.3.4",
"graphemer": "^1.4.0",
"ignore": "^5.3.1",
Expand All @@ -78,8 +78,8 @@
"@types/marked": "*",
"@types/mdast": "^4.0.3",
"@types/natural-compare": "*",
"@typescript-eslint/rule-schema-to-typescript-types": "7.7.1",
"@typescript-eslint/rule-tester": "7.7.1",
"@typescript-eslint/rule-schema-to-typescript-types": "7.8.0",
"@typescript-eslint/rule-tester": "7.8.0",
"ajv": "^6.12.6",
"chalk": "^5.3.0",
"cross-env": "^7.0.3",
Expand Down
6 changes: 6 additions & 0 deletions packages/integration-tests/CHANGELOG.md
@@ -1,3 +1,9 @@
## 7.8.0 (2024-04-29)

This was a version bump only for integration-tests 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.7.1 (2024-04-22)

This was a version bump only for integration-tests to align it with other projects, there were no code changes.
Expand Down
2 changes: 1 addition & 1 deletion packages/integration-tests/package.json
@@ -1,6 +1,6 @@
{
"name": "@typescript-eslint/integration-tests",
"version": "7.7.1",
"version": "7.8.0",
"private": true,
"scripts": {
"format": "prettier --write \"./**/*.{ts,mts,cts,tsx,js,mjs,cjs,jsx,json,md,css}\" --ignore-path ../../.prettierignore",
Expand Down
6 changes: 6 additions & 0 deletions packages/parser/CHANGELOG.md
@@ -1,3 +1,9 @@
## 7.8.0 (2024-04-29)

This was a version bump only for parser 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.7.1 (2024-04-22)

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.7.1",
"version": "7.8.0",
"description": "An ESLint custom parser which leverages TypeScript ESTree",
"files": [
"dist",
Expand Down Expand Up @@ -52,10 +52,10 @@
"eslint": "^8.56.0"
},
"dependencies": {
"@typescript-eslint/scope-manager": "7.7.1",
"@typescript-eslint/types": "7.7.1",
"@typescript-eslint/typescript-estree": "7.7.1",
"@typescript-eslint/visitor-keys": "7.7.1",
"@typescript-eslint/scope-manager": "7.8.0",
"@typescript-eslint/types": "7.8.0",
"@typescript-eslint/typescript-estree": "7.8.0",
"@typescript-eslint/visitor-keys": "7.8.0",
"debug": "^4.3.4"
},
"devDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/repo-tools/CHANGELOG.md
@@ -1,3 +1,9 @@
## 7.8.0 (2024-04-29)

This was a version bump only for repo-tools 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.7.1 (2024-04-22)

This was a version bump only for repo-tools to align it with other projects, there were no code changes.
Expand Down
2 changes: 1 addition & 1 deletion packages/repo-tools/package.json
@@ -1,6 +1,6 @@
{
"name": "@typescript-eslint/repo-tools",
"version": "7.7.1",
"version": "7.8.0",
"private": true,
"scripts": {
"//": "NOTE: intentionally no build step in this package",
Expand Down
6 changes: 6 additions & 0 deletions packages/rule-schema-to-typescript-types/CHANGELOG.md
@@ -1,3 +1,9 @@
## 7.8.0 (2024-04-29)

This was a version bump only for rule-schema-to-typescript-types 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.7.1 (2024-04-22)

This was a version bump only for rule-schema-to-typescript-types to align it with other projects, there were no code changes.
Expand Down
6 changes: 3 additions & 3 deletions packages/rule-schema-to-typescript-types/package.json
@@ -1,6 +1,6 @@
{
"name": "@typescript-eslint/rule-schema-to-typescript-types",
"version": "7.7.1",
"version": "7.8.0",
"private": true,
"type": "commonjs",
"exports": {
Expand Down Expand Up @@ -34,8 +34,8 @@
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@typescript-eslint/type-utils": "7.7.1",
"@typescript-eslint/utils": "7.7.1",
"@typescript-eslint/type-utils": "7.8.0",
"@typescript-eslint/utils": "7.8.0",
"natural-compare": "^1.4.0",
"prettier": "^3.2.5"
},
Expand Down
18 changes: 18 additions & 0 deletions packages/rule-tester/CHANGELOG.md
@@ -1,3 +1,21 @@
## 7.8.0 (2024-04-29)


### 🚀 Features

- **rule-tester:** assert suggestion messages are unique


### ❤️ Thank You

- auvred
- Josh Goldberg ✨
- jsfm01
- Kim Sang Du
- 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.7.1 (2024-04-22)

This was a version bump only for rule-tester to align it with other projects, there were no code changes.
Expand Down
8 changes: 4 additions & 4 deletions packages/rule-tester/package.json
@@ -1,6 +1,6 @@
{
"name": "@typescript-eslint/rule-tester",
"version": "7.7.1",
"version": "7.8.0",
"description": "Tooling to test ESLint rules",
"files": [
"dist",
Expand Down Expand Up @@ -48,8 +48,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.7.1",
"@typescript-eslint/utils": "7.7.1",
"@typescript-eslint/typescript-estree": "7.8.0",
"@typescript-eslint/utils": "7.8.0",
"ajv": "^6.12.6",
"lodash.merge": "4.6.2",
"semver": "^7.6.0"
Expand All @@ -60,7 +60,7 @@
},
"devDependencies": {
"@types/lodash.merge": "4.6.9",
"@typescript-eslint/parser": "7.7.1",
"@typescript-eslint/parser": "7.8.0",
"chai": "^4.4.1",
"mocha": "^10.4.0",
"sinon": "^16.1.3",
Expand Down
6 changes: 6 additions & 0 deletions packages/scope-manager/CHANGELOG.md
@@ -1,3 +1,9 @@
## 7.8.0 (2024-04-29)

This was a version bump only for scope-manager 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.7.1 (2024-04-22)

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.7.1",
"version": "7.8.0",
"description": "TypeScript scope analyser for ESLint",
"files": [
"dist",
Expand Down Expand Up @@ -46,12 +46,12 @@
"typecheck": "npx nx typecheck"
},
"dependencies": {
"@typescript-eslint/types": "7.7.1",
"@typescript-eslint/visitor-keys": "7.7.1"
"@typescript-eslint/types": "7.8.0",
"@typescript-eslint/visitor-keys": "7.8.0"
},
"devDependencies": {
"@types/glob": "*",
"@typescript-eslint/typescript-estree": "7.7.1",
"@typescript-eslint/typescript-estree": "7.8.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.8.0 (2024-04-29)

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.7.1 (2024-04-22)


Expand Down
8 changes: 4 additions & 4 deletions packages/type-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@typescript-eslint/type-utils",
"version": "7.7.1",
"version": "7.8.0",
"description": "Type utilities for working with TypeScript + ESLint together",
"files": [
"dist",
Expand Down Expand Up @@ -46,13 +46,13 @@
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "7.7.1",
"@typescript-eslint/utils": "7.7.1",
"@typescript-eslint/typescript-estree": "7.8.0",
"@typescript-eslint/utils": "7.8.0",
"debug": "^4.3.4",
"ts-api-utils": "^1.3.0"
},
"devDependencies": {
"@typescript-eslint/parser": "7.7.1",
"@typescript-eslint/parser": "7.8.0",
"ajv": "^6.12.6",
"downlevel-dts": "*",
"jest": "29.7.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/types/CHANGELOG.md
@@ -1,3 +1,9 @@
## 7.8.0 (2024-04-29)

This was a version bump only for types 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.7.1 (2024-04-22)

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.7.1",
"version": "7.8.0",
"description": "Types for the TypeScript-ESTree AST spec",
"files": [
"dist",
Expand Down
6 changes: 6 additions & 0 deletions packages/typescript-eslint/CHANGELOG.md
@@ -1,3 +1,9 @@
## 7.8.0 (2024-04-29)

This was a version bump only for typescript-eslint 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.7.1 (2024-04-22)

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

0 comments on commit ee677f6

Please sign in to comment.