Skip to content

chore(deps): update devdependencies#474

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/devdependencies
Open

chore(deps): update devdependencies#474
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/devdependencies

Conversation

@renovate

@renovate renovate Bot commented Jun 27, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
dprint ^0.54.0^0.55.0 age confidence
prettier (source) 3.8.53.9.1 age confidence

Release Notes

dprint/dprint (dprint)

v0.55.1

Compare Source

Changes

  • fix(npm): resolve node_modules from config dir
    (#​1194)

Install

Run dprint upgrade or see https://dprint.dev/install/

Checksums

Artifact SHA-256 Checksum
dprint-x86_64-apple-darwin.zip 21f9784b3edf3b0a686932b4387359ebd83fba798ac2f7e2ba1e7b8c9f674e3e
dprint-aarch64-apple-darwin.zip 94a9ce5ca91dbb609d4f22f2ccf28d8b422627c0944c6ee63d1beecac28f8cd4
dprint-x86_64-pc-windows-msvc.zip dfdee60f04810c14df310696ce680da7ece599cd27b162f77906adc80d5e9679
dprint-x86_64-pc-windows-msvc-installer.exe bb244f445a0f7f022c550b0239d7bde00319ea55a1be1ccafdd0b8f52b47042b
dprint-aarch64-pc-windows-msvc.zip a4e3f6921eba2db72d00a4ae35ed1bd6ff49eed610815f8b13f3b64fe12d7b17
dprint-x86_64-unknown-linux-gnu.zip 14f40c47b2a1c79ced321b62bf177f88f064d7b11c41f1ee28488ee0d9391bb2
dprint-x86_64-unknown-linux-musl.zip 7ce856d5999585e58666701eab5e0291abfb63953884d5dd0268001c89d74b8d
dprint-aarch64-unknown-linux-gnu.zip f5ea3a5c196b0bcd91aa0af7b5ef7366dbf87e8315a6797c47bff081a8d4e398
dprint-aarch64-unknown-linux-musl.zip 2d414d659034650bc25b208a87ab427cd01a7ac6c21b3ed2191cf92e1b58f76c
dprint-riscv64gc-unknown-linux-gnu.zip 318c4880ca5042c353cf13d860969b462b43eb758d001356d4cad4bb187c3620
dprint-loongarch64-unknown-linux-gnu.zip eef61b49a6d71f9651a50b64eaf09bdf175ebf29251cd5412ac3d55c2564bc63
dprint-loongarch64-unknown-linux-musl.zip fc3f51a9fd6133cdb2d0dc8af12404ecf0844868b71e3d27efa737d1ee1fafdc
dprint-powerpc64le-unknown-linux-gnu.zip 6fa587bf42a4d7d9635c9387e5e71652dfaee7199427d560f9447ead7f44ae54
dprint-powerpc64le-unknown-linux-musl.zip 098601fedc67ee0c2867a03cf52111e6040820aa98f7e3f025cf023da517512e
dprint-aarch64-linux-android.zip 8d39d1341912bfaf26f7ce140de234e577f20e4ebd520b79ebb42e317bf451f1
dprint-x86_64-linux-android.zip 575900410e5638628e0f5bf006eb99d62f2d76b33711e795214426f25d0f14c0

v0.55.0

Compare Source

dprint is a pluggable and configurable code formatting platform that unifies all your formatters.

This substantial release adds npm specifier plugins, brings dprint to many more CPU architectures, adds richer LSP support, and gives you finer-grained configuration with per-file overrides and config inheritance.

It includes two behaviour changes worth reading before you upgrade.

Highlights

  • 📦 npm specifier plugins — reference plugins with npm:@​scope/name@version
  • 🏗️ Runs on many more architectures — Windows on ARM, Android (Termux), ppc64le, and LoongArch
  • 💡 LSP completions & hover for dprint configuration files
  • 🔀 dprint fmt --dirty — format only the files with uncommitted git changes
  • 🎛️ Per-file plugin config overrides — apply different plugin options to specific files
  • 🧬 "inherit": true for nested configuration files
  • ⚠️ Plugin associations are now additive (behaviour change)
  • ⚠️ Globs are now case-sensitive (behaviour change)

We also have a new website: https://dprint.dev

npm specifier plugins

You can now reference plugins via an npm: specifier in your config:

{
  "plugins": [
    "npm:@​dprint/typescript@0.95.15",
    "npm:@​dprint/json"
  ]
}
  • Pinned form (npm:@​scope/name@version) downloads and locks an exact version.
  • Omitting the version (npm:@​scope/name) resolves the plugin from node_modules, walking up from the config file so npm and your lockfile stay the source of truth.
  • dprint add npm:@​scope/name resolves the latest version and writes the pinned form, unless the package is in a nearby package.json under devDependencies, in which case the unversioned form is written, in which case node resolution will occur.

More architectures supported

dprint now runs on a much wider range of CPU architectures, including:

  • Windows on ARM (aarch64-pc-windows-msvc) - Now native—previously dprint was shipping the x64 binary.
  • Android / Termux.
  • ppc64le.
  • LoongArch (now able to run plugins).

This is made possible by migrating the Wasm plugin runtime from Wasmer to Wasmtime, with equivalent performance and a smaller dependency tree:

  • Native Cranelift codegen on x86_64, aarch64, riscv64, and s390x.
  • ppc64le, LoongArch, and Android compile to Wasmtime's portable Pulley bytecode (pure Rust, no native backend, no signal-based traps — which the Android sandbox doesn't allow), replacing the previous wasmi interpreter path.

