Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 14, 2025

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

Package From To
@commitlint/cli 19.7.1 19.8.0
@map-colonies/infra-copilot-instructions 1.0.0 1.1.0
@sinclair/typebox 0.34.16 0.34.33
prettier 3.5.0 3.5.3
pretty-quick 4.0.0 4.1.1
tsx 4.19.2 4.19.3
zx 8.3.2 8.5.2

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 @map-colonies/infra-copilot-instructions from 1.0.0 to 1.1.0

Release notes

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

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.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
  • 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 @sinclair/typebox from 0.34.16 to 0.34.33

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 tsx from 4.19.2 to 4.19.3

Release notes

Sourced from tsx's releases.

v4.19.3

4.19.3 (2025-02-19)

Bug Fixes

  • upgrade esbuild to ~0.25.0 to address vuln report (#698) (e04e6c6)

This release is also available on:

Commits

Updates zx from 8.3.2 to 8.5.2

Release notes

Sourced from zx's releases.

8.5.2 — Threaded Perfection

8.5.0 — Flow Splitter

In this release we're significantly expanding the zx setup capabilities.

zx@lite

Just core functions without extras, ~7x smaller than the full version. #1131

npm i zx@lite
npm i [email protected]

Detailed comparison: zx/versions

import { $ } from 'zx'
await $`echo foo`

Channels

We have completely reforged the distribution flow. Now zx is available in multiple formats:

# npm pkg from registry.npmjs.org
npm i zx        
install directly from the GH
npm i google/zx
from GH the npm registry
npm i --registry=https://npm.pkg.github.com @​google/zx
fetch from the JSR
https://jsr.io/docs/using-packages
@​webpod is temporary JSR scope until @​google/zx becomes ready, we'll migrate later
npx jsr add @​webpod/zx
deno add jsr:@​webpod/zx
homebrew formula
https://github.com/Homebrew/homebrew-core/blob/master/Formula/z/zx.rb
</tr></table>

... (truncated)

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 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

@dependabot dependabot bot added the infra label Apr 14, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 14, 2025

Reviewers

The following teams could not be added as reviewers: infra. Either the team does not exist or it does not have the correct permissions to be added as a reviewer.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-patch-17e7afd778 branch from 6d8408b to 24333b3 Compare April 21, 2025 07:30
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-patch-17e7afd778 branch from 24333b3 to e8153da Compare May 5, 2025 05:52
Bumps the dev-patch group with 7 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` |
| [@map-colonies/infra-copilot-instructions](https://github.com/MapColonies/infra-copilot-instructions) | `1.0.0` | `1.1.0` |
| [@sinclair/typebox](https://github.com/sinclairzx81/typebox) | `0.34.16` | `0.34.33` |
| [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` |
| [tsx](https://github.com/privatenumber/tsx) | `4.19.2` | `4.19.3` |
| [zx](https://github.com/google/zx) | `8.3.2` | `8.5.2` |



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 `@map-colonies/infra-copilot-instructions` from 1.0.0 to 1.1.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.1.0)

Updates `@sinclair/typebox` from 0.34.16 to 0.34.33
- [Commits](sinclairzx81/typebox@0.34.16...0.34.33)

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 `tsx` from 4.19.2 to 4.19.3
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.19.2...v4.19.3)

Updates `zx` from 8.3.2 to 8.5.2
- [Release notes](https://github.com/google/zx/releases)
- [Commits](google/zx@8.3.2...8.5.2)

---
updated-dependencies:
- dependency-name: "@commitlint/cli"
  dependency-version: 19.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: "@map-colonies/infra-copilot-instructions"
  dependency-version: 1.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: "@sinclair/typebox"
  dependency-version: 0.34.33
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-patch
- dependency-name: prettier
  dependency-version: 3.5.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-patch
- dependency-name: pretty-quick
  dependency-version: 4.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: tsx
  dependency-version: 4.19.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-patch
- dependency-name: zx
  dependency-version: 8.5.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-patch-17e7afd778 branch from e8153da to 1d355b2 Compare May 12, 2025 05:59
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.

1 participant