You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This release includes a few minor improvements across a few different
packages.
<!-- CURSOR_SUMMARY -->
---
> [!NOTE]
> Publishes v14.1.0 across packages with TypeScript 5.6–5.8 support and
several Jest/base ESLint rule adjustments.
>
> - **Release**: bump versions to `14.1.0` in root,
`@metamask/eslint-config`, `@metamask/eslint-config-jest`, and
`@metamask/eslint-config-typescript`.
> - **Base (`@metamask/eslint-config`)**:
> - Loosen `promise/catch-or-return` and `promise/param-names`.
> - **Jest (`@metamask/eslint-config-jest`)**:
> - Replace `@typescript-eslint/unbound-method` with
`jest/unbound-method`.
> - Remove `jest/no-conditional-in-test`.
> - **TypeScript (`@metamask/eslint-config-typescript`)**:
> - Add support for TypeScript `5.6.x–5.8.x`.
> - Disable `@typescript-eslint/no-unsafe-enum-comparison`.
> - Loosen:
> - `@typescript-eslint/prefer-promise-reject-errors` (allow `unknown`).
> - `@typescript-eslint/naming-convention` (import names).
> - `@typescript-eslint/switch-exhaustiveness-check` (allow `default`).
>
> <sup>Written by [Cursor
Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit
db61ab4. This will update automatically
on new commits. Configure
[here](https://cursor.com/dashboard?tab=bugbot).</sup>
<!-- /CURSOR_SUMMARY -->
Copy file name to clipboardExpand all lines: packages/jest/CHANGELOG.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [Unreleased]
9
9
10
+
## [14.1.0]
11
+
12
+
### Changed
13
+
14
+
- Replace `@typescript-eslint/unbound-method` rule with `jest/unbound-method` in Jest tests ([#391](https://github.com/MetaMask/eslint-config/pull/391))
15
+
-`jest/unbound-method` is looser than `@typescript-eslint/unbound-method`, so this should be a non-breaking change unless `@typescript-eslint/unbound-method` is disabled.
@@ -107,7 +115,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
107
115
- To continue extending this config, install this package and update your `.eslintrc.js``extends` array to include `@metamask/eslint-config-jest` instead of `@metamask/eslint-config/jest`.
108
116
- Update `eslint` and other ESLint peer dependencies ([#151](https://github.com/MetaMask/eslint-config/pull/151))
- Loosen `@typescript-eslint/prefer-promise-reject-errors` rule to allow rejecting with `unknown` ([#389](https://github.com/MetaMask/eslint-config/pull/389))
20
+
- Loosen `@typescript-eslint/naming-convention` rule to allow more formats for import names ([#388](https://github.com/MetaMask/eslint-config/pull/388))
21
+
- Loosen `@typescript-eslint/switch-exhaustiveness-check` rule to allow `default` case ([#390](https://github.com/MetaMask/eslint-config/pull/390))
22
+
10
23
## [14.0.0]
11
24
12
25
### Added
@@ -171,7 +184,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
171
184
- To continue extending this config, install this package and update your `.eslintrc.js``extends` array to include `@metamask/eslint-config-typescript` instead of `@metamask/eslint-config/typescript`.
172
185
- Update `eslint` and other ESLint peer dependencies ([#151](https://github.com/MetaMask/eslint-config/pull/151))
0 commit comments