Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 15, 2025

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

Package From To
@map-colonies/commitlint-config 1.1.0 1.1.1
@map-colonies/infra-copilot-instructions 1.0.0 1.2.0
comment-json 4.2.3 4.5.0
eslint 9.22.0 9.39.2
rimraf 6.0.1 6.1.2
tsx 4.19.3 4.21.0
typedoc 0.27.6 0.28.15
typescript 5.7.3 5.9.3

Updates @map-colonies/commitlint-config from 1.1.0 to 1.1.1

Release notes

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

v1.1.1

1.1.1 (2025-02-03)

Dependency Updates

  • bump @​commitlint/config-conventional from 19.6.0 to 19.7.1 (#11) (94736a8)
Changelog

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

1.1.1 (2025-02-03)

Dependency Updates

  • bump @​commitlint/config-conventional from 19.6.0 to 19.7.1 (#11) (94736a8)
Commits
  • 52d55f9 chore(master): release 1.1.1 (#13)
  • 260b01b ci: update release-please-config.json
  • ef3c267 devdeps: bump the dev-patch group across 1 directory with 5 updates (#12)
  • 94736a8 deps: bump @​commitlint/config-conventional from 19.6.0 to 19.7.1 (#11)
  • aa65097 ci: modify dependabot configuration
  • See full diff in compare view

Updates @map-colonies/infra-copilot-instructions from 1.0.0 to 1.2.0

Release notes

Sourced from @​map-colonies/infra-copilot-instructions's releases.

v1.2.0

1.2.0 (2025-07-03)

Features

v1.1.0

1.1.0 (2025-03-11)

Features

  • change commitlint configuration working with map-colonies (#9) (53f95b7)
  • code: added instructions on how to spell (#4) (7139801)
  • commit: added devdeps (77ef181)
Changelog

Sourced from @​map-colonies/infra-copilot-instructions's changelog.

1.2.0 (2025-07-03)

Features

1.1.0 (2025-03-11)

Features

  • change commitlint configuration working with map-colonies (#9) (53f95b7)
  • code: added instructions on how to spell (#4) (7139801)
  • commit: added devdeps (77ef181)
Commits
  • 7ff84b8 chore(master): release 1.2.0 (#15)
  • db33359 feat: new code instructions
  • 8a2e7ac chore(master): release 1.1.0 (#5)
  • 1ceba08 style: added release-please manifest to prettierignore
  • 77ef181 feat(commit): added devdeps
  • 6cf92e6 devdeps: bump the dev-patch group with 3 updates (#10)
  • 53f95b7 feat: change commitlint configuration working with map-colonies (#9)
  • a56b725 docs: update commit message guidelines for prioritizing uncommented code
  • 7139801 feat(code): added instructions on how to spell (#4)
  • a33d8e5 ci: added infra label to dependabot
  • See full diff in compare view

Updates comment-json from 4.2.3 to 4.5.0

Release notes

Sourced from comment-json's releases.

4.5.0

  • MINOR: the new moveComments and removeComments to help you to manipulate comments
  • Improve typescript definitions
  • Fixes README.md

An upgrade is recommended for all dependents

4.4.1

const {parse, stringify} = require('comment-json')
const parsed = parse(
{"foo": 9007199254740993},
// The reviver function now has a 3rd param that contains the string source.
(key, value, {source}) =>
/^[0-9]+$/.test(source) ? BigInt(source) : value
)
console.log(parsed)
// {
//   "foo": 9007199254740993n
// }
stringify(parsed, (key, val) =>
typeof value === 'bigint'
// Pay attention that
//   JSON.rawJSON is supported in node >= 21
? JSON.rawJSON(String(val))
: value
)
// {"foo":9007199254740993}

An upgrade is recommended for all users.

Commits
  • 6ce3761 4.5.0: test/ts: adds more test cases for ts
  • b875787 removeComments: test cases, doc, jsdoc, etc
  • b08544c feat: removeComments
  • 111b308 minor 4.5.0: adds tests for moveComments
  • e2e3a94 README.md: adds doc for moveComments
  • 0b25580 doc: adds jsdocs for public methods
  • 85c002f ts: improve ts definitions
  • b78f84c feat: new public method, moveComments
  • 65996b7 REAME.md: adds the missing symbol property
  • 7e9dd53 4.4.1: fixes handling for JSON.rawJSON
  • Additional commits viewable in compare view

Updates eslint from 9.22.0 to 9.39.2

Release notes

Sourced from eslint's releases.

v9.39.2

Bug Fixes

  • 5705833 fix: warn when eslint-env configuration comments are found (#20381) (sethamus)

Build Related

  • 506f154 build: add .scss files entry to knip (#20391) (Milos Djermanovic)

Chores

v9.39.1

Bug Fixes

  • 650753e fix: Only pass node to JS lang visitor methods (#20283) (Nicholas C. Zakas)

Documentation

  • 51b51f4 docs: add a section on when to use extends vs cascading (#20268) (Tanuj Kanti)
  • b44d426 docs: Update README (GitHub Actions Bot)

Chores

  • 92db329 chore: update @eslint/js version to 9.39.1 (#20284) (Francesco Trotta)
  • c7ebefc chore: package.json update for @​eslint/js release (Jenkins)
  • 61778f6 chore: update eslint-config-eslint dependency @​eslint/js to ^9.39.0 (#20275) (renovate[bot])
  • d9ca2fc ci: Add rangeStrategy to eslint group in renovate config (#20266) (唯然)
  • 009e507 test: fix version tests for ESLint v10 (#20274) (Milos Djermanovic)

v9.39.0

Features

  • cc57d87 feat: update error loc to key in no-dupe-class-members (#20259) (Tanuj Kanti)
  • 126552f feat: update error location in for-direction and no-dupe-args (#20258) (Tanuj Kanti)
  • 167d097 feat: update complexity rule to highlight only static block header (#20245) (jaymarvelz)

Bug Fixes

  • 15f5c7c fix: forward traversal step.args to visitors (#20253) (jaymarvelz)
  • 5a1a534 fix: allow JSDoc comments in object-shorthand rule (#20167) (Nitin Kumar)
  • e86b813 fix: Use more types from @​eslint/core (#20257) (Nicholas C. Zakas)
  • 927272d fix: correct Scope typings (#20198) (jaymarvelz)
  • 37f76d9 fix: use AST.Program type for Program node (#20244) (Francesco Trotta)
  • ae07f0b fix: unify timing report for concurrent linting (#20188) (jaymarvelz)
  • b165d47 fix: correct Rule typings (#20199) (jaymarvelz)
  • fb97cda fix: improve error message for missing fix function in suggestions (#20218) (jaymarvelz)

Documentation

  • d3e81e3 docs: Always recommend to include a files property (#20158) (Percy Ma)
  • 0f0385f docs: use consistent naming recommendation (#20250) (Alex M. Spieslechner)
  • a3b1456 docs: Update README (GitHub Actions Bot)
  • cf5f2dd docs: fix correct tag of no-useless-constructor (#20255) (Tanuj Kanti)
  • 10b995c docs: add TS options and examples for nofunc in no-use-before-define (#20249) (Tanuj Kanti)
  • 2584187 docs: remove repetitive word in comment (#20242) (reddaisyy)

... (truncated)

Commits

Updates rimraf from 6.0.1 to 6.1.2

Changelog

Sourced from rimraf's changelog.

6.1

  • Move to native fs/promises usage instead of promisifying manually.

6.0

  • Drop support for nodes before v20
  • Add --version to CLI

5.0

  • No default export, only named exports

4.4

  • Provide Dirent or Stats object as second argument to filter

4.3

  • Return boolean indicating whether the path was fully removed
  • Add filter option
  • bin: add --verbose, -v to print files as they are deleted
  • bin: add --no-verbose, -V to not print files as they are deleted
  • bin: add -i --interactive to be prompted on each deletion
  • bin: add -I --no-interactive to not be prompted on each deletion
  • 4.3.1 Fixed inappropriately following symbolic links to directories

v4.2

  • Brought back glob support, using the new and improved glob v9

v4.1

  • Improved hybrid module with no need to look at the .default dangly bit. .default preserved as a reference to rimraf for compatibility with anyone who came to rely on it in v4.0.
  • Accept and ignore -rf and -fr arguments to the bin.

v4.0

  • Remove glob dependency entirely. This library now only accepts actual file and folder names to delete.
  • Accept array of paths or single path.
  • Windows performance and reliability improved.
  • All strategies separated into explicitly exported methods.
  • Drop support for Node.js below version 14
  • rewrite in TypeScript

... (truncated)

Commits

Updates tsx from 4.19.3 to 4.21.0

Release notes

Sourced from tsx's releases.

v4.21.0

4.21.0 (2025-11-30)

Features


This release is also available on:

v4.20.6

4.20.6 (2025-09-26)

Bug Fixes

  • properly hide relaySignal from process.listeners() (#741) (710a424)

This release is also available on:

v4.20.5

4.20.5 (2025-08-24)

Bug Fixes

  • handle ambiguous packages (796053a)

This release is also available on:

v4.20.4

4.20.4 (2025-08-12)

Bug Fixes

... (truncated)

Commits
  • f6284cd ci: lock in semantic-release v24
  • 048fb62 feat: upgrade esbuild (#748)
  • 710a424 fix: properly hide relaySignal from process.listeners() (#741)
  • 20b91c4 docs: make sponsors dynamic
  • 08dcd59 chore: move vercel settings to root
  • e6d1a47 docs: obfuscate aside classname
  • de2719d style: remove unused variable
  • 13f2954 chore: upgrade docs deps
  • 0504525 chore: upgrade manten
  • 132fdd8 test: assert require.cache
  • Additional commits viewable in compare view

Updates typedoc from 0.27.6 to 0.28.15

Release notes

Sourced from typedoc's releases.

v0.28.15

Features

  • The gitRevision option now accepts the special value {branch}, which indicates source links should use the current git branch for links, #3041.
  • Introduced validation.invalidPath for suppressing warnings caused by referencing relative paths which do not exist when building the documentation, #3033.
  • API: Introduced Logger.validationWarning for validation which occurs during conversion rather than during TypeDoc's normal validation step, #3033.

v0.28.14

Features

  • Introduced the preservedTypeAnnotationTags option to specify tags whose type annotations should be copied to the output documentation, #3020. API: Introduced typeAnnotation on CommentTag
  • Added excludePrivateClassFields option to hide #private members while allowing private members, #3017.
  • Added support for TypeScript's @this tag for JS files which describe this parameters, #3026.

Bug Fixes

  • Fixed conversion of auto-accessor types on properties with the accessor keyword, #3019.
  • Improved handling of HTML tags within headers for anchor generation, #3023.
  • Improved support for detecting destructured parameters and renaming them to the name used in the doc comment, #3026.

v0.28.13

Features

  • The basePath option now also affects relative link resolution, TypeDoc will also check for paths relative to the provided base path. If you instead want TypeDoc to only change the rendered base path for sources, use the displayBasePath option, #3009.

Bug Fixes

  • Fixed bug introduced in 0.28.8 where TypeDoc could not render docs with some mixin classes, #3007.
  • @inheritDoc will now correctly overwrite @remarks and @returns blocks on the target comment, #3012.
  • The externalSymbolLinkMappings option now works properly on links pointing to inherited/overwritten signatures, #3014.

v0.28.12

Bug Fixes

  • Variables marked with @enum now work for symbols imported from another module, #3003.
  • Improved magic introduced with #2999 to work with imported symbols, #3003.
  • Fixed relative link resolution to file names containing percent encoded URLs, #3006.
  • Linking to the project's README file with a relative link will now behave as expected, #3006.
  • Reduced unnecessary HTML element rendering in default theme.

... (truncated)

Changelog

Sourced from typedoc's changelog.

v0.28.15 (2025-11-29)

Features

  • The gitRevision option now accepts the special value {branch}, which indicates source links should use the current git branch for links, #3041.
  • Introduced validation.invalidPath for suppressing warnings caused by referencing relative paths which do not exist when building the documentation, #3033.
  • API: Introduced Logger.validationWarning for validation which occurs during conversion rather than during TypeDoc's normal validation step, #3033.

v0.28.14 (2025-10-11)

Features

  • Introduced the preservedTypeAnnotationTags option to specify tags whose type annotations should be copied to the output documentation, #3020. API: Introduced typeAnnotation on CommentTag
  • Added excludePrivateClassFields option to hide #private members while allowing private members, #3017.
  • Added support for TypeScript's @this tag for JS files which describe this parameters, #3026.
  • API: Re-introduced relevanceBoost on DeclarationReflection for plugin use, #3036.

Bug Fixes

  • Fixed conversion of auto-accessor types on properties with the accessor keyword, #3019.
  • Improved handling of HTML tags within headers for anchor generation, #3023.
  • Improved support for detecting destructured parameters and renaming them to the name used in the doc comment, #3026.
  • Constructor type parameters will now inherit their class's type parameter descriptions if not otherwise specified, #3031.
  • Fixed compatibility with @microsoft/tsdoc-config version 0.18.0, #3035.
  • Custom theme icons will now be used in the "On This Page" sidebar, #3039.

Thanks!

v0.28.13 (2025-09-14)

Features

  • The basePath option now also affects relative link resolution, TypeDoc will also check for paths relative to the provided base path. If you instead want TypeDoc to only change the rendered base path for sources, use the displayBasePath option, #3009.

Bug Fixes

  • Fixed bug introduced in 0.28.8 where TypeDoc could not render docs with some mixin classes, #3007.
  • @inheritDoc will now correctly overwrite @remarks and @returns blocks on the target comment, #3012.
  • The externalSymbolLinkMappings option now works properly on links pointing to inherited/overwritten signatures, #3014.

... (truncated)

Commits

Updates typescript from 5.7.3 to 5.9.3

Release notes

Sourced from typescript's releases.

TypeScript 5.9.3

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 RC

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 Beta

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8.3

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

... (truncated)

Commits
  • c63de15 Bump version to 5.9.3 and LKG
  • 8428ca4 🤖 Pick PR #62438 (Fix incorrectly ignored dts file fr...) into release-5.9 (#...
  • a131cac 🤖 Pick PR #62351 (Add missing Float16Array constructo...) into release-5.9 (#...
  • 0424333 🤖 Pick PR #62423 (Revert PR 61928) into release-5.9 (#62425)
  • bdb641a 🤖 Pick PR #62311 (Fix parenthesizer rules for manuall...) into release-5.9 (#...
  • 0d9b9b9 🤖 Pick PR #61978 (Restructure CI to prepare for requi...) into release-5.9 (#...
  • 2dce0c5 Intentionally regress one buggy declaration output to an older version (#62163)
  • 5be3346 Bump version to 5.9.2 and LKG
  • ad825f2 Bump version to 5.9.1-rc and LKG
  • 463a5bf Update LKG
  • 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 dev-patch group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@map-colonies/commitlint-config](https://github.com/MapColonies/commitlint-config) | `1.1.0` | `1.1.1` |
| [@map-colonies/infra-copilot-instructions](https://github.com/MapColonies/infra-copilot-instructions) | `1.0.0` | `1.2.0` |
| [comment-json](https://github.com/kaelzhang/node-comment-json) | `4.2.3` | `4.5.0` |
| [eslint](https://github.com/eslint/eslint) | `9.22.0` | `9.39.2` |
| [rimraf](https://github.com/isaacs/rimraf) | `6.0.1` | `6.1.2` |
| [tsx](https://github.com/privatenumber/tsx) | `4.19.3` | `4.21.0` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.27.6` | `0.28.15` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.9.3` |



Updates `@map-colonies/commitlint-config` from 1.1.0 to 1.1.1
- [Release notes](https://github.com/MapColonies/commitlint-config/releases)
- [Changelog](https://github.com/MapColonies/commitlint-config/blob/master/CHANGELOG.md)
- [Commits](MapColonies/commitlint-config@v1.1.0...v1.1.1)

Updates `@map-colonies/infra-copilot-instructions` from 1.0.0 to 1.2.0
- [Release notes](https://github.com/MapColonies/infra-copilot-instructions/releases)
- [Changelog](https://github.com/MapColonies/infra-copilot-instructions/blob/master/CHANGELOG.md)
- [Commits](MapColonies/infra-copilot-instructions@v1.0.0...v1.2.0)

Updates `comment-json` from 4.2.3 to 4.5.0
- [Release notes](https://github.com/kaelzhang/node-comment-json/releases)
- [Commits](kaelzhang/node-comment-json@4.2.3...4.5.0)

Updates `eslint` from 9.22.0 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.22.0...v9.39.2)

Updates `rimraf` from 6.0.1 to 6.1.2
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v6.0.1...v6.1.2)

Updates `tsx` from 4.19.3 to 4.21.0
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.19.3...v4.21.0)

Updates `typedoc` from 0.27.6 to 0.28.15
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.27.6...v0.28.15)

Updates `typescript` from 5.7.3 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.7.3...v5.9.3)

---
updated-dependencies:
- dependency-name: "@map-colonies/commitlint-config"
  dependency-version: 1.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-patch
- dependency-name: "@map-colonies/infra-copilot-instructions"
  dependency-version: 1.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: comment-json
  dependency-version: 4.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: rimraf
  dependency-version: 6.1.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: tsx
  dependency-version: 4.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: typedoc
  dependency-version: 0.28.15
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the infra label Dec 15, 2025
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