Skip to content

Bump the lint group across 1 directory with 6 updates #2619

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 30, 2025

Bumps the lint group with 6 updates in the / directory:

Package From To
lint-staged 15.5.0 16.1.2
markdownlint-cli 0.44.0 0.45.0
npm-package-json-lint 8.0.0 9.0.0
npm-package-json-lint-config-default 7.0.1 8.0.1
prettier 3.5.3 3.6.2
stylelint 16.18.0 16.21.0

Updates lint-staged from 15.5.0 to 16.1.2

Release notes

Sourced from lint-staged's releases.

v16.1.2

Patch Changes

  • #1570 a7c0c88 Thanks @​ItsNickBarry! - When using --diff-filter with the D option to include deleted staged files, lint-staged no longer tries to stage the deleted files, unless they're no longer deleted. Previously this caused an error from git add like fatal: pathspec 'deleted-file' did not match any files.

  • 38f942e Thanks @​iiroj! - Removed an extraneous log entry that printed shouldHidePArtiallyStagedFiles to console output.

v16.1.1

Patch Changes

  • #1565 3686977 Thanks @​iiroj! - Lint-staged now explicitly warns about potential data loss when using --no-stash.

  • #1571 02299a9 Thanks @​iiroj! - Function tasks (introduced in v16.0.0) only receive the staged files matching the configured glob, instead of all staged files.

  • #1563 bc61c74 Thanks @​iiroj! - This version fixes incorrect behavior where unstaged changes were committed when using the --no-stash option. This happened because --no-stash implied --no-hide-partially-staged, meaning unstaged changes to files which also had other staged changes were added to the commit by lint-staged; this is no longer the case.

    The previous (incorrect) behavior can still be achieved by using both options --no-stash --no-hide-partially-staged at the same time.

v16.1.0

Minor Changes

  • #1536 e729daa Thanks @​iiroj! - A new flag --no-revert has been introduced for when task modifications should be applied to the index before aborting the commit in case of errors. By default, lint-staged will clear all task modifications and revert to the original state.

  • #1550 b27fa3f Thanks @​iiroj! - Lint-staged now ignores symlinks and leaves them out from the list of staged files.

Patch Changes

v16.0.0

Major Changes

  • #1546 158d15c Thanks @​iiroj! - Processes are spawned using nano-spawn instead of execa. If you are using Node.js scripts as tasks, you might need to explicitly run them with node, especially when using Windows:

    {
      "*.js": "node my-js-linter.js"
    }
  • #1546 158d15c Thanks @​iiroj! - The --shell flag has been removed and lint-staged no longer supports evaluating commands directly via a shell. To migrate existing commands, you can create a shell script and invoke it instead. Lint-staged will pass matched staged files as a list of arguments, accessible via "$@":

    # my-script.sh
    #!/bin/bash
    echo "Staged files: $@"

    and

... (truncated)

Changelog

Sourced from lint-staged's changelog.

16.1.2

Patch Changes

  • #1570 a7c0c88 Thanks @​ItsNickBarry! - When using --diff-filter with the D option to include deleted staged files, lint-staged no longer tries to stage the deleted files, unless they're no longer deleted. Previously this caused an error from git add like fatal: pathspec 'deleted-file' did not match any files.

  • 38f942e Thanks @​iiroj! - Removed an extraneous log entry that printed shouldHidePArtiallyStagedFiles to console output.

16.1.1

Patch Changes

  • #1565 3686977 Thanks @​iiroj! - Lint-staged now explicitly warns about potential data loss when using --no-stash.

  • #1571 02299a9 Thanks @​iiroj! - Function tasks (introduced in v16.0.0) only receive the staged files matching the configured glob, instead of all staged files.

  • #1563 bc61c74 Thanks @​iiroj! - This version fixes incorrect behavior where unstaged changes were committed when using the --no-stash option. This happened because --no-stash implied --no-hide-partially-staged, meaning unstaged changes to files which also had other staged changes were added to the commit by lint-staged; this is no longer the case.

    The previous (incorrect) behavior can still be achieved by using both options --no-stash --no-hide-partially-staged at the same time.

16.1.0

Minor Changes

  • #1536 e729daa Thanks @​iiroj! - A new flag --no-revert has been introduced for when task modifications should be applied to the index before aborting the commit in case of errors. By default, lint-staged will clear all task modifications and revert to the original state.

  • #1550 b27fa3f Thanks @​iiroj! - Lint-staged now ignores symlinks and leaves them out from the list of staged files.

Patch Changes

