Bump the linters group with 5 updates
Type: Pull Request
State: Merged
Association: Contributor
Comments: 1
(6 months ago)
(6 months ago)
(6 months ago)
by danbarr
dependencies javascript
Bumps the linters group with 5 updates:
| Package | From | To | 
|---|---|---|
| eslint-config-prettier | 10.1.2 | 
10.1.5 | 
| globals | 16.0.0 | 
16.1.0 | 
| lint-staged | 15.5.1 | 
16.0.0 | 
| markdownlint-cli2 | 0.17.2 | 
0.18.0 | 
| typescript-eslint | 8.32.0 | 
8.32.1 | 
Updates eslint-config-prettier from 10.1.2 to 10.1.5
Release notes
Sourced from eslint-config-prettier's releases.
v10.1.5
Patch Changes
Full Changelog: https://github.com/prettier/eslint-config-prettier/compare/v10.1.4...v10.1.5
v10.1.4
Patch Changes
- #328
 94b4799Thanks@silvenon! - fix(cli): do not crash on no rules configuredFull Changelog: https://github.com/prettier/eslint-config-prettier/compare/v10.1.3...v10.1.4
v10.1.3
Patch Changes
New Contributors
@pilikanmade their first contribution in prettier/eslint-config-prettier#325Full Changelog: https://github.com/prettier/eslint-config-prettier/compare/v10.1.2...v10.1.3
Changelog
Sourced from eslint-config-prettier's changelog.
10.1.5
Patch Changes
10.1.4
Patch Changes
- #328
 94b4799Thanks@silvenon! - fix(cli): do not crash on no rules configured10.1.3