LSP completions and hover for config files

dprint lsp now provides autocompletion and hover documentation when editing dprint.json / dprint.jsonc, making it easier to discover plugins and configuration options without leaving your editor.

dprint fmt --dirty

Format only the files with uncommitted changes in your git working directory — staged, unstaged, and untracked (but not gitignored):

dprint fmt --dirty

This complements the existing --staged flag.

"inherit": true for nested config files

A nested configuration file can now opt in to inheriting its ancestor's plugins and configuration. Given a config at the repo root:

// ./dprint.json
{
  "typescript": {
    "indentWidth": 4
  },
  "plugins": [
    "https://plugins.dprint.dev/typescript-0.96.1.wasm"
  ]
}

A config in a subdirectory can inherit it with "inherit": true:

// ./sub-project/dprint.json
{
  "inherit": true,
  "typescript": {
    // inherits the ancestor's TypeScript config, but overrides the indent width
    "indentWidth": 2
  }
}
  • Plugins in the nested config take precedence; any not specified are inherited.
  • The ancestor's includes are not inherited.
  • Inheriting is opt-in so that adding a config higher in the tree doesn't unexpectedly start affecting nested configs.

Per-file plugin config overrides

Plugins now support "overrides" blocks to apply different configuration to specific files:

{
  "json": {
    "overrides": {
      "files": ["**/package.json", "**/composer.json"],
      "indentWidth": 4
    }
  }
}

Use an array for multiple overrides:

{
  "json": {
    "overrides": [
      {
        "files": ["**/package.json", "**/composer.json"],
        "indentWidth": 4
      },
      {
        "files": "**/special-package.json",
        "lineWidth": 80
      }
    ]
  }
}

Overrides are honoured consistently across CLI formatting, stdin, the editor service, the LSP, and host formatting. Note that overrides only change configuration — they don't include or exclude files.

⚠️ Plugin associations are now additive (behaviour change)

Previously, adding an "associations" glob to a plugin silently replaced the file extensions and file names it matched by default. Now associations are additive:

  • A positive glob (e.g. **/*.foo) routes extra files to the plugin while its defaults keep matching.
  • A negated glob (e.g. !**/*.js) cancels a default extension, file name, or path.

If you previously relied on a positive association to replace the defaults, add a negated glob to opt back out. Fixes the surprising behaviour in #​841 and #​794.

⚠️ Globs are now case-sensitive (behaviour change)

