PR #153 opened: chore(deps): bump the minor-and-patch group across 1 directory with 7 updates
Bumps the minor-and-patch group with 7 updates in the / directory:
| Package | From | To |
|---|---|---|
| @types/node | 25.5.0 | 25.6.0 |
| @typescript-eslint/eslint-plugin | 8.58.0 | 8.58.1 |
| @typescript-eslint/parser | 8.58.0 | 8.58.1 |
| dotenv | 17.4.0 | 17.4.1 |
| eslint | 10.1.0 | 10.2.0 |
| prettier | 3.8.1 | 3.8.2 |
| typescript-eslint | 8.58.0 | 8.58.1 |
Updates @types/node from 25.5.0 to 25.6.0
▶Commits
- See full diff in compare view
Updates @typescript-eslint/eslint-plugin from 8.58.0 to 8.58.1
▶Release notes
Sourced from @typescript-eslint/eslint-plugin's releases.
v8.58.1
8.58.1 (2026-04-08)
🩹 Fixes
- eslint-plugin: [no-unused-vars] fix false negative for type predicate parameter (#12004)
❤️ Thank You
- MinJae
@Ju-MINJAESee GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
▶Changelog
Sourced from @typescript-eslint/eslint-plugin's changelog.
8.58.1 (2026-04-08)
🩹 Fixes
- eslint-plugin: [no-unused-vars] fix false negative for type predicate parameter (#12004)
❤️ Thank You
- MinJae
@Ju-MINJAESee GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
▶Commits
5311ed3chore(release): publish 8.58.1c3f8ed5fix(eslint-plugin): [no-unused-vars] fix false negative for type predicate pa...e372a66Revert: feat(eslint-plugin): [no-unnecessary-type-arguments] report inferred ...- See full diff in compare view
Updates @typescript-eslint/parser from 8.58.0 to 8.58.1
▶Release notes
Sourced from @typescript-eslint/parser's releases.
v8.58.1
8.58.1 (2026-04-08)
🩹 Fixes
- eslint-plugin: [no-unused-vars] fix false negative for type predicate parameter (#12004)
❤️ Thank You
- MinJae
@Ju-MINJAESee GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
▶Changelog
Sourced from @typescript-eslint/parser's changelog.
8.58.1 (2026-04-08)
This was a version bump only for parser to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
▶Commits
5311ed3chore(release): publish 8.58.1- See full diff in compare view
Updates dotenv from 17.4.0 to 17.4.1
▶Changelog
Sourced from dotenv's changelog.
17.4.1 (2026-04-05)
Changed
- Change text
injectingtoinjected(#1005)
▶Commits
48aa21617.4.1e4282b0changelog 🪵c540e75Merge pull request #1006 from motdotla/skills-update5626f9bdotenvx skill2411f2aupdate dotenvx skill1e08a70simplify dotenv skill747f417Merge pull request #1005 from motdotla/injected271df30changelog 🪵3f01a8binjectingtoinjectedccc50d5update- Additional commits viewable in compare view
Updates eslint from 10.1.0 to 10.2.0
▶Release notes
Sourced from eslint's releases.
v10.2.0
Features
586ec2ffeat: Addmeta.languagessupport to rules (#20571) (Copilot)14207defeat: addTemporaltono-obj-calls(#20675) (Pixel998)bbb2c93feat: add Temporal to ES2026 globals (#20672) (Pixel998)Bug Fixes
Documentation
a2af743docs: addlanguageto configuration objects (#20712) (Francesco Trotta)845f23fdocs: Update README (GitHub Actions Bot)5fbcf59docs: removesourceTypefrom ts playground link (#20477) (Tanuj Kanti)8702a47docs: Update README (GitHub Actions Bot)ddeadeddocs: Update README (GitHub Actions Bot)2b44966docs: add Major Releases section to Manage Releases (#20269) (Milos Djermanovic)eab65c7docs: updateeslintversions in examples (#20664) (루밀LuMir)3e4a299docs: update ESM Dependencies policies with note for own-usage packages (#20660) (Milos Djermanovic)Chores
8120e30refactor: extract no unmodified loop condition (#20679) (kuldeep kumar)46e8469chore: update dependency markdownlint-cli2 to ^0.22.0 (#20697) (renovate[bot])01ed3aatest: add unit tests for unicode utilities (#20622) (Manish chaudhary)811f493ci: remove--legacy-peer-depsfrom types integration tests (#20667) (Milos Djermanovic)6b86fcfchore: update dependency npm-run-all2 to v8 (#20663) (renovate[bot])632c4f8chore: addprettierupdate commit to.git-blame-ignore-revs(#20662) (루밀LuMir)b0b0f21chore: update dependency eslint-plugin-regexp to ^3.1.0 (#20659) (Milos Djermanovic)228a2ddchore: update dependency eslint-plugin-eslint-plugin to ^7.3.2 (#20661) (Milos Djermanovic)3ab4d7etest: Add tests for eslintrc-style keys (#20645) (kuldeep kumar)
▶Commits
000128c10.2.01988fadBuild: changelog update for 10.2.0542cb3efix: update first-party dependencies (#20714)a2af743docs: addlanguageto configuration objects (#20712)845f23fdocs: Update README5fbcf59docs: removesourceTypefrom ts playground link (#20477)8702a47docs: Update READMEddeadeddocs: Update README8120e30refactor: extract no unmodified loop condition (#20679)46e8469chore: update dependency markdownlint-cli2 to ^0.22.0 (#20697)- Additional commits viewable in compare view
Updates prettier from 3.8.1 to 3.8.2
▶Changelog
Sourced from prettier's changelog.
3.8.2
Angular: Support Angular v21.2 (#18722, #19034 by
@fisker)Exhaustive typechecking with
@default never;<!-- Input --> @switch (foo) { @case (1) {} @default never; }<!-- Prettier 3.8.1 --> SyntaxError: Incomplete block "default never". If you meant to write the @ character, you should use the "@" HTML entity instead. (3:3)
<!-- Prettier 3.8.2 -->@switch(foo) {@case(1) {}@defaultnever; }
arrow functionandinstanceofexpressions.<!-- Input --> @let fn = (a) => a? 1:2;{{ fn ( a instanceof b)}}
<!-- Prettier 3.8.1 -->
@letfn = (a) => a? 1:2;{{ fn ( a instanceof b)}}
<!-- Prettier 3.8.2 -->
@letfn = (a) => (a ? 1 : 2);
{{ fn(a instanceof b) }}
▶Commits
Updates typescript-eslint from 8.58.0 to 8.58.1
▶Release notes
Sourced from typescript-eslint's releases.
v8.58.1
8.58.1 (2026-04-08)
🩹 Fixes
- eslint-plugin: [no-unused-vars] fix false negative for type predicate parameter (#12004)
❤️ Thank You
- MinJae
@Ju-MINJAESee GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
▶Changelog
Sourced from typescript-eslint's changelog.
8.58.1 (2026-04-08)
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
▶Commits
5311ed3chore(release): publish 8.58.1- See full diff 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@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