Skip to content

devdeps: bump the dev-patch group across 1 directory with 8 updates#42

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/dev-patch-1c5532533b
Closed

devdeps: bump the dev-patch group across 1 directory with 8 updates#42
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/dev-patch-1c5532533b

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 10, 2025

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

Package From To
@commitlint/cli 19.7.1 19.8.0
commitlint 19.7.1 19.8.0
prettier 3.5.0 3.5.3
pretty-quick 4.0.0 4.1.1
typescript 5.7.3 5.8.2
@map-colonies/tsconfig 1.0.0 1.0.1
typedoc 0.27.7 0.27.9
@swc/core 1.10.15 1.11.8

Updates @commitlint/cli from 19.7.1 to 19.8.0

Release notes

Sourced from @​commitlint/cli's releases.

v19.8.0

19.8.0 (2025-03-07)

Bug Fixes

Features

Chore, docs, etc.

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.7.1...v19.8.0

Changelog

Sourced from @​commitlint/cli's changelog.

19.8.0 (2025-03-07)

Performance Improvements

  • use node: prefix to bypass require.cache call for builtins (#4302) (0cd8f41)
Commits

Updates commitlint from 19.7.1 to 19.8.0

Release notes

Sourced from commitlint's releases.

v19.8.0

19.8.0 (2025-03-07)

Bug Fixes

Features

Chore, docs, etc.

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.7.1...v19.8.0

Changelog

Sourced from commitlint's changelog.

19.8.0 (2025-03-07)

Performance Improvements

  • use node: prefix to bypass require.cache call for builtins (#4302) (0cd8f41)
Commits

Updates prettier from 3.5.0 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

3.5.2

🔗 Changelog

3.5.1

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

3.5.2

diff

Remove module-sync condition (#17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

3.5.1

diff

Fix CLI crash when cache for old version exists (#17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

Commits

Updates pretty-quick from 4.0.0 to 4.1.1

Release notes

Sourced from pretty-quick's releases.

v4.1.1

Patch Changes

New Contributors

Full Changelog: prettier/pretty-quick@v4.1.0...v4.1.1

v4.1.0

Minor Changes

New Contributors

Full Changelog: prettier/pretty-quick@v4.0.0...v4.1.0

Changelog

Sourced from pretty-quick's changelog.

4.1.1

Patch Changes

4.1.0

Minor Changes

Commits

Updates typescript from 5.7.3 to 5.8.2

Release notes

Sourced from typescript's releases.

TypeScript 5.8

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 RC

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • beb69e4 Bump version to 5.8.2 and LKG
  • 8fdbd54 🤖 Pick PR #61210 (Fix mistakenly disallowed default e...) into release-5.8 (#...
  • f4a3a8a 🤖 Pick PR #61175 (Ban import=require and export= unde...) into release-5.8 (#...
  • 420ff06 Bump version to 5.8.1-rc and LKG
  • 48eb13f Update LKG
  • fb59c19 Merge remote-tracking branch 'origin/main' into release-5.8
  • df342b7 Fixed rewriteRelativeImportExtensions for import() within call expression...
  • 775412a Bump github/codeql-action from 3.28.8 to 3.28.9 in the github-actions group (...
  • e1629e5 Pass ignoreErrors=true to more resolveEntityName callers (#61144)
  • 6fd1799 Update LKG
  • Additional commits viewable in compare view

Updates @map-colonies/tsconfig from 1.0.0 to 1.0.1

Release notes

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

v1.0.1

1.0.1 (2025-02-19)

Dependency Updates

  • add peer dependency for typescript version >= 5.5.2 (#6) (5e27c1a)

Build System

Changelog

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

1.0.1 (2025-02-19)

Dependency Updates

  • add peer dependency for typescript version >= 5.5.2 (#6) (5e27c1a)

Build System

Commits
  • 21935fb chore(master): release 1.0.1 (#5)
  • 5e27c1a deps: add peer dependency for typescript version >= 5.5.2 (#6)
  • e272880 ci: update release-please-config.json
  • 1dc7b55 ci: update commitlint-config to version 1.1.0 and modify dependabot configura...
  • 4fb2846 docs: update README.md for clarity and add resources (#3)
  • f2fe592 ci: added infra label to dependabot
  • cb7eda4 ci: added mapcolonies commit config and updated release please and dependabot
  • 271d0ff ci: added husky, prettier and commitlint (#2)
  • 1e1bcc7 docs: update README.md
  • 453f16f Merge branch 'master' of github.com:MapColonies/tsconfig
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by mapcolonies.devops, a new releaser for @​map-colonies/tsconfig since your current version.


Updates typedoc from 0.27.7 to 0.27.9

Release notes

Sourced from typedoc's releases.

v0.27.9

This will be the last v0.27.x release, see #2868 for discussion on the 0.28 beta.

Features

  • Added support for TypeScript 5.8

v0.27.8

Features

  • The visibilityFilter option now supports individual signatures, #2846.
  • The favicon option may now be given a link starting with https?:// instead of a path, #2851.
  • TypeDoc now supports specifying # as the link in externalSymbolLinkMappings to indicate the type should not be linked to, #2853.

Bug Fixes

  • Fixed an issue where unrecognized languages would incorrectly be listed in the list of languages with translations, #2852.
  • Unresolved external type references will no longer incorrectly linked to undefined, #2854.

Thanks!

Changelog

Sourced from typedoc's changelog.

v0.27.9 (2025-02-25)

This will be the last v0.27.x release, see #2868 for discussion on the 0.28 beta.

Features

  • Added support for TypeScript 5.8

v0.27.8 (2025-02-21)

Features

  • The visibilityFilter option now supports individual signatures, #2846.
  • The favicon option may now be given a link starting with https?:// instead of a path, #2851.
  • TypeDoc now supports specifying # as the link in externalSymbolLinkMappings to indicate the type should not be linked to, #2853.

Bug Fixes

  • Fixed an issue where unrecognized languages would incorrectly be listed in the list of languages with translations, #2852.
  • Unresolved external type references will no longer incorrectly linked to undefined, #2854.

Thanks!

Commits

Updates @swc/core from 1.10.15 to 1.11.8

Changelog

Sourced from @​swc/core's changelog.

[1.11.8] - 2025-03-07

Bug Fixes

Features

  • (ts/fast-strip) Throw an object instead of string (#10162) (241b881)

Performance

Refactor

Ci

... (truncated)

Commits
  • 307fc80 chore: Publish 1.11.8 with swc_core v16.4.1
  • 5148933 chore: Update changelog
  • d47f528 chore: Publish 1.11.8-nightly-20250307.1 with swc_core v16.4.1
  • 6fb7852 chore: Publish crates with swc_core v16.4.1
  • 241b881 feat(ts/fast-strip): Throw an object instead of string (#10162)
  • b23d133 ci: add swc_plugins test to ecosystem CI (#10164)
  • 0ceefaf refactor: Drop unused js interop bindings (#10161)
  • 35bd6d9 fix(es/parser): Rescan << in new expression (#10159)
  • 6265dc7 Revert "cache splat"
  • 63e2e88 cache splat
  • 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 |
| --- | --- | --- |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `19.7.1` | `19.8.0` |
| [commitlint](https://github.com/conventional-changelog/commitlint/tree/HEAD/@alias/commitlint) | `19.7.1` | `19.8.0` |
| [prettier](https://github.com/prettier/prettier) | `3.5.0` | `3.5.3` |
| [pretty-quick](https://github.com/prettier/pretty-quick) | `4.0.0` | `4.1.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.2` |
| [@map-colonies/tsconfig](https://github.com/MapColonies/tsconfig) | `1.0.0` | `1.0.1` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.27.7` | `0.27.9` |
| [@swc/core](https://github.com/swc-project/swc) | `1.10.15` | `1.11.8` |



Updates `@commitlint/cli` from 19.7.1 to 19.8.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.8.0/@commitlint/cli)

Updates `commitlint` from 19.7.1 to 19.8.0
- [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/v19.8.0/@alias/commitlint)

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

Updates `pretty-quick` from 4.0.0 to 4.1.1
- [Release notes](https://github.com/prettier/pretty-quick/releases)
- [Changelog](https://github.com/prettier/pretty-quick/blob/master/CHANGELOG.md)
- [Commits](prettier/pretty-quick@v4.0.0...v4.1.1)

Updates `typescript` from 5.7.3 to 5.8.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.3...v5.8.2)

Updates `@map-colonies/tsconfig` from 1.0.0 to 1.0.1
- [Release notes](https://github.com/MapColonies/tsconfig/releases)
- [Changelog](https://github.com/MapColonies/tsconfig/blob/master/CHANGELOG.md)
- [Commits](MapColonies/tsconfig@v1.0.0...v1.0.1)

Updates `typedoc` from 0.27.7 to 0.27.9
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.27.7...v0.27.9)

Updates `@swc/core` from 1.10.15 to 1.11.8
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.10.15...v1.11.8)

---
updated-dependencies:
- dependency-name: "@commitlint/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: commitlint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-patch
- dependency-name: pretty-quick
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: "@map-colonies/tsconfig"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-patch
- dependency-name: typedoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-patch
- dependency-name: "@swc/core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the infra label Mar 10, 2025
@dependabot dependabot bot requested a review from a team March 10, 2025 04:27
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 13, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Mar 13, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dev-patch-1c5532533b branch March 13, 2025 07:52
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