Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the dev-patch group with 5 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
zx 8.3.2 8.4.0

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 @commitlint/types from 19.5.0 to 19.8.0

Release notes

Sourced from @​commitlint/types'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

v19.7.1

19.7.1 (2025-02-02)

Bug Fixes

New Contributors

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

v19.7.0

19.7.0 (2025-01-04)

Features

... (truncated)

Changelog

Sourced from @​commitlint/types's changelog.

19.8.0 (2025-03-07)

Note: Version bump only for package @​commitlint/types

Commits

Updates zx from 8.3.2 to 8.4.0

Release notes

Sourced from zx's releases.

8.4.0 – Drip Detective

Try the new batch of enhancements: npm i zx@8.4.0 https://www.npmjs.com/package/zx/v/8.4.0

Changes

  • The CLI option --prefer-local now allows linking both external binaries and packages #1116 #1117
const cwd = tmpdir()
const external = tmpdir()
await fs.outputJson(path.join(external, 'node_modules/a/package.json'), {
  name: 'a',
  version: '1.0.0',
  type: 'module',
  exports: './index.js',
})
await fs.outputFile(
  path.join(external, 'node_modules/a/index.js'),
  `
export const a = 'AAA'
`
)
const script = `
import {a} from 'a'
console.log(a);
`
const out = await $`zx --cwd=${cwd} --prefer-local=${external} --test <<< ${script}`
assert.equal(out.stdout, 'AAA\n')
  • The quote has been slightly changed for a conner case, when zx literal gets an array. #999 #1113
const p = $({prefix: '', postfix: ''})`echo ${[1, '', '*', '2']}`
// before
p.cmd //  echo 1  $'*' 2)
// after
p.cmd //  echo 1 $'' $'*' 2)

  • Provided support for custom script extensions via CLI #1104 #1105
zx script.zx           # Unknown file extension "\.zx"
zx --ext=mjs script.zx # OK

... (truncated)

Commits
  • 3efc9eb chore: add prettier to pre-commit hook (#1118)
  • 539130a feat(cli): use --prefer-local option to link external `node_modules (#1117)
  • 778fd03 chore: bump to v8.4.0 (#1114)
  • eff2d70 fix: enhance quote to handle empty args (#1113)
  • f4b0328 refactor: use ts exts for relative paths (#1111)
  • a23261b feat: pass origin error as ProcessOuput cause (#1110)
  • b571839 docs: describe nothrow option (#1109)
  • 1ef794a refactor: let nothrow suppress any kind of errors (#1108)
  • b709f2b feat: define explicit primitive cast for ProcessPromise and ProcessOutput...
  • 5f48c73 ci: separate build and publish steps (#1106)
  • 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 5 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` |
| [zx](https://github.com/google/zx) | `8.3.2` | `8.4.0` |



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 `@commitlint/types` from 19.5.0 to 19.8.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/types/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.8.0/@commitlint/types)

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

---
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: "@commitlint/types"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-patch
- dependency-name: zx
  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
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