generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
bot
added
dependencies
Pull requests that update a dependency file
javascript
Pull requests that update Javascript code
labels
Feb 1, 2025
Diff between eslint-plugin-jest 28.10.0 and 28.11.0diff --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: {
Command detailsnpm diff --diff=eslint-plugin-jest@28.10.0 --diff=eslint-plugin-jest@28.11.0 --diff-unified=2 See also the Reported by ybiquitous/npm-diff-action@v1.6.0 (Node.js 22.13.1 and npm 11.1.0) |
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
0 participants
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps the eslint group with 1 update: eslint-plugin-jest.
Updates
eslint-plugin-jest
from 28.10.0 to 28.11.0Release notes
Sourced from eslint-plugin-jest's releases.
Changelog
Sourced from eslint-plugin-jest's changelog.
Commits
53427f0
chore(release): 28.11.0 [skip ci]ff0349e
feat(valid-expect): allow callingexpect
with no arguments (#1688)deb6609
chore(release): 28.10.1 [skip ci]9cb4ecc
fix(padding-around-test-blocks): update description (#1691)eecc6e6
chore: downgrademarkdown-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)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