Patch Changes
Commits
4c94893chore: release eslint-config-prettier (#333)60fef02chore: addfundingfield intopackage.json(#332)f55501fchore: release eslint-config-prettier (#329)50a8a22chore(deps): update all dependencies (#330)94b4799fix(cli): do not crash on no rules configured (#328)cdc4a5cchore: release eslint-config-prettier (#326)4e95a1dfix: this package iscommonjs, align its types correctly (#325)- See full diff in compare view
 
Updates globals from 16.0.0 to 16.1.0
Release notes
Sourced from globals's releases.
v16.1.0
- Update globals (#293) 5c58875
 
https://github.com/sindresorhus/globals/compare/v16.0.0...v16.1.0
Commits
Updates lint-staged from 15.5.1 to 16.0.0
Release notes
Sourced from lint-staged's releases.
v16.0.0
Major Changes
#1546
158d15cThanks@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 withnode, especially when using Windows:{ "*.js": "node my-js-linter.js" }#1546
158d15cThanks@iiroj! - The--shellflag 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/bashecho "Staged files: $@"
and
{ "*.js": "my-script.sh" }If you were using the shell option to avoid passing filenames to tasks, for example
bash -c 'tsc --noEmit', use the function syntax instead:export default { '*.ts': () => 'tsc --noEmit' }#1546
158d15cThanks@iiroj! - Validation for deprecated advanced configuration has been removed. The advanced configuration was removed in lint-staged version 9 and until now validation has failed if advanced configuration options were detected. Going forward the entire configuration will be treated with the same logic and if these advanced options are still present, they might be treated as valid globs for staged files instead.#1546
158d15cThanks@iiroj! - The lowest supported Node.js version is20.18. Please upgrade your Node.js version.Minor Changes
#1401
27110efThanks@RohitLuthra19! - Added support for directly running functions on staged files. To configure a function task, use an object with a title and the task itself:export default { '*.js': { title: 'My task', task: async (files) => { console.log('Staged JS files:', files) }, }, }
... (truncated)
Changelog
Sourced from lint-staged's changelog.
16.0.0
Major Changes
#1546
158d15cThanks@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 withnode, especially when using Windows:{ "*.js": "node my-js-linter.js" }#1546
158d15cThanks@iiroj! - The--shellflag 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/bashecho "Staged files: $@"
and
{ "*.js": "my-script.sh" }If you were using the shell option to avoid passing filenames to tasks, for example
bash -c 'tsc --noEmit', use the function syntax instead:export default { '*.ts': () => 'tsc --noEmit' }#1546
158d15cThanks@iiroj! - Validation for deprecated advanced configuration has been removed. The advanced configuration was removed in lint-staged version 9 and until now validation has failed if advanced configuration options were detected. Going forward the entire configuration will be treated with the same logic and if these advanced options are still present, they might be treated as valid globs for staged files instead.#1546
158d15cThanks@iiroj! - The lowest supported Node.js version is20.18. Please upgrade your Node.js version.Minor Changes
#1401
27110efThanks@RohitLuthra19! - Added support for directly running functions on staged files. To configure a function task, use an object with a title and the task itself:export default { '*.js': { title: 'My task', task: async (files) => { console.log('Staged JS files:', files) }, }, }
... (truncated)
Commits
dad5490chore(changeset): release1c19e82build(deps): update dependencies and require Node.js 20.1808cf8f5docs: update README.md and bump nano-spawn as major change276dcc8refactor: simplify config validationd4b7cactest: update tests0ee9ab8fix: update TypeScript type definitions12525b2refactor: rename functions541c353refactor: separate "make cmd tasks" and "make function tasks"27110effeat: added support for custom configuration52366f9ci: update Node.js versions used in CI- Additional commits viewable in compare view
 
Updates markdownlint-cli2 from 0.17.2 to 0.18.0
Changelog
Sourced from markdownlint-cli2's changelog.
0.18.0
- Use user ID in Docker containers for security
 - Update dependencies (including
 markdownlint)- Remove support for end-of-life Node 18
 
Commits
e8d3f68Update to version 0.18.0.c6ca909Bump markdownlint-cli2-formatter-junit from 0.0.12 to 0.0.13b28cf4aBump markdownlint-cli2-formatter-pretty from 0.0.7 to 0.0.8e443d9fBump markdownlint-cli2-formatter-template from 0.0.2 to 0.0.38e24647Update README.md to suggest using noBanner with noProgress to implement conve...ea7be7aUpdate versions of formatter-junit/pretty/template (to pick up changes to pac...690f2f6Bump eslint-plugin-n from 17.17.0 to 17.18.04070402Bump nano-spawn from 0.2.0 to 0.2.1bb12d0fAdd released Node version 24 to CI workflow.f75b0baUpdate Dockerfile-rules to use user ID (vs. name) for consistency with Docker...- Additional commits viewable in compare view
 
Updates typescript-eslint from 8.32.0 to 8.32.1
Release notes
Sourced from typescript-eslint's releases.
v8.32.1
8.32.1 (2025-05-12)
🩹 Fixes
- eslint-plugin: [no-unnecessary-type-conversion] shouldn't have fixable property (#11194)
 - eslint-plugin: [no-deprecated] support computed member access (#10867)
 - eslint-plugin: [consistent-indexed-object-style] adjust auto-fixer to generate valid syntax for
 TSMappedTypewith no type annotation (#11180)- eslint-plugin: [consistent-indexed-object-style] check for indirect circular types in aliased mapped types (#11177)
 ❤️ Thank You
- Azat S.
 @azat-io- Dima Barabash
 @dbarabashh- Ronen Amiel
 You can read about our versioning strategy and releases on our website.
Changelog
Sourced from typescript-eslint's changelog.
8.32.1 (2025-05-12)
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
Commits
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Pull Request Statistics
1
2
+255
-272
Package Dependencies
Technical Details
| ID: | 208006 | 
            
| UUID: | 2514925269 | 
            
| Node ID: | PR_kwDONPLH5s6V5rbV | 
            
| Host: | GitHub | 
| Repository: | stacklok/codegate-docs | 
| Merge State: | Unknown |