File pattern matching for includes/excludes globs is now case-sensitive (#​1082). If your patterns relied on case-insensitive matching, update them to match the actual file casing.

Read a list of files from stdin

The new --stdin-files flag reads a newline-separated list of file paths from stdin instead of from the command line arguments. It works with the fmt, check, file-paths, and format-times subcommands, which is handy when piping the output of another tool into dprint:

generate_files | dprint fmt --stdin-files

Smarter dprint init

dprint init now scans the current directory and pre-selects the plugins whose files it finds, so the defaults match your project out of the box. The plugin picker scrolls to fit your terminal and supports type-to-filter, keeping it usable even when many plugins are available.

Pass --yes (-y) to skip the prompt entirely and accept those defaults — handy for scripts and CI:

dprint init --yes

The prompt is also skipped automatically when there's no interactive terminal.

Other notable additions

  • DPRINT_GLOBAL_GITIGNORE=1 — opt in to respecting git's global excludes file (core.excludesFile). Opt-in because it's machine-specific and won't exist on CI.
  • NO_COLOR / FORCE_COLOR support for controlling colored output.
  • dprint config update --dry-run — preview config updates without writing.
  • dprint resolved-config --file <path> — show only the plugins that would format a given file.
  • dprint incremental-state — print the exact signal dprint uses to decide cache reuse, so you can diff it between revisions.
  • Shorter subcommand namesoutput-resolved-config, output-file-paths, and output-format-times are now resolved-config, file-paths, and format-times.

Changelog

Features
  • feat(BREAKING): make plugin associations additive to default file matching (#​1172)
  • feat(BREAKING): make globs case sensitive (#​1089)
  • feat: migrate wasm plugin runtime from wasmer to wasmtime (#​1178)
  • feat: add Windows on ARM (aarch64-pc-windows-msvc) builds (#​1179)
  • feat: add android (Termux) builds using the wasmi interpreter backend (#​1175)
  • feat: add ppc64le builds using the wasmi interpreter backend (#​1174)
  • feat: use LLVM backend for LoongArch to support plugins (#​1109)
  • feat: LSP completions and hover for dprint configuration files (#​1177)
  • feat: support resolving plugins via npm specifiers and node resolution (#​1134)
  • feat: add --dirty flag to format git working directory changes (#​1171)
  • feat: add per-file plugin config overrides (#​1136)
  • feat: support "inherit": true in nested configuration files (#​1160)
  • feat: opt-in support for git's global excludes file via DPRINT_GLOBAL_GITIGNORE (#​1163)
  • feat: support reading a list of files to format from stdin (#​1157)
  • feat: support NO_COLOR and FORCE_COLOR env vars (#​1155)
  • feat: add --dry-run to dprint config update (#​1156)
  • feat: add --file flag to resolved-config to filter plugins by file (#​1167)
  • feat: add dprint incremental-state command (#​1149)
  • feat: drop output- from some subcommands (#​1150)
  • feat(npm): detect plugin kind on dprint add when no path is given (#​1183)
  • feat(npm): add --checksum flag to dprint add (#​1184)
  • feat(init): pre-select plugins from the current directory, scrollable/filterable picker, and --yes flag (#​1185)
  • feat(init): scaffold plugin config from info.json (defaultConfig + configItems) (#​1186)
  • feat(init): prioritize plugin pre-selection and surface it in the list
    (#​1187)
Performance
  • perf: reduce wasm plugin thread stack size to 4 MiB (#​1180)
  • perf: read directories on multiple threads when globbing (#​1168)
  • perf(windows): delay load DLLs not needed at startup (#​1164)
  • perf: cache resolved global gitignore path to avoid repeated git subprocess (#​1165)
  • perf: use similar for LSP diffing and drop dissimilar (#​1176)
Bug Fixes
  • fix: normalize LSP formatted line endings to match the editor document (#​1173)
  • fix: avoid hang waiting for killed process plugins in clear-cache (#​1169)
  • fix: kill process plugins when running dprint clear-cache (#​1154)
  • fix(npm): download binary when optional dependency is omitted (#​1161)
  • fix(npm): improve musl detection (#​1145)
  • fix: recompile Wasm plugin from source when loading from cache fails (#​1158)
  • fix: avoid regex size limit when given many literal file paths (#​1153)
  • fix: read .git/info/exclude when respecting gitignore (#​1151)
  • fix(plugins): surface plugin cache cleanup errors instead of swallowing them (#​1148)
  • fix(core): prevent unbounded re-evaluation when conditions oscillate (#​1137)
  • fix: include plugin's resolved config in incremental cache key (#​1138)
  • fix(install.sh): correct riscv64 build name, add loongarch64 support, Windows .exe path, resolve relative DPRINT_INSTALL (#​1131)
Internal
  • refactor: redesign plugin cache as flat per-plugin sidecars (#​1181)

Install

Run dprint upgrade or see https://dprint.dev/install/

Checksums

Artifact SHA-256 Checksum
dprint-x86_64-apple-darwin.zip 69d032d8fe70441fc4307cdd5360d5e0086773bb2f7ba63d4863e59c64f3df38
dprint-aarch64-apple-darwin.zip cf6c0149ac9ed76aee2535d0dfeffd2c9d34bcfe42c397127bba4a8c934722cc
dprint-x86_64-pc-windows-msvc.zip 44a025c8ca4cf5d9598349e48927a35186caac893fee0a5bb28e98996ef11432
dprint-x86_64-pc-windows-msvc-installer.exe e300ccdae294806c655a6949caafc3aaadabc9655ec2304e3582474ff30ff6cb
dprint-aarch64-pc-windows-msvc.zip 9ec07135b34ab20431c99994cdbdaf6f2826e2f0406f3d9d839c85571d636cd8
dprint-x86_64-unknown-linux-gnu.zip d6c2f65f8a2f360435749f85e4e88579f632e105af5324b8c8b3216377ece000
dprint-x86_64-unknown-linux-musl.zip b1365945a2c7ab51fa3c62221b3f984ba9971357e122dbf3817bdf02936f548a
dprint-aarch64-unknown-linux-gnu.zip e8ca4911be033b60f5531e0d51a5d1f126b8c68e193f85024627dac58e63294d
dprint-aarch64-unknown-linux-musl.zip 12864a0ebe6274f9f4b647e6ae2abc5eb33ace9e722d94bd23942a2975783e18
dprint-riscv64gc-unknown-linux-gnu.zip 825ce485ea3a9a61f691de1c85542a278e22c8c08d4dca9fb8e4224ab4319c59
dprint-loongarch64-unknown-linux-gnu.zip 93876d849b3d60bb2d1a53d6929f59143fddf92bcebd3510c255ae2a51c13863
dprint-loongarch64-unknown-linux-musl.zip 6fb899b90097f70f38f5aa932cb54e38be14caf059dde0fd92ab25c99232631c
dprint-powerpc64le-unknown-linux-gnu.zip 7d31dca732bb9b56e15d491df80c5ab6088378e67a4191de29152cbee3058496
dprint-powerpc64le-unknown-linux-musl.zip f41fded113c462e1d3223da3d2038e34719f1be333d5afd6c906b2b4285a0388
dprint-aarch64-linux-android.zip e97871899873f41aef9e7f2a6089cec229dd66505b8373ef294db6b8a82563dc
dprint-x86_64-linux-android.zip 87b9d3e407c5341e4d8471fd00260e254615d46bc1a27f482b3989052a89b6c6
prettier/prettier (prettier)

v3.9.1

Compare Source

v3.9.0

Compare Source

diff

🔗 Release Notes


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "every weekend"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot enabled auto-merge (squash) June 27, 2026 14:33
@renovate renovate Bot force-pushed the renovate/devdependencies branch from d6d4b2a to 55d3376 Compare June 27, 2026 21:56
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.9.0 chore(deps): update devdependencies Jun 27, 2026
@renovate renovate Bot force-pushed the renovate/devdependencies branch from 55d3376 to d4f03cb Compare June 28, 2026 02:47
@renovate renovate Bot force-pushed the renovate/devdependencies branch from d4f03cb to 4c544e9 Compare June 28, 2026 09:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants