Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): bump eslint-plugin-jest from 28.10.0 to 28.11.0 in the eslint group #312

Merged
merged 1 commit into from
Feb 1, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2025

Bumps the eslint group with 1 update: eslint-plugin-jest.

Updates eslint-plugin-jest from 28.10.0 to 28.11.0

Release notes

Sourced from eslint-plugin-jest's releases.

v28.11.0

28.11.0 (2025-01-15)

Features

  • valid-expect: allow calling expect with no arguments (#1688) (ff0349e)

v28.10.1

28.10.1 (2025-01-15)

Bug Fixes

  • padding-around-test-blocks: update description (#1691) (9cb4ecc)
Changelog

Sourced from eslint-plugin-jest's changelog.

28.11.0 (2025-01-15)

Features

  • valid-expect: allow calling expect with no arguments (#1688) (ff0349e)

28.10.1 (2025-01-15)

Bug Fixes

  • padding-around-test-blocks: update description (#1691) (9cb4ecc)
Commits
  • 53427f0 chore(release): 28.11.0 [skip ci]
  • ff0349e feat(valid-expect): allow calling expect with no arguments (#1688)
  • deb6609 chore(release): 28.10.1 [skip ci]
  • 9cb4ecc fix(padding-around-test-blocks): update description (#1691)
  • eecc6e6 chore: downgrade markdown-link-check to known working version and make it l...
  • f05e76d chore: add Node 23 to CI (#1695)
  • 8c89634 chore(deps): update dependency eslint-config-prettier to v10 (#1694)
  • 320e949 chore(deps): update dependency is-ci to v4 (#1682)
  • 9c91509 chore: update package urls for homepage, repository, and bugs (#1693)
  • 3377cae chore(deps): lock file maintenance (#1692)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the eslint group with 1 update: [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest).


Updates `eslint-plugin-jest` from 28.10.0 to 28.11.0
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v28.10.0...v28.11.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: eslint
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 1, 2025
@github-actions github-actions bot enabled auto-merge (squash) February 1, 2025 04:34
Copy link

github-actions bot commented Feb 1, 2025

Diff between eslint-plugin-jest 28.10.0 and 28.11.0
diff --git a/lib/rules/padding-around-test-blocks.js b/lib/rules/padding-around-test-blocks.js
index v28.10.0..v28.11.0 100644
--- a/lib/rules/padding-around-test-blocks.js
+++ b/lib/rules/padding-around-test-blocks.js
@@ -15,3 +15,3 @@
   nextStatementType: _padding.StatementType.Any
 }];
-var _default = exports.default = (0, _padding.createPaddingRule)(__filename, 'Enforce padding around afterAll blocks', config);
\ No newline at end of file
+var _default = exports.default = (0, _padding.createPaddingRule)(__filename, 'Enforce padding around `test` and `it` blocks', config);
\ No newline at end of file
diff --git a/lib/rules/valid-expect.js b/lib/rules/valid-expect.js
index v28.10.0..v28.11.0 100644
--- a/lib/rules/valid-expect.js
+++ b/lib/rules/valid-expect.js
@@ -97,5 +97,5 @@
         minArgs: {
           type: 'number',
-          minimum: 1
+          minimum: 0
         },
         maxArgs: {
diff --git a/package.json b/package.json
index v28.10.0..v28.11.0 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
 {
   "name": "eslint-plugin-jest",
-  "version": "28.10.0",
+  "version": "28.11.0",
   "description": "ESLint rules for Jest",
   "keywords": [
@@ -8,5 +8,12 @@
     "eslint-plugin"
   ],
-  "repository": "jest-community/eslint-plugin-jest",
+  "homepage": "https://github.com/jest-community/eslint-plugin-jest#readme",
+  "bugs": {
+    "url": "https://github.com/jest-community/eslint-plugin-jest/issues"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/jest-community/eslint-plugin-jest.git"
+  },
   "license": "MIT",
   "author": {
@@ -31,6 +38,6 @@
     "prettier:write": "prettier --write 'docs/**/*.md' README.md '.github/**' package.json tsconfig.json src/globals.json .yarnrc.yml",
     "postpublish": "pinst --enable",
-    "test": "jest",
     "regenerate-docs": "yarn prepack && eslint-doc-generator",
+    "test": "jest",
     "typecheck": "tsc -p ."
   },
@@ -85,5 +92,5 @@
     "dedent": "^1.5.0",
     "eslint": "^7.0.0 || ^8.0.0",
-    "eslint-config-prettier": "^9.0.0",
+    "eslint-config-prettier": "^10.0.0",
     "eslint-doc-generator": "^1.0.0",
     "eslint-plugin-eslint-plugin": "^6.0.0",
@@ -94,9 +101,9 @@
     "eslint-remote-tester-repositories": "~1.0.0",
     "husky": "^9.0.1",
-    "is-ci": "^3.0.0",
+    "is-ci": "^4.0.0",
     "jest": "^29.0.0",
     "jest-runner-eslint": "^2.0.0",
     "lint-staged": "^13.0.3",
-    "markdown-link-check": "^3.10.2",
+    "markdown-link-check": "~3.12.0",
     "pinst": "^3.0.0",
     "prettier": "^3.0.0",
diff --git a/docs/rules/padding-around-test-blocks.md b/docs/rules/padding-around-test-blocks.md
index v28.10.0..v28.11.0 100644
--- a/docs/rules/padding-around-test-blocks.md
+++ b/docs/rules/padding-around-test-blocks.md
@@ -1,3 +1,3 @@
-# Enforce padding around afterAll blocks (`padding-around-test-blocks`)
+# Enforce padding around `test` and `it` blocks (`padding-around-test-blocks`)
 
 🔧 This rule is automatically fixable by the
diff --git a/README.md b/README.md
index v28.10.0..v28.11.0 100644
--- a/README.md
+++ b/README.md
@@ -360,5 +360,5 @@
 | [padding-around-describe-blocks](docs/rules/padding-around-describe-blocks.md)       | Enforce padding around `describe` blocks                                  |     |     | 🔧  |     |
 | [padding-around-expect-groups](docs/rules/padding-around-expect-groups.md)           | Enforce padding around `expect` groups                                    |     |     | 🔧  |     |
-| [padding-around-test-blocks](docs/rules/padding-around-test-blocks.md)               | Enforce padding around afterAll blocks                                    |     |     | 🔧  |     |
+| [padding-around-test-blocks](docs/rules/padding-around-test-blocks.md)               | Enforce padding around `test` and `it` blocks                             |     |     | 🔧  |     |
 | [prefer-called-with](docs/rules/prefer-called-with.md)                               | Suggest using `toBeCalledWith()` or `toHaveBeenCalledWith()`              |     |     |     |     |
 | [prefer-comparison-matcher](docs/rules/prefer-comparison-matcher.md)                 | Suggest using the built-in comparison matchers                            |     |     | 🔧  |     |
diff --git a/docs/rules/valid-expect.md b/docs/rules/valid-expect.md
index v28.10.0..v28.11.0 100644
--- a/docs/rules/valid-expect.md
+++ b/docs/rules/valid-expect.md
@@ -57,5 +57,5 @@
     minArgs: {
       type: 'number',
-      minimum: 1,
+      minimum: 0,
     },
     maxArgs: {
Size Files
341.7 KB → 341.9 KB (+245 B 🟡) 138 → 138 (±0 🟢)
Command details
npm diff --diff=eslint-plugin-jest@28.10.0 --diff=eslint-plugin-jest@28.11.0 --diff-unified=2

See also the npm diff document.

Reported by ybiquitous/npm-diff-action@v1.6.0 (Node.js 22.13.1 and npm 11.1.0)

@github-actions github-actions bot merged commit 526a713 into main Feb 1, 2025
5 checks passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/eslint-c4d9733a94 branch February 1, 2025 04:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants