Skip to content

build(deps-dev): bump the npm-dependencies group across 1 directory with 5 updates#466

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-9162d3be86
Open

build(deps-dev): bump the npm-dependencies group across 1 directory with 5 updates#466
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-9162d3be86

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 2, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-dependencies group with 5 updates in the / directory:

Package From To
@commitlint/config-conventional 21.0.2 21.2.0
@openapitools/openapi-generator-cli 2.39.0 2.39.1
@semantic-release/github 12.0.8 12.0.9
commitlint 21.0.2 21.2.1
prettier 3.8.4 3.9.5

Updates @commitlint/config-conventional from 21.0.2 to 21.2.0

Release notes

Sourced from @​commitlint/config-conventional's releases.

v21.2.0

21.2.0 (2026-06-30)

Features

Chore

Full Changelog: conventional-changelog/commitlint@v21.1.0...v21.2.0

v21.1.0

21.1.0 (2026-06-23)

Bug Fixes

Features

Docs, chore, etc.

New Contributors

Full Changelog: conventional-changelog/commitlint@v21.0.2...v21.1.0

Changelog

Sourced from @​commitlint/config-conventional's changelog.

21.2.0 (2026-06-30)

Features

  • resolve-extends: resolve pure-ESM presets (conventional-changelog v7/v9/v10) (#4859) (fdb566f)

21.1.0 (2026-06-23)

Note: Version bump only for package @​commitlint/config-conventional

Commits

Updates @openapitools/openapi-generator-cli from 2.39.0 to 2.39.1

Release notes

Sourced from @​openapitools/openapi-generator-cli's releases.

v2.39.1

2.39.1 (2026-06-30)

Bug Fixes

  • deps: update dependency fs-extra to v11.3.6 (#1244) (2d72882)
Commits
  • 2d72882 fix(deps): update dependency fs-extra to v11.3.6 (#1244)
  • 5c6f6b1 chore(deps): update dependency prettier to v3.9.3 (#1243)
  • 8e755bf chore(deps): update dependency prettier to v3.9.1 (#1242)
  • c149218 chore(deps): update dependency prettier to v3.9.0 (#1241)
  • 99016bb chore(deps): update dependency prettier to v3.8.5 (#1240)
  • 4f3a4e5 chore(deps): update commitlint monorepo to v21.1.0 (#1239)
  • cafca82 chore(deps): update dependency axios to v1.18.1 (#1238)
  • See full diff in compare view

Updates @semantic-release/github from 12.0.8 to 12.0.9

Release notes

Sourced from @​semantic-release/github's releases.

v12.0.9

12.0.9 (2026-07-01)

Bug Fixes

  • asset-upload: stop setting content-length header manually (241f966), closes #1224
  • local-undici: always use the locally installed undici instead of the node built-in version (40973e3), closes #1224
  • publish: handle content-length header properly for asset uploads (#1260) (28e3741), closes #1224 #1224
Commits
  • 28e3741 fix(publish): handle content-length header properly for asset uploads (#1260)
  • 241f966 fix(asset-upload): stop setting content-length header manually
  • 40973e3 fix(local-undici): always use the locally installed undici instead of the nod...
  • 8879ae4 chore(deps): update dependency prettier to v3.9.1 (#1259)
  • bf720e2 chore(deps): update dependency prettier to v3.9.0 (#1258)
  • b34e0ec chore(deps): update dependency prettier to v3.8.5 (#1257)
  • b445fa0 chore(deps): update dependency ls-engines to v0.10.1 (#1256)
  • 4ca0ef4 chore(deps): lock file maintenance (#1255)
  • bb9fdb3 chore(deps): update dependency undici to v7.28.0 [security] (#1254)
  • 059c6ce ci(action): update actions/checkout action to v7 (#1252)
  • Additional commits viewable in compare view

Updates commitlint from 21.0.2 to 21.2.1

Release notes

Sourced from commitlint's releases.

v21.2.1

21.2.0 (2026-06-30)

Features

  • resolve-extends: resolve pure-ESM presets (conventional-changelog v7/v9/v10) (#4859) (fdb566f)

Chore, doc, etc.

New Contributors

Full Changelog: conventional-changelog/commitlint@v21.2.0...v21.2.1

v21.2.0

21.2.0 (2026-06-30)

Features

Chore

Full Changelog: conventional-changelog/commitlint@v21.1.0...v21.2.0

v21.1.0

21.1.0 (2026-06-23)

Bug Fixes

... (truncated)

Changelog

Sourced from commitlint's changelog.

21.2.1 (2026-07-08)

Note: Version bump only for package commitlint

21.2.0 (2026-06-30)

Note: Version bump only for package commitlint

21.1.0 (2026-06-23)

Note: Version bump only for package commitlint

Commits

Updates prettier from 3.8.4 to 3.9.5

Release notes

Sourced from prettier's releases.

3.9.5

🔗 Changelog

3.9.4

  • Angular: Format @content(name) -> @content (name) to align with other block syntax (#19499 by @​fisker)

🔗 Changelog

3.9.3

🔗 Changelog

3.9.1

🔗 Changelog

3.9.0

diff

🔗 Prettier 3.9: Major parser upgrades and Formatting improvements

3.8.5

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.5

diff

Markdown: Cap ordered list mark at 999,999,999 (#19351 by @​tats-u)

CommonMark parsers only support ordered list item numbers up to 999,999,999.

With this change, Prettier now caps the ordered list item number at 999,999,999 to ensure that the output is correctly parsed as an ordered list by CommonMark parsers. Numbers larger than 999,999,999 are not parsed as list item numbers and are left unchanged in the output:

<!-- Input -->
999999998. text
999999998. text
999999998. text
999999998. text
1234567890123456789012) text
<!-- Prettier 3.9.4 -->
999999998. text
999999999. text
1000000000. text
1000000001. text
1234567890123456789012) text
<!-- Prettier 3.9.5 -->
999999998. text
999999999. text
999999999. text
999999999. text
1234567890123456789012) text

Markdown: Avoid corrupting empty link with title (#19487 by @​andersk)

Do not remove <> from an inline link or image with an empty URL and a title, as this removal would change its interpretation.

<!-- Input -->
[link](https://github.com/prettier/prettier/blob/main/<> "title")
<!-- Prettier 3.9.4 -->
[link](https://github.com/prettier/prettier/blob/main/ "title")
<!-- Prettier 3.9.5 -->
</tr></table>

... (truncated)

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 2, 2026
…ith 5 updates

Bumps the npm-dependencies group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `21.0.2` | `21.2.0` |
| [@openapitools/openapi-generator-cli](https://github.com/OpenAPITools/openapi-generator-cli) | `2.39.0` | `2.39.1` |
| [@semantic-release/github](https://github.com/semantic-release/github) | `12.0.8` | `12.0.9` |
| [commitlint](https://github.com/conventional-changelog/commitlint/tree/HEAD/@alias/commitlint) | `21.0.2` | `21.2.1` |
| [prettier](https://github.com/prettier/prettier) | `3.8.4` | `3.9.5` |



Updates `@commitlint/config-conventional` from 21.0.2 to 21.2.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v21.2.0/@commitlint/config-conventional)

Updates `@openapitools/openapi-generator-cli` from 2.39.0 to 2.39.1
- [Release notes](https://github.com/OpenAPITools/openapi-generator-cli/releases)
- [Commits](OpenAPITools/openapi-generator-cli@v2.39.0...v2.39.1)

Updates `@semantic-release/github` from 12.0.8 to 12.0.9
- [Release notes](https://github.com/semantic-release/github/releases)
- [Commits](semantic-release/github@v12.0.8...v12.0.9)

Updates `commitlint` from 21.0.2 to 21.2.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@alias/commitlint/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v21.2.1/@alias/commitlint)

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

---
updated-dependencies:
- dependency-name: "@commitlint/config-conventional"
  dependency-version: 21.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@openapitools/openapi-generator-cli"
  dependency-version: 2.39.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@semantic-release/github"
  dependency-version: 12.0.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: commitlint
  dependency-version: 21.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: prettier
  dependency-version: 3.9.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/npm-dependencies-9162d3be86 branch from 74d9da1 to 638f00b Compare July 15, 2026 13:04
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