16.0.0

Major Changes

  • #1546 158d15c Thanks @​iiroj! - Processes are spawned using nano-spawn instead of execa. If you are using Node.js scripts as tasks, you might need to explicitly run them with node, especially when using Windows:

    {
      "*.js": "node my-js-linter.js"
    }
  • #1546 158d15c Thanks @​iiroj! - The --shell flag has been removed and lint-staged no longer supports evaluating commands directly via a shell. To migrate existing commands, you can create a shell script and invoke it instead. Lint-staged will pass matched staged files as a list of arguments, accessible via "$@":

    # my-script.sh
    #!/bin/bash

... (truncated)

Commits
  • 0c48e29 chore(changeset): release
  • e07227e perf: call rev-parse only once instead of three times when resolving git repo
  • 38f942e fix: remove extra log entry
  • 5031a71 perf: further optimize file chunking
  • 6ec38b9 perf: optimize file list length calculation (#1581)
  • a7c0c88 fix: only stage changes to deleted files if they're no longer deleted after r...
  • ccd5edd test: pass --no-error-on-unmatched-pattern to prettier command in --diff-opti...
  • 48a6e95 test: add failing test for staged deleted files not passed directly to tasks ...
  • b56b29e test: add failing test for staged deleted files with diff filter D
  • 8420429 chore(changeset): release
  • Additional commits viewable in compare view

Updates markdownlint-cli from 0.44.0 to 0.45.0

Release notes

Sourced from markdownlint-cli's releases.

v0.45.0

  • Update markdownlint dependency to 0.38.0
    • Add MD059/descriptive-link-text
    • Improve MD025/MD027/MD036/MD038/MD041/MD043/MD045/MD051/MD052
    • Remove support for end-of-life Node version 18
  • Update all dependencies via Dependabot
Commits
  • 192ad82 Bump version 0.45.0
  • f6225d2 Bump nano-spawn from 0.2.0 to 1.0.1
  • 1b8554a Add released Node version 24 to CI workflow.
  • 836379f Remove optional constant fs.R_OK
  • 1a19ddb Bump minimatch from 9.0.5 to 10.0.1
  • 5033e1e Pass newly-required markdownItFactory option to markdownlint.
  • b7e47f8 Bump markdownlint from 0.37.4 to 0.38.0
  • c3fa9f5 Bump glob from 10.4.5 to 11.0.2
  • b983f61 Remove support for end-of-life Node.js version 18.
  • 8878ef0 Bump ignore from 7.0.3 to 7.0.4
  • Additional commits viewable in compare view

Updates npm-package-json-lint from 8.0.0 to 9.0.0

Release notes

Sourced from npm-package-json-lint's releases.

v9.0.0

What's Changed

💥 Breaking changes

🧹 Chores

... (truncated)

Commits
  • 13f3c84 Drop node18 (#1546)
  • bce0c15 build(deps): Bump semver from 6.3.0 to 6.3.1 in /website (#1545)
  • db67053 build(deps): Bump cross-spawn from 7.0.3 to 7.0.6 in /website (#1485)
  • 893b808 build(deps): Bump express from 4.19.2 to 4.21.2 in /website (#1544)
  • f9cfb6e build(deps): Bump braces from 3.0.2 to 3.0.3 in /website (#1345)
  • 1f10c59 build(deps): Bump webpack from 5.89.0 to 5.94.0 in /website (#1421)
  • 3a7f71e build(deps-dev): Bump eslint-plugin-import from 2.29.1 to 2.31.0 (#1451)
  • 7255e36 build(deps): Bump prismjs from 1.29.0 to 1.30.0 in /website (#1521)
  • a86a3f4 build(deps): Bump @​babel/runtime-corejs3 in /website (#1523)
  • 20e0f43 build(deps): Bump estree-util-value-to-estree in /website (#1530)
  • Additional commits viewable in compare view

Updates npm-package-json-lint-config-default from 7.0.1 to 8.0.1

Release notes

Sourced from npm-package-json-lint-config-default's releases.

v8.0.1

What's Changed

🧹 Chores

Full Changelog: tclindner/npm-package-json-lint-config-default@v8.0.0...v8.0.1

v8.0.0

What's Changed

💥 Breaking changes

🧹 Chores

🎁 Other

Full Changelog: tclindner/npm-package-json-lint-config-default@v7.0.1...v8.0.0

Commits

Updates prettier from 3.5.3 to 3.6.2

Release notes

Sourced from prettier's releases.

3.6.2

What's Changed

🔗 Changelog

3.6.1

  • Fix "Warning: File descriptor 39 closed but not opened in unmanaged mode" error when running --experimental-cli

🔗 Changelog

3.6.0

diff

🔗 Release note "Prettier 3.6: Experimental fast CLI and new OXC and Hermes plugins!"

Changelog

Sourced from prettier's changelog.

3.6.2

diff

Markdown: Add missing blank line around code block (#17675 by @​fisker)

<!-- Input -->
1. Some text, and code block below, with newline after code block
---
foo: bar


Another
List

<!-- Prettier 3.6.1 -->


Some text, and code block below, with newline after code block
---
foo: bar


Another
List



<!-- Prettier 3.6.2 -->


Some text, and code block below, with newline after code block
---
foo: bar


Another
List

3.6.1

diff

TypeScript: Allow const without initializer (#17650, #17654 by @​fisker)

// Input
</tr></table> 

... (truncated)

Commits
  • 7a8b05f Release 3.6.2
  • 46526b4 Add missing blank line around code block (#17675)
  • a04ec11 chore(deps): update babel to v7.27.7 (#17684)
  • 32be5b6 chore(deps): update dependency flow-parser to v0.274.1 (#17676)
  • b55e777 Update docs about "TypeScript Configuration Files" (#17677)
  • b197c99 chore(deps): update dependency @​vitejs/plugin-react to v4.6.0 (#17674)
  • 1185f83 chore(deps): update dependency @​angular/compiler to v20.0.5 (#17680)
  • aa1316f chore(deps): update dependency browserslist to v4.25.1 (#17671)
  • c468d33 chore(deps): update dependency oxc-parser to v0.75.0 (#17672)
  • 3f46d91 chore(deps): update dependency vite to v7 (#17673)
  • Additional commits viewable in compare view

Updates stylelint from 16.18.0 to 16.21.0

Release notes

Sourced from stylelint's releases.

16.21.0

It rounds out the message secondary option and marks it as stable, adds 1 new option to a rule, and fixes 4 bugs.

  • Added: non-experimental support for functional message secondary option (#8595) (@​ybiquitous).
  • Added: ignore: ["after-custom-property"] to custom-property-empty-line-before (#8627) (@​imkesin).
  • Fixed: cache configuration property not being respected (#8599) (@​ybiquitous).
  • Fixed: fastest-levenshtein import when bundling (#8621) (@​onigoetz).
  • Fixed: named-grid-areas-no-invalid false positives for interpolated grid-template-areas in CSS-in-JS (#8606) (@​shahana308).
  • Fixed: selector-pseudo-*-no-unknown false positives for the missing form control styling selectors (#8623) (@​tyrann0us).

16.20.0

It fixes 2 bugs with the built-in rules.

  • Fixed: function-url-no-scheme-relative false negatives for @import (#8576) (@​pamelalozano16).
  • Fixed: shorthand-property-no-redundant-values false negatives for additional radius (#8539) (@​ryo-manba).

16.19.1

It fixes 1 bug with the no-empty-source rule.

16.19.0

It adds 2 options to 2 rules and fixes 3 bugs.

  • Added: exceptWithoutPropertyFallback: [] to function-allowed-list (#8488) (@​ryo-manba).
  • Added: ignore: ["four-into-three-edge-values"] to shorthand-property-no-redundant-values (#8527) (@​ryo-manba).
  • Fixed: compact formatter with pnpm to newline the exit code (#8534) (@​konomae).
  • Fixed: declaration-property-value-no-unknown range and message for invalid syntax within known functions (#8528) (@​ryo-manba).
  • Fixed: no-empty-source false positives for --report-needless-disables (#8536) (@​romainmenke).
Changelog

Sourced from stylelint's changelog.

16.21.0 - 2025-06-19

It rounds out the message secondary option and marks it as stable, adds 1 new option to a rule, and fixes 4 bugs.

  • Added: non-experimental support for functional message secondary option (#8595) (@​ybiquitous).
  • Added: ignore: ["after-custom-property"] to custom-property-empty-line-before (#8627) (@​imkesin).
  • Fixed: cache configuration property not being respected (#8599) (@​ybiquitous).
  • Fixed: fastest-levenshtein import when bundling (#8621) (@​onigoetz).
  • Fixed: named-grid-areas-no-invalid false positives for interpolated grid-template-areas in CSS-in-JS (#8606) (@​shahana308).
  • Fixed: selector-pseudo-*-no-unknown false positives for the missing form control styling selectors (#8623) (@​tyrann0us).

16.20.0 - 2025-05-29

It fixes 2 bugs with the built-in rules.

  • Fixed: function-url-no-scheme-relative false negatives for @import (#8576) (@​pamelalozano16).
  • Fixed: shorthand-property-no-redundant-values false negatives for additional radius (#8539) (@​ryo-manba).

16.19.1 - 2025-04-25

It fixes 1 bug with the no-empty-source rule.

16.19.0 - 2025-04-23

It adds 2 options to 2 rules and fixes 3 bugs.

  • Added: exceptWithoutPropertyFallback: [] to function-allowed-list (#8488) (@​ryo-manba).
  • Added: ignore: ["four-into-three-edge-values"] to shorthand-property-no-redundant-values (#8527) (@​ryo-manba).
  • Fixed: compact formatter with pnpm to newline the exit code (#8534) (@​konomae).
  • Fixed: declaration-property-value-no-unknown range and message for invalid syntax within known functions (#8528) (@​ryo-manba).
  • Fixed: no-empty-source false positives for --report-needless-disables (#8536) (@​romainmenke).
Commits
  • 90ffc0b 16.21.0
  • e34a2a3 Prepare 16.21.0 (#8598)
  • 18c9d63 Fix selector-pseudo-*-no-unknown false positives for form control styling s...
  • b006c58 Fix cache configuration property not being respected (#8599)
  • b764c23 Fix named-grid-areas-no-invalid false positives for interpolated grid-templ...
  • 103c2d2 Add ignore: ["after-custom-property"] to `custom-property-empty-line-before...
  • 1f9791b Document custom-property-empty-line-before ignore examples correctly (#8628)
  • 8a9a830 Fix fastest-levenshtein import when bundling (#8621)
  • 651a1b4 Document notation typo fix (#8624)
  • 93d1af1 Bump known-css-properties from 0.36.0 to 0.37.0 (#8619)
  • Additional commits viewable in compare view

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 lint group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.5.0` | `16.1.2` |
| [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli) | `0.44.0` | `0.45.0` |
| [npm-package-json-lint](https://github.com/tclindner/npm-package-json-lint) | `8.0.0` | `9.0.0` |
| [npm-package-json-lint-config-default](https://github.com/tclindner/npm-package-json-lint-config-default) | `7.0.1` | `8.0.1` |
| [prettier](https://github.com/prettier/prettier) | `3.5.3` | `3.6.2` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.18.0` | `16.21.0` |



Updates `lint-staged` from 15.5.0 to 16.1.2
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.5.0...v16.1.2)

Updates `markdownlint-cli` from 0.44.0 to 0.45.0
- [Release notes](https://github.com/igorshubovych/markdownlint-cli/releases)
- [Commits](igorshubovych/markdownlint-cli@v0.44.0...v0.45.0)

Updates `npm-package-json-lint` from 8.0.0 to 9.0.0
- [Release notes](https://github.com/tclindner/npm-package-json-lint/releases)
- [Changelog](https://github.com/tclindner/npm-package-json-lint/blob/master/CHANGELOG.md)
- [Commits](tclindner/npm-package-json-lint@v8.0.0...v9.0.0)

Updates `npm-package-json-lint-config-default` from 7.0.1 to 8.0.1
- [Release notes](https://github.com/tclindner/npm-package-json-lint-config-default/releases)
- [Changelog](https://github.com/tclindner/npm-package-json-lint-config-default/blob/main/CHANGELOG.md)
- [Commits](tclindner/npm-package-json-lint-config-default@v7.0.1...v8.0.1)

Updates `prettier` from 3.5.3 to 3.6.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.5.3...3.6.2)

Updates `stylelint` from 16.18.0 to 16.21.0
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint@16.18.0...16.21.0)

---
updated-dependencies:
- dependency-name: lint-staged
  dependency-version: 16.1.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: lint
- dependency-name: markdownlint-cli
  dependency-version: 0.45.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint
- dependency-name: npm-package-json-lint
  dependency-version: 9.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: lint
- dependency-name: npm-package-json-lint-config-default
  dependency-version: 8.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: lint
- dependency-name: prettier
  dependency-version: 3.6.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint
- dependency-name: stylelint
  dependency-version: 16.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 30, 2025
Copy link

netlify bot commented Jun 30, 2025

Deploy Preview for relational-playground canceled.

Name Link
🔨 Latest commit bf93619
🔍 Latest deploy log https://app.netlify.com/projects/relational-playground/deploys/686299b9911a1e0008268307

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