Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the development group with 5 updates:

Package From To
@types/node 24.4.0 24.6.1
eslint 9.35.0 9.36.0
eslint-plugin-jsdoc 57.0.8 60.7.0
rolldown 1.0.0-beta.37 1.0.0-beta.41
typescript 5.9.2 5.9.3

Updates @types/node from 24.4.0 to 24.6.1

Commits

Updates eslint from 9.35.0 to 9.36.0

Release notes

Sourced from eslint's releases.

v9.36.0

Features

  • 47afcf6 feat: correct preserve-caught-error edge cases (#20109) (Francesco Trotta)

Bug Fixes

  • 75b74d8 fix: add missing rule option types (#20127) (ntnyq)
  • 1c0d850 fix: update eslint-all.js to use Object.freeze for rules object (#20116) (루밀LuMir)
  • 7d61b7f fix: add missing scope types to Scope.type (#20110) (Pixel998)
  • 7a670c3 fix: correct rule option typings in rules.d.ts (#20084) (Pixel998)

Documentation

  • b73ab12 docs: update examples to use defineConfig (#20131) (sethamus)
  • 31d9392 docs: fix typos (#20118) (Pixel998)
  • c7f861b docs: Update README (GitHub Actions Bot)
  • 6b0c08b docs: Update README (GitHub Actions Bot)
  • 91f97c5 docs: Update README (GitHub Actions Bot)

Chores

  • 12411e8 chore: upgrade @​eslint/js@​9.36.0 (#20139) (Milos Djermanovic)
  • 488cba6 chore: package.json update for @​eslint/js release (Jenkins)
  • bac82a2 ci: simplify renovate configuration (#19907) (唯然)
  • c00bb37 ci: bump actions/labeler from 5 to 6 (#20090) (dependabot[bot])
  • fee751d refactor: use defaultOptions in rules (#20121) (Pixel998)
  • 1ace67d chore: update example to use defineConfig (#20111) (루밀LuMir)
  • 4821963 test: add missing loc information to error objects in rule tests (#20112) (루밀LuMir)
  • b42c42e chore: disallow use of deprecated type property in core rule tests (#20094) (Milos Djermanovic)
  • 7bb498d test: remove deprecated type property from core rule tests (#20093) (Pixel998)
  • e10cf2a ci: bump actions/setup-node from 4 to 5 (#20089) (dependabot[bot])
  • 5cb0ce4 refactor: use meta.defaultOptions in preserve-caught-error (#20080) (Pixel998)
  • f9f7cb5 chore: package.json update for eslint-config-eslint release (Jenkins)
  • 81764b2 chore: update eslint peer dependency in eslint-config-eslint (#20079) (Milos Djermanovic)
Changelog

Sourced from eslint's changelog.

v9.36.0 - September 19, 2025

  • 12411e8 chore: upgrade @​eslint/js@​9.36.0 (#20139) (Milos Djermanovic)
  • 488cba6 chore: package.json update for @​eslint/js release (Jenkins)
  • b73ab12 docs: update examples to use defineConfig (#20131) (sethamus)
  • 47afcf6 feat: correct preserve-caught-error edge cases (#20109) (Francesco Trotta)
  • 75b74d8 fix: add missing rule option types (#20127) (ntnyq)
  • bac82a2 ci: simplify renovate configuration (#19907) (唯然)
  • 1c0d850 fix: update eslint-all.js to use Object.freeze for rules object (#20116) (루밀LuMir)
  • c00bb37 ci: bump actions/labeler from 5 to 6 (#20090) (dependabot[bot])
  • fee751d refactor: use defaultOptions in rules (#20121) (Pixel998)
  • 31d9392 docs: fix typos (#20118) (Pixel998)
  • 7d61b7f fix: add missing scope types to Scope.type (#20110) (Pixel998)
  • 1ace67d chore: update example to use defineConfig (#20111) (루밀LuMir)
  • 4821963 test: add missing loc information to error objects in rule tests (#20112) (루밀LuMir)
  • c7f861b docs: Update README (GitHub Actions Bot)
  • 6b0c08b docs: Update README (GitHub Actions Bot)
  • 7a670c3 fix: correct rule option typings in rules.d.ts (#20084) (Pixel998)
  • b42c42e chore: disallow use of deprecated type property in core rule tests (#20094) (Milos Djermanovic)
  • 7bb498d test: remove deprecated type property from core rule tests (#20093) (Pixel998)
  • 91f97c5 docs: Update README (GitHub Actions Bot)
  • e10cf2a ci: bump actions/setup-node from 4 to 5 (#20089) (dependabot[bot])
  • 5cb0ce4 refactor: use meta.defaultOptions in preserve-caught-error (#20080) (Pixel998)
  • f9f7cb5 chore: package.json update for eslint-config-eslint release (Jenkins)
  • 81764b2 chore: update eslint peer dependency in eslint-config-eslint (#20079) (Milos Djermanovic)
Commits

Updates eslint-plugin-jsdoc from 57.0.8 to 60.7.0

Release notes

Sourced from eslint-plugin-jsdoc's releases.

v60.7.0

60.7.0 (2025-10-01)

Bug Fixes

  • prefer-import-tag: handle inserting before early comment nodes; fixes #1549 (9e92718)

Features

  • require-returns-check: add noNativeTypes option to assert async functions do not have native types as return types; fixes #1345 (13fe027)

v60.6.0

60.6.0 (2025-09-30)

Features

v60.5.0

60.5.0 (2025-09-28)

Bug Fixes

  • no-undefined-types: avoid param and property tags from being treated as type-defining (f72ac1a)

Features

  • check-tag-names: add inlineTags option with default inline tag checking (f0515be)
  • require-template-description: add rule; fixes #1540 (90af18a)

v60.4.1

60.4.1 (2025-09-27)

Bug Fixes

  • requireParam: update return type to include foundIndex and tagLineCount (#1531) (91e261d), closes #1530 #1530

v60.4.0

60.4.0 (2025-09-26)

Bug Fixes

  • ensure permissive settings are converted for jsdoc-type-pratt-parser (065f11a)

... (truncated)

Commits
  • 9e92718 fix(prefer-import-tag): handle inserting before early comment nodes; fixes ...
  • 13fe027 feat(require-returns-check): add noNativeTypes option to assert async fun...
  • 7a6b7db feat(escape-inline-tags): add new rule (#1547)
  • f72ac1a fix(no-undefined-types): avoid param and property tags from being treated a...
  • c3cc145 docs: add reference in README
  • f0515be feat(check-tag-names): add inlineTags option with default inline tag chec...
  • 8bbec0a chore: bump jsdoc-type-pratt-parser
  • 90af18a feat(require-template-description): add rule; fixes #1540
  • 91e261d fix(requireParam): update return type to include foundIndex and tagLineCount ...
  • ab9fe6a docs: document mixed config (#1546)
  • Additional commits viewable in compare view

Updates rolldown from 1.0.0-beta.37 to 1.0.0-beta.41

Release notes

Sourced from rolldown's releases.

v1.0.0-beta.41

[1.0.0-beta.41] - 2025-09-29

🚀 Features

🐛 Bug Fixes

  • 'asset' module type and CJS format produces warnings and wrong output (#6369) by @​IWANABETHATGUY
  • inlining constants in CJS by optimization.inlineConst incorrectly inlines non-constant values if the value is assigned more than once (#6328) by @​IWANABETHATGUY
  • dev: add hasLatestBuildOutput instead of scheduleBuildIfStale and add edit-reload test (#6321) by @​sapphi-red

🚜 Refactor

⚡ Performance

🧪 Testing

⚙️ Miscellaneous Tasks

... (truncated)

Changelog

Sourced from rolldown's changelog.

[1.0.0-beta.41] - 2025-09-29

🚀 Features

🐛 Bug Fixes

  • 'asset' module type and CJS format produces warnings and wrong output (#6369) by @​IWANABETHATGUY
  • inlining constants in CJS by optimization.inlineConst incorrectly inlines non-constant values if the value is assigned more than once (#6328) by @​IWANABETHATGUY
  • dev: add hasLatestBuildOutput instead of scheduleBuildIfStale and add edit-reload test (#6321) by @​sapphi-red

🚜 Refactor

⚡ Performance

🧪 Testing

⚙️ Miscellaneous Tasks

... (truncated)

Commits
  • bc2b152 release: v1.0.0-beta.41 (#6372)
  • 621b527 feat: support output.generatedCode.symbols (#6335)
  • 9cecc80 chore(node): use catalog: to unify version of all dependencies (#6339)
  • d31d4c6 refactor(dev): remove deprecated new field from HMR options and related con...
  • c376f9d refactor(dev): remove unused hmr API (#6336)
  • 382f7b2 chore: remove unused snapshots (#6331)
  • 1d3b957 fix(dev): add hasLatestBuildOutput instead of scheduleBuildIfStale and ad...
  • d13f8e9 feat(dev): introduce client/session concept into dev engine (#6297)
  • 8b29afa release: v1.0.0-beta.40 (#6324)
  • 84f4416 chore(deps): lock file maintenance npm packages (#6301)
  • Additional commits viewable in compare view

Updates typescript from 5.9.2 to 5.9.3

Release notes

Sourced from typescript's releases.

TypeScript 5.9.3

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 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 development group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.4.0` | `24.6.1` |
| [eslint](https://github.com/eslint/eslint) | `9.35.0` | `9.36.0` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `57.0.8` | `60.7.0` |
| [rolldown](https://github.com/rolldown/rolldown/tree/HEAD/packages/rolldown) | `1.0.0-beta.37` | `1.0.0-beta.41` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.2` | `5.9.3` |


Updates `@types/node` from 24.4.0 to 24.6.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint` from 9.35.0 to 9.36.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.35.0...v9.36.0)

Updates `eslint-plugin-jsdoc` from 57.0.8 to 60.7.0
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Changelog](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/.releaserc)
- [Commits](gajus/eslint-plugin-jsdoc@v57.0.8...v60.7.0)

Updates `rolldown` from 1.0.0-beta.37 to 1.0.0-beta.41
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.41/packages/rolldown)

Updates `typescript` from 5.9.2 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.9.2...v5.9.3)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 24.6.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: eslint
  dependency-version: 9.36.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: eslint-plugin-jsdoc
  dependency-version: 60.7.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development
- dependency-name: rolldown
  dependency-version: 1.0.0-beta.41
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
...

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 Oct 1, 2025
@mcous mcous merged commit e6cc16d into main Oct 5, 2025
15 checks passed
@mcous mcous deleted the dependabot/npm_and_yarn/development-85b82b2f21 branch October 5, 2025 16:26
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.

1 participant