Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jest-community/eslint-plugin-jest
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v28.4.0
Choose a base ref
...
head repository: jest-community/eslint-plugin-jest
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v28.5.0
Choose a head ref
  • 2 commits
  • 3 files changed
  • 3 contributors

Commits on May 3, 2024

  1. feat: allow @typescript-eslint/utils v7 as a direct dependency (#1567)

    * feat: allow @typescript-eslint/utils@7
    
    * fix: typecheck and drop dependencies down
    
    * chore: drop back down to one type argument
    
    * chore: add utils to matrix
    
    * ci: properly install different versions of utils package
    
    ---------
    
    Co-authored-by: Gareth Jones <jones258@gmail.com>
    JoshuaKGoldberg and G-Rath authored May 3, 2024
    Copy the full SHA
    1476f10 View commit details
  2. chore(release): 28.5.0 [skip ci]

    # [28.5.0](v28.4.0...v28.5.0) (2024-05-03)
    
    ### Features
    
    * allow `@typescript-eslint/utils` v7 as a direct dependency ([#1567](#1567)) ([1476f10](1476f10))
    semantic-release-bot committed May 3, 2024
    Copy the full SHA
    a6e5081 View commit details
Showing with 12 additions and 3 deletions.
  1. +2 −1 .github/workflows/nodejs.yml
  2. +7 −0 CHANGELOG.md
  3. +3 −2 package.json
3 changes: 2 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -66,7 +66,7 @@ jobs:
test-node:
name:
# prettier-ignore
Test on Node.js v${{ matrix.node-version }}, eslint v${{ matrix.eslint-version }}, and ts-eslint/plugin v${{ matrix.ts-eslint-plugin-version }}
Test on Node.js v${{ matrix.node-version }}, eslint v${{ matrix.eslint-version }}, and ts-eslint v${{ matrix.ts-eslint-plugin-version }}
needs: prepare-yarn-cache-ubuntu
strategy:
fail-fast: false
@@ -100,6 +100,7 @@ jobs:
install with eslint v${{ matrix.eslint-version }} and ts-eslint/plugin v${{ matrix.ts-eslint-plugin-version }}
run: |
yarn
yarn add @typescript-eslint/utils@${{ matrix.ts-eslint-plugin-version }}
yarn add --dev eslint@${{ matrix.eslint-version }} @typescript-eslint/eslint-plugin@${{ matrix.ts-eslint-plugin-version }} @typescript-eslint/parser@${{ matrix.ts-eslint-plugin-version }}
- name: run tests
# only collect coverage on eslint versions that support dynamic import
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [28.5.0](https://github.com/jest-community/eslint-plugin-jest/compare/v28.4.0...v28.5.0) (2024-05-03)


### Features

* allow `@typescript-eslint/utils` v7 as a direct dependency ([#1567](https://github.com/jest-community/eslint-plugin-jest/issues/1567)) ([1476f10](https://github.com/jest-community/eslint-plugin-jest/commit/1476f10d39ce78fe5675b8b2c9d7095573eceb6b))

# [28.4.0](https://github.com/jest-community/eslint-plugin-jest/compare/v28.3.0...v28.4.0) (2024-05-03)


5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-jest",
"version": "28.4.0",
"version": "28.5.0",
"description": "ESLint rules for Jest",
"keywords": [
"eslint",
@@ -65,7 +65,7 @@
]
},
"dependencies": {
"@typescript-eslint/utils": "^6.0.0"
"@typescript-eslint/utils": "^6.0.0 || ^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
@@ -83,6 +83,7 @@
"@types/node": "^14.18.26",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@typescript-eslint/utils": "^6.0.0",
"babel-jest": "^29.0.0",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"dedent": "^1.5.0",