Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2026

Bumps the development group with 6 updates:

Package From To
@actions/core 2.0.1 3.0.0
@types/node 25.0.3 25.1.0
eslint-plugin-jsdoc 61.5.0 62.5.0
globals 17.0.0 17.3.0
prettier 3.7.4 3.8.1
rolldown 1.0.0-beta.58 1.0.0-rc.2

Updates @actions/core from 2.0.1 to 3.0.0

Changelog

Sourced from @​actions/core's changelog.

3.0.0

  • Breaking change: Package is now ESM-only
    • CommonJS consumers must use dynamic import() instead of require()

2.0.3

  • Bump @actions/http-client to 3.0.2
Commits

Updates @types/node from 25.0.3 to 25.1.0

Commits

Updates eslint-plugin-jsdoc from 61.5.0 to 62.5.0

Release notes

Sourced from eslint-plugin-jsdoc's releases.

v62.5.0

62.5.0 (2026-01-29)

Features

  • check-tag-names: add Typedoc include, includeCode, and TSDoc inheritDoc/inheritdoc and label to allowable inline tags; add TSDoc and typedoc tags (925f6e3)
  • require-description-complete-sentence: allow inline inheritDoc, inheritdoc, include, includeCode, label to avoid rule; fixes #1641 (c5a09c8)
  • valid-types: add Typedoc include, includeCode, and TSDoc inheritDoc/inheritdoc and label to allowable inline tags (c078633)

v62.4.1

62.4.1 (2026-01-24)

Bug Fixes

v62.4.0

62.4.0 (2026-01-23)

Features

  • type-formatting: support trailingPunctuationMultilineOnly boolean option; fixes #1636 (#1638) (3907822)

v62.3.1

62.3.1 (2026-01-22)

Bug Fixes

v62.3.0

62.3.0 (2026-01-20)

Features

  • type-formatting: add objectTypeBracketSpacing option; fixes #1615 (#1632) (78b6980)

v62.2.0

62.2.0 (2026-01-19)

Features

  • no-undefined-types: support strict validation for TS namespaces (#1616) (ed260c5)

... (truncated)

Commits
  • 925f6e3 feat(check-tag-names): add Typedoc include, includeCode, and TSDoc `inh...
  • c078633 feat(valid-types): add Typedoc include, includeCode, and TSDoc `inherit...
  • c5a09c8 feat(require-description-complete-sentence): allow inline inheritDoc, `in...
  • ba0034e fix: update jsdoccomment, devDeps. (#1639)
  • 3907822 feat(type-formatting): support trailingPunctuationMultilineOnly boolean o...
  • f443986 fix: update comment-parser, devDeps (#1637)
  • 78b6980 feat(type-formatting): add objectTypeBracketSpacing option; fixes #1615 (...
  • ed260c5 feat(no-undefined-types): support strict validation for TS namespaces (#1616)
  • 0170773 feat: update comment-parser; fixes #1116 ; fixes #1348
  • e63dc23 fix(require-template): treat infer statement types as defined; fixes #1628
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for eslint-plugin-jsdoc since your current version.


Updates globals from 17.0.0 to 17.3.0

Release notes

Sourced from globals's releases.

v17.3.0

  • Update globals (2026-02-01) (#336) 295fba9

sindresorhus/globals@v17.2.0...v17.3.0

v17.2.0

  • jasmine: Add throwUnless and throwUnlessAsync globals (#335) 97f23a7

sindresorhus/globals@v17.1.0...v17.2.0

v17.1.0

  • Add webpack and rspack globals (#333) 65cae73

sindresorhus/globals@v17.0.0...v17.1.0

Commits

Updates prettier from 3.7.4 to 3.8.1

Release notes

Sourced from prettier's releases.

3.8.1

🔗 Changelog

3.8.0

  • Support Angular v21.1

diff

🔗 Release note "Prettier 3.8: Support for Angular v21.1"

Changelog

Sourced from prettier's changelog.

3.8.1

diff

Include available printers in plugin type declarations (#18706 by @​porada)

// Input
import * as prettierPluginEstree from "prettier/plugins/estree";
// Prettier 3.8.0
// Property 'printers' does not exist on type 'typeof import("prettier/plugins/estree")'. ts(2339)
prettierPluginEstree.printers.estree; //=> any
// Prettier 3.8.1
prettierPluginEstree.printers.estree; //=> Printer
prettierPluginEstree.printers["estree-json"]; //=> Printer

3.8.0

diff

🔗 Release Notes

Commits

Updates rolldown from 1.0.0-beta.58 to 1.0.0-rc.2

Release notes

Sourced from rolldown's releases.

v1.0.0-rc.2

[1.0.0-rc.2] - 2026-01-28

⚡ Lazy Barrel Optimization

  • Skips compilation of unused re-export modules in side-effect-free barrel modules
  • Particularly beneficial for projects importing from large component libraries

For large component libraries like Ant Design, when you import just one component:

import { Button } from 'antd';
Button;
Metric Without lazy barrel With lazy barrel
Modules compiled 2986 250
Build time (macOS) ~65ms ~28ms
Build time (Windows) ~210ms ~50ms

By enabling lazy barrel, Rolldown reduces the number of compiled modules by 90% and speeds up the build by 2-4x.

Enable it in your config:

export default {
  experimental: {
    lazyBarrel: true,
  },
};

For more details, see the https://rolldown.rs/in-depth/lazy-barrel-optimization

💥 BREAKING CHANGES

  • expose \0rolldown/runtime in transform hook (#8068) by @​hyf0
  • rename rolldown:runtime to \0rolldown/runtime.js (#8067) by @​hyf0

🚀 Features

🐛 Bug Fixes

... (truncated)

Commits
  • 10290d2 release: v1.0.0-rc.2 (#8106)
  • c5a4b7f fix: update the links to Rolldown docs in the error messages (#8103)
  • dd1b8aa refactor(rolldown_plugin_vite_dynamic_import_vars): remove v1 implementation ...
  • 1d5fcb8 refactor(rolldown_plugin_vite_import_glob): remove v1 implementation (#8095)
  • 3e9b89a test(lazy-barrel): use package.json sideEffects instead of plugin hook (#8077)
  • 5ecc11b test(lazy-barrel): enable tests and add treeshake-behavior cases (#8071)
  • f45db8e refactor(lazy-barrel): restructure lazy barrel implementation (#8070)
  • f3a03ed refactor!: rename rolldown:runtime to \0rolldown/runtime.js (#8067)
  • f3393e8 refactor: remove use_built_ins and use_spread from internal JSX options (...
  • b346095 chore(deps): update oxc to v0.111.0 (#8063)
  • 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 development group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) | `2.0.1` | `3.0.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.0.3` | `25.1.0` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `61.5.0` | `62.5.0` |
| [globals](https://github.com/sindresorhus/globals) | `17.0.0` | `17.3.0` |
| [prettier](https://github.com/prettier/prettier) | `3.7.4` | `3.8.1` |
| [rolldown](https://github.com/rolldown/rolldown/tree/HEAD/packages/rolldown) | `1.0.0-beta.58` | `1.0.0-rc.2` |


Updates `@actions/core` from 2.0.1 to 3.0.0
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core)

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

Updates `eslint-plugin-jsdoc` from 61.5.0 to 62.5.0
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Commits](gajus/eslint-plugin-jsdoc@v61.5.0...v62.5.0)

Updates `globals` from 17.0.0 to 17.3.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.0.0...v17.3.0)

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

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

---
updated-dependencies:
- dependency-name: "@actions/core"
  dependency-version: 3.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development
- dependency-name: "@types/node"
  dependency-version: 25.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: eslint-plugin-jsdoc
  dependency-version: 62.5.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development
- dependency-name: globals
  dependency-version: 17.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: prettier
  dependency-version: 3.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: rolldown
  dependency-version: 1.0.0-rc.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 1, 2026
@mcous mcous merged commit 22291ed into main Feb 1, 2026
15 checks passed
@mcous mcous deleted the dependabot/npm_and_yarn/development-7fe8b88335 branch February 1, 2026 17:24
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