Skip to content

devdeps: bump the dev-patch group across 1 directory with 6 updates - #149

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/dev-patch-4e42365f60
Open

devdeps: bump the dev-patch group across 1 directory with 6 updates#149
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/dev-patch-4e42365f60

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the dev-patch group with 6 updates in the / directory:

Package From To
@map-colonies/commitlint-config 2.0.0 2.0.1
prettier 3.8.3 3.9.5
typedoc 0.28.19 0.28.20
vitest 4.1.7 4.1.10
@vitest/ui 4.1.7 4.1.10
@vitest/coverage-v8 4.1.7 4.1.10

Updates @map-colonies/commitlint-config from 2.0.0 to 2.0.1

Release notes

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

commitlint-config: v2.0.1

2.0.1 (2026-07-08)

🔗 Dependencies

  • commitlint-config: update dependency @​commitlint/config-conventional to v21 (#191) (d18d7b6)
Commits
  • 944103d chore(global): release commitlint-config 2.0.1 (#158)
  • d4528ab ci(global): update actions/upload-pages-artifact action to v5 (#178)
  • 19d010a devdeps(drizzle-utils): pin dependencies (#182)
  • 30ecb93 devdeps(error-express-handler): update dependency express to v4.22.2 (#197)
  • d113169 deps(openapi-generators): update openapi-generators dependencies (#222)
  • 0180d19 devdeps(openapi-supertest): update dependency body-parser to v2.3.0 (#226)
  • d7afb78 devdeps(commitlint-config): update dependency @​commitlint/types to v21 (#192)
  • 4cbc363 deps(prometheus): update dependency lodash to v4.18.1 [security] (#176)
  • 311b0f6 ci(global): update dawidd6/action-download-artifact action to v21 (#188)
  • 826ade8 ci(global): update actions/deploy-pages action to v5 (#172)
  • Additional commits viewable in compare view

Updates prettier from 3.8.3 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

3.8.4

🔗 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

Updates typedoc from 0.28.19 to 0.28.20

Release notes

Sourced from typedoc's releases.

v0.28.20

Features

  • Group/category section headings (<h2>) in the default theme now include an id attribute so they can be linked to via fragment identifiers (e.g. modules.html#classes), #3029.
  • Added a @reexport modifier tag to have TypeDoc convert variable/type references as a re-export instead of a new symbol, #3096.
  • API: Introduced generateOutputsBegin and generateOutputsEnd events on Application for plugin use.

Bug Fixes

  • When --emit none is used, TypeDoc will now report warnings about missing relative paths previously reported when rendering, #3078.
  • Improved performance via asynchronously performing git and file write operations, more performant JSX rendering, and source code bundling, #3103.
  • A @hidden tag on a constructor parameter-property will now only hide the property, not both the property and the parameter, #3111.
  • Custom @group and @category titles with the same sort weight are now ordered consistently with the alphabetical reflection sort, #3120.

Thanks!

Changelog

Sourced from typedoc's changelog.

v0.28.20 (2026-07-05)

Features

  • Group/category section headings (<h2>) in the default theme now include an id attribute so they can be linked to via fragment identifiers (e.g. modules.html#classes), #3029.
  • Added a @reexport modifier tag to have TypeDoc convert variable/type references as a re-export instead of a new symbol, #3096.
  • API: Introduced generateOutputsBegin and generateOutputsEnd events on Application for plugin use.

Bug Fixes

  • When --emit none is used, TypeDoc will now report warnings about missing relative paths previously reported when rendering, #3078.
  • Improved performance via asynchronously performing git and file write operations, more performant JSX rendering, and source code bundling, #3103.
  • A @hidden tag on a constructor parameter-property will now only hide the property, not both the property and the parameter, #3111.
  • Custom @group and @category titles with the same sort weight are now ordered consistently with the alphabetical reflection sort, #3120.

Thanks!

Commits
  • 34d843b Update changelog for release
  • fbd4a25 Bump version to 0.28.20
  • 93ba157 Update dependencies in example
  • e8c5df8 Remove unnecessary files from distribution
  • 392b0dd Update dependencies
  • 8510dd4 Add missing entries in changelog before release
  • 51dc052 Update change log for 0.28.20 release
  • 72f20cd Merge branch 'fix-locale-sort-group-category-titles' into dev
  • 623f2c0 Fix failing test, accept slightly slower build for now
  • c8bdf14 Minor config tweak to improve dev build time
  • Additional commits viewable in compare view

Updates vitest from 4.1.7 to 4.1.10

Release notes

Sourced from vitest's releases.

v4.1.10

   🐞 Bug Fixes

    View changes on GitHub

v4.1.9

🐞 Bug Fixes

View changes on GitHub

v4.1.8

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • db616d2 chore: release v4.1.10 (#10718)
  • bae52b5 fix(vm): fix external module resolve error with deps optimizer query for enco...
  • a7a61e7 chore: release v4.1.9 (#10598)
  • 934b0f5 fix(pool): prevent test run hang on worker crash (#10543) [backport to v4] (#...
  • 7fb2965 fix(browser): wait for orchestrator readiness before resolving browser sessio...
  • a518019 fix: fix importOriginal with optimizer and query import [backport to v4] (#...
  • e61f2dd chore: release v4.1.8
  • e4067b3 fix(browser): disable client cdp API when allowWrite/allowExec: false [ba...
  • See full diff in compare view

Updates @vitest/ui from 4.1.7 to 4.1.10

Release notes

Sourced from @​vitest/ui's releases.

v4.1.10

   🐞 Bug Fixes

    View changes on GitHub

v4.1.9

🐞 Bug Fixes

View changes on GitHub

v4.1.8

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @vitest/coverage-v8 from 4.1.7 to 4.1.10

Release notes

Sourced from @​vitest/coverage-v8's releases.

v4.1.10

   🐞 Bug Fixes

    View changes on GitHub

v4.1.9

🐞 Bug Fixes

View changes on GitHub

v4.1.8

   🐞 Bug Fixes

    View changes on GitHub
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 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 dev-patch group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@map-colonies/commitlint-config](https://github.com/MapColonies/infra-packages) | `2.0.0` | `2.0.1` |
| [prettier](https://github.com/prettier/prettier) | `3.8.3` | `3.9.5` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.28.19` | `0.28.20` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.7` | `4.1.10` |
| [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `4.1.7` | `4.1.10` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.7` | `4.1.10` |



Updates `@map-colonies/commitlint-config` from 2.0.0 to 2.0.1
- [Release notes](https://github.com/MapColonies/infra-packages/releases)
- [Commits](MapColonies/infra-packages@read-pkg-v2.0.0...commitlint-config-v2.0.1)

Updates `prettier` from 3.8.3 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.3...3.9.5)

Updates `typedoc` from 0.28.19 to 0.28.20
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.28.19...v0.28.20)

Updates `vitest` from 4.1.7 to 4.1.10
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.10/packages/vitest)

Updates `@vitest/ui` from 4.1.7 to 4.1.10
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.10/packages/ui)

Updates `@vitest/coverage-v8` from 4.1.7 to 4.1.10
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.10/packages/coverage-v8)

---
updated-dependencies:
- dependency-name: "@map-colonies/commitlint-config"
  dependency-version: 2.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-patch
- dependency-name: prettier
  dependency-version: 3.9.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: typedoc
  dependency-version: 0.28.20
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-patch
- dependency-name: vitest
  dependency-version: 4.1.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-patch
- dependency-name: "@vitest/ui"
  dependency-version: 4.1.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-patch
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the infra label Jul 13, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants