Skip to content

Commit f106c56

Browse files
chore(deps): update all non-major dependencies (#1297)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [biome](https://redirect.github.com/biomejs/biome) | patch | `2.5.0` → `2.5.1` | | [just](https://redirect.github.com/casey/just) | minor | `1.53.0` → `1.55.0` | | [uv](https://redirect.github.com/astral-sh/uv) | patch | `0.11.23` → `0.11.25` | --- ### Release Notes <details> <summary>biomejs/biome (biome)</summary> ### [`v2.5.1`](https://redirect.github.com/biomejs/biome/releases/tag/%40biomejs/biome%402.5.1): Biome CLI v2.5.1 #### 2.5.1 ##### Patch Changes - [#&#8203;10722](https://redirect.github.com/biomejs/biome/pull/10722) [`f8a303d`](https://redirect.github.com/biomejs/biome/commit/f8a303d08b6b22f56edb8ff5e7caa665532d613a) Thanks [@&#8203;denbezrukov](https://redirect.github.com/denbezrukov)! - Fixed CSS formatter output for comments between import media queries. ```diff -@&#8203;import url("print.css") print, -/* comment */ -screen; +@&#8203;import url("print.css") print, /* comment */ screen; ``` - [#&#8203;10738](https://redirect.github.com/biomejs/biome/pull/10738) [`9fdc560`](https://redirect.github.com/biomejs/biome/commit/9fdc5600997ef59ca7ed55ac212473de9bdb0b2a) Thanks [@&#8203;JamBalaya56562](https://redirect.github.com/JamBalaya56562)! - Fixed [#&#8203;9899](https://redirect.github.com/biomejs/biome/issues/9899): the `json` and `json-pretty` reporters now escape backslashes in a diagnostic's `location.path`. Previously, paths containing backslashes (such as Windows-style paths) were emitted unescaped, producing invalid JSON. ```diff - "path": "src\account\setup-passkey.tsx", + "path": "src\\account\\setup-passkey.tsx", ``` - [#&#8203;10626](https://redirect.github.com/biomejs/biome/pull/10626) [`5f837df`](https://redirect.github.com/biomejs/biome/commit/5f837df033afc34d43b398aeddc06c1d4fa491d9) Thanks [@&#8203;tom-groves](https://redirect.github.com/tom-groves)! - Fixed [#&#8203;10625](https://redirect.github.com/biomejs/biome/issues/10625): `biome migrate` no longer emits an invalid trailing comma when a renamed rule (such as `noConsoleLog` → `noConsole`) is the last member of its rule group. Previously this produced malformed output that aborted the migration of a strict-JSON `biome.json` with a parsing error. - [#&#8203;10535](https://redirect.github.com/biomejs/biome/pull/10535) [`c245f9d`](https://redirect.github.com/biomejs/biome/commit/c245f9d9e239471d5437cd08f9cfa4601a85abd5) Thanks [@&#8203;Mokto](https://redirect.github.com/Mokto)! - Fixed a false positive in [`noUnusedVariables`](https://biomejs.dev/linter/rules/no-unused-variables/) for Svelte files where variables referenced inside `{@&#8203;html expr}` blocks were incorrectly reported as unused. - [#&#8203;10668](https://redirect.github.com/biomejs/biome/pull/10668) [`a0f197e`](https://redirect.github.com/biomejs/biome/commit/a0f197eb1a6974539927f105ff1dde1f51d07d74) Thanks [@&#8203;Netail](https://redirect.github.com/Netail)! - The `biome init` command has been updated to include a more up-to-date URL to [the first-party extensions page](https://biomejs.dev/editors/first-party-extensions/). - [#&#8203;10667](https://redirect.github.com/biomejs/biome/pull/10667) [`d8c3e87`](https://redirect.github.com/biomejs/biome/commit/d8c3e878d53515c02bd6c5cb899b2eaec046c542) Thanks [@&#8203;Netail](https://redirect.github.com/Netail)! - Fixed [#&#8203;10664](https://redirect.github.com/biomejs/biome/issues/10664): [useErrorCause](https://biomejs.dev/linter/rules/use-error-cause/) now correctly detects a shorthand property. - [#&#8203;10696](https://redirect.github.com/biomejs/biome/pull/10696) [`ef2373f`](https://redirect.github.com/biomejs/biome/commit/ef2373f29be15673705884d345c9af189e30b581) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed [#&#8203;9566](https://redirect.github.com/biomejs/biome/issues/9566). Improved how the Biome Language Server loads multiple configuration files inside a workspace. - [#&#8203;10705](https://redirect.github.com/biomejs/biome/pull/10705) [`4ccb410`](https://redirect.github.com/biomejs/biome/commit/4ccb410dc00a6fb243934dad2e8681a9d5d9529e) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed [#&#8203;10652](https://redirect.github.com/biomejs/biome/issues/10652). Biome plugins are now properly filtered when using `--only` and `--skip` flags. - [#&#8203;10669](https://redirect.github.com/biomejs/biome/pull/10669) [`aa0a6eb`](https://redirect.github.com/biomejs/biome/commit/aa0a6eb8007493961cd578f04201248c15fd809a) Thanks [@&#8203;Netail](https://redirect.github.com/Netail)! - Fixed [#&#8203;10651](https://redirect.github.com/biomejs/biome/issues/10651): [useInlineScriptId](https://biomejs.dev/linter/rules/use-inline-script-id/) now correctly trims trivia to detect if an id attribute has been set. - [#&#8203;10689](https://redirect.github.com/biomejs/biome/pull/10689) [`844b1be`](https://redirect.github.com/biomejs/biome/commit/844b1be60ded28bf4c650d85806919ceb57bc402) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed [#&#8203;10658](https://redirect.github.com/biomejs/biome/issues/10658). The issue was caused by the "Go-to definition" editor feature, which was enabled by default. The feature is now **disabled by default**. To work, the feature triggers the scanner to build the module graph. This caused memory leak issues in cases where Biome starts in the home directory to modify files. If you relied on this new feature, you must now turn on using the \[editor settings] of the extension e.g. [Zed](https://biomejs.dev/reference/zed/#goto_definition) and [VSCode](https://biomejs.dev/reference/vscode/#biomegotodefinition). - [#&#8203;10695](https://redirect.github.com/biomejs/biome/pull/10695) [`043fbb5`](https://redirect.github.com/biomejs/biome/commit/043fbb514f1b96c5b723cd86c8db4b9bc9f03631) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed [#&#8203;10674](https://redirect.github.com/biomejs/biome/issues/10674). Biome now throws an error when the field `level` is missing from a rule option. - [#&#8203;10712](https://redirect.github.com/biomejs/biome/pull/10712) [`5941df2`](https://redirect.github.com/biomejs/biome/commit/5941df2a0d6904e487e73d4dc7231dcaf7b3a2f0) Thanks [@&#8203;Conaclos](https://redirect.github.com/Conaclos)! - Improved the diagnostic and the documentation of [`useFlatMap`](https://biomejs.dev/linter/rules/use-flat-map/). - [#&#8203;10615](https://redirect.github.com/biomejs/biome/pull/10615) [`23814f1`](https://redirect.github.com/biomejs/biome/commit/23814f1ad8430df906a39323ee31d27d7b9ca17b) Thanks [@&#8203;qwertycxz](https://redirect.github.com/qwertycxz)! - Improved the DX the JSON schema when it's used by certain code editors like VSCode. - [#&#8203;10688](https://redirect.github.com/biomejs/biome/pull/10688) [`ec69489`](https://redirect.github.com/biomejs/biome/commit/ec694896a0c75176aca040392e3309df1b2e963d) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed a bug where the Biome Daemon did not correctly shut down when the editor was closed during an in-progress operation, especially while scanning. - [#&#8203;10701](https://redirect.github.com/biomejs/biome/pull/10701) [`6c2e0d7`](https://redirect.github.com/biomejs/biome/commit/6c2e0d7bba1cbc457a42adf6c982a773bc7e4605) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed [#&#8203;10694](https://redirect.github.com/biomejs/biome/issues/10694). The Biome Language Server no longer prints an error when the user hovers a variable imported from node\_modules. - [#&#8203;10681](https://redirect.github.com/biomejs/biome/pull/10681) [`888515b`](https://redirect.github.com/biomejs/biome/commit/888515b088cde688a95680362a619221c023f9d0) Thanks [@&#8203;Conaclos](https://redirect.github.com/Conaclos)! - Fixed [`useExportType`](https://biomejs.dev/linter/rules/use-export-type/) that reported useless details in some diagnostics. - [#&#8203;10220](https://redirect.github.com/biomejs/biome/pull/10220) [`3694a13`](https://redirect.github.com/biomejs/biome/commit/3694a135a9976915889988c36d9eb40d679f06e6) Thanks [@&#8203;theBGuy](https://redirect.github.com/theBGuy)! - Fixed [`useAnchorContent`](https://biomejs.dev/linter/rules/use-anchor-content/) false positive for `<a>` elements used as render prop values (e.g. `render={<a href="..." />}`), a pattern where the receiving component renders its children inside the anchor element. - [#&#8203;10702](https://redirect.github.com/biomejs/biome/pull/10702) [`98823fb`](https://redirect.github.com/biomejs/biome/commit/98823fb2e70095b09e1ca4bb9733850bbe8ff33f) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed [#&#8203;10612](https://redirect.github.com/biomejs/biome/issues/10612). The Biome parser now correctly parses processing instructions. The following SVG doesn't throw errors anymore: ```svg <?xml version="1.0" encoding="UTF-8" ?> <svg></svg> ``` #### What's Changed - ci: use tombi from installed from toolchain by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;10613](https://redirect.github.com/biomejs/biome/pull/10613) - docs: fix duplicate "being" in symlink test comments by [@&#8203;dfedoryshchev](https://redirect.github.com/dfedoryshchev) in [#&#8203;10611](https://redirect.github.com/biomejs/biome/pull/10611) - refactor(core): add `biome_languages` crate by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;10590](https://redirect.github.com/biomejs/biome/pull/10590) - fix(migrate): avoid trailing comma when a renamed rule is last in its group by [@&#8203;tom-groves](https://redirect.github.com/tom-groves) in [#&#8203;10626](https://redirect.github.com/biomejs/biome/pull/10626) - chore(deps): update rust:1.96.0-bullseye docker digest to [`e12c121`](https://redirect.github.com/biomejs/biome/commit/e12c121) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;10641](https://redirect.github.com/biomejs/biome/pull/10641) - chore(deps): update dependency [@&#8203;types/node](https://redirect.github.com/types/node) to v24.13.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;10642](https://redirect.github.com/biomejs/biome/pull/10642) - chore(deps): update github-actions by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;10643](https://redirect.github.com/biomejs/biome/pull/10643) - chore(deps): update rust crate regex to 1.12.4 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;10644](https://redirect.github.com/biomejs/biome/pull/10644) - fix(deps): update dependency prettier to v3.8.4 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;10646](https://redirect.github.com/biomejs/biome/pull/10646) - chore(deps): update pnpm to v11.6.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;10647](https://redirect.github.com/biomejs/biome/pull/10647) - chore(deps): update rust crate insta to 1.48.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;10648](https://redirect.github.com/biomejs/biome/pull/10648) - chore(deps): update rust crate smallvec to 1.15.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;10645](https://redirect.github.com/biomejs/biome/pull/10645) - fix(js\_analyze): useErrorCause shorthand property by [@&#8203;Netail](https://redirect.github.com/Netail) in [#&#8203;10667](https://redirect.github.com/biomejs/biome/pull/10667) - fix(js\_analyze): trim useInlineScriptId trivia by [@&#8203;Netail](https://redirect.github.com/Netail) in [#&#8203;10669](https://redirect.github.com/biomejs/biome/pull/10669) - chore: dead and old links by [@&#8203;Netail](https://redirect.github.com/Netail) in [#&#8203;10668](https://redirect.github.com/biomejs/biome/pull/10668) - docs(useValidAnchor): enhance lint rule explainer by [@&#8203;Th3S4mur41](https://redirect.github.com/Th3S4mur41) in [#&#8203;10679](https://redirect.github.com/biomejs/biome/pull/10679) - chore(biome\_configuration): add allowTrailingCommas to json-schema to make VSCode happy by [@&#8203;qwertycxz](https://redirect.github.com/qwertycxz) in [#&#8203;10615](https://redirect.github.com/biomejs/biome/pull/10615) - chore: fixes an internal CVE by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;10690](https://redirect.github.com/biomejs/biome/pull/10690) - chore(deps): update dependency vite to v7.3.5 \[security] by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;10691](https://redirect.github.com/biomejs/biome/pull/10691) - fix(lsp): shutdown the daemon on disconnect by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;10688](https://redirect.github.com/biomejs/biome/pull/10688) - fix(lsp): disable go-to definition by default by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;10689](https://redirect.github.com/biomejs/biome/pull/10689) - refactor(module\_graph): preserve same-name function overloads as a set by [@&#8203;IxxyDev](https://redirect.github.com/IxxyDev) in [#&#8203;10585](https://redirect.github.com/biomejs/biome/pull/10585) - fix(a11y/useAnchorContent): don't flag <a> elements used as render props by [@&#8203;theBGuy](https://redirect.github.com/theBGuy) in [#&#8203;10220](https://redirect.github.com/biomejs/biome/pull/10220) - docs: fix rustdoc for `noImplicitCoercions` by [@&#8203;Bertie690](https://redirect.github.com/Bertie690) in [#&#8203;10614](https://redirect.github.com/biomejs/biome/pull/10614) - fix: level is now mandatory by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;10695](https://redirect.github.com/biomejs/biome/pull/10695) - fix(html): register {[@&#8203;html](https://redirect.github.com/html)} expression as a template reference in Svelte by [@&#8203;Mokto](https://redirect.github.com/Mokto) in [#&#8203;10535](https://redirect.github.com/biomejs/biome/pull/10535) - fix(lsp): improved configuration loading by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;10696](https://redirect.github.com/biomejs/biome/pull/10696) - fix: update member creation by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;10700](https://redirect.github.com/biomejs/biome/pull/10700) - docs(js-api): correct "If" to "It" in BiomeCommon method JSDoc by [@&#8203;dfedoryshchev](https://redirect.github.com/dfedoryshchev) in [#&#8203;10706](https://redirect.github.com/biomejs/biome/pull/10706) - chore(xtask): scaffold global-types codegen and resolver builder by [@&#8203;minseong0324](https://redirect.github.com/minseong0324) in [#&#8203;10249](https://redirect.github.com/biomejs/biome/pull/10249) - refactor(useExportType): dedup code by [@&#8203;Conaclos](https://redirect.github.com/Conaclos) in [#&#8203;10681](https://redirect.github.com/biomejs/biome/pull/10681) - refactor(useFlatMap): improve docs and diagnostics by [@&#8203;Conaclos](https://redirect.github.com/Conaclos) in [#&#8203;10712](https://redirect.github.com/biomejs/biome/pull/10712) - chore: refactor html a11y test cases by [@&#8203;Netail](https://redirect.github.com/Netail) in [#&#8203;10713](https://redirect.github.com/biomejs/biome/pull/10713) - refactor(migrate): remove dead code by [@&#8203;Conaclos](https://redirect.github.com/Conaclos) in [#&#8203;10717](https://redirect.github.com/biomejs/biome/pull/10717) - chore(deps): update github-actions by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;10723](https://redirect.github.com/biomejs/biome/pull/10723) - fix(lsp): handle navigation result errors by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;10701](https://redirect.github.com/biomejs/biome/pull/10701) - feat(css\_formatter): format import media comments inline by [@&#8203;denbezrukov](https://redirect.github.com/denbezrukov) in [#&#8203;10722](https://redirect.github.com/biomejs/biome/pull/10722) - refactor: expose more utilities by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;10728](https://redirect.github.com/biomejs/biome/pull/10728) - perf(core): save Settings via Arc by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;10720](https://redirect.github.com/biomejs/biome/pull/10720) - fix(parser): html processing instructions by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;10702](https://redirect.github.com/biomejs/biome/pull/10702) - refactor(tools): provide diagnostics printer by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;10732](https://redirect.github.com/biomejs/biome/pull/10732) - refactor: abstract vue directive detection by [@&#8203;Netail](https://redirect.github.com/Netail) in [#&#8203;10736](https://redirect.github.com/biomejs/biome/pull/10736) - fix(cli): escape backslashes in JSON reporter file paths by [@&#8203;JamBalaya56562](https://redirect.github.com/JamBalaya56562) in [#&#8203;10738](https://redirect.github.com/biomejs/biome/pull/10738) - fix(analyzer): exclude plugins via filters by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;10705](https://redirect.github.com/biomejs/biome/pull/10705) - ci: release by [@&#8203;github-actions](https://redirect.github.com/github-actions)\[bot] in [#&#8203;10627](https://redirect.github.com/biomejs/biome/pull/10627) #### New Contributors - [@&#8203;tom-groves](https://redirect.github.com/tom-groves) made their first contribution in [#&#8203;10626](https://redirect.github.com/biomejs/biome/pull/10626) - [@&#8203;qwertycxz](https://redirect.github.com/qwertycxz) made their first contribution in [#&#8203;10615](https://redirect.github.com/biomejs/biome/pull/10615) - [@&#8203;theBGuy](https://redirect.github.com/theBGuy) made their first contribution in [#&#8203;10220](https://redirect.github.com/biomejs/biome/pull/10220) **Full Changelog**: <https://github.com/biomejs/biome/compare/@biomejs/biome@2.5.0...@&#8203;biomejs/biome@2.5.1> </details> <details> <summary>casey/just (just)</summary> ### [`v1.55.0`](https://redirect.github.com/casey/just/blob/HEAD/CHANGELOG.md#1550---2026-06-29) [Compare Source](https://redirect.github.com/casey/just/compare/1.54.0...1.55.0) ##### Fixed - Fix forwarded dependency flag value ([#&#8203;3489](https://redirect.github.com/casey/just/pull/3489) by [casey](https://redirect.github.com/casey)) ##### Changed - Allow `[arg(pattern)]` to be a list ([#&#8203;3484](https://redirect.github.com/casey/just/pull/3484) by [casey](https://redirect.github.com/casey)) - Allow `[arg(help)]` to be expression ([#&#8203;3483](https://redirect.github.com/casey/just/pull/3483) by [casey](https://redirect.github.com/casey)) - Allow `[arg(pattern)]` to be expression ([#&#8203;3482](https://redirect.github.com/casey/just/pull/3482) by [casey](https://redirect.github.com/casey)) ##### Added - Add stream gates to `style()` ([#&#8203;3503](https://redirect.github.com/casey/just/pull/3503) by [casey](https://redirect.github.com/casey)) - Accept `-F` for `--dotenv-filename` ([#&#8203;3498](https://redirect.github.com/casey/just/pull/3498) by [casey](https://redirect.github.com/casey)) - Add `just_version()` function ([#&#8203;3497](https://redirect.github.com/casey/just/pull/3497) by [casey](https://redirect.github.com/casey)) - Add `[arg(multiple)]` ([#&#8203;3493](https://redirect.github.com/casey/just/pull/3493) by [casey](https://redirect.github.com/casey)) - Allow combining short options ([#&#8203;3490](https://redirect.github.com/casey/just/pull/3490) by [casey](https://redirect.github.com/casey)) - Allow variadic parameters to be options ([#&#8203;3488](https://redirect.github.com/casey/just/pull/3488) by [casey](https://redirect.github.com/casey)) - Default `[arg(short)]` to first character of parameter name ([#&#8203;3486](https://redirect.github.com/casey/just/pull/3486) by [casey](https://redirect.github.com/casey)) - Add support for RGB and fixed colors to `style()` ([#&#8203;3479](https://redirect.github.com/casey/just/pull/3479) by [casey](https://redirect.github.com/casey)) - Improve `style()` function ([#&#8203;3478](https://redirect.github.com/casey/just/pull/3478) by [casey](https://redirect.github.com/casey)) - Add `set minimum-version` ([#&#8203;3477](https://redirect.github.com/casey/just/pull/3477) by [casey](https://redirect.github.com/casey)) - Add module aliases ([#&#8203;3472](https://redirect.github.com/casey/just/pull/3472) by [casey](https://redirect.github.com/casey)) ##### Misc - Add example to cached recipes readme ([#&#8203;3506](https://redirect.github.com/casey/just/pull/3506) by [casey](https://redirect.github.com/casey)) - Fix readme heading levels ([#&#8203;3505](https://redirect.github.com/casey/just/pull/3505) by [casey](https://redirect.github.com/casey)) - Move Friendly Admonitions higher in Cached Recipes section ([#&#8203;3504](https://redirect.github.com/casey/just/pull/3504) by [casey](https://redirect.github.com/casey)) - Rename test helper functions ([#&#8203;3502](https://redirect.github.com/casey/just/pull/3502) by [casey](https://redirect.github.com/casey)) - Simplify tests ([#&#8203;3501](https://redirect.github.com/casey/just/pull/3501) by [casey](https://redirect.github.com/casey)) - Use `assert_eval_eq` in tests ([#&#8203;3499](https://redirect.github.com/casey/just/pull/3499) by [casey](https://redirect.github.com/casey)) - Expand readme intro list ([#&#8203;3496](https://redirect.github.com/casey/just/pull/3496) by [casey](https://redirect.github.com/casey)) - Organize readme into sections ([#&#8203;3495](https://redirect.github.com/casey/just/pull/3495) by [casey](https://redirect.github.com/casey)) - Rename option tests ([#&#8203;3494](https://redirect.github.com/casey/just/pull/3494) by [casey](https://redirect.github.com/casey)) - Move option application to `switch.apply()` ([#&#8203;3491](https://redirect.github.com/casey/just/pull/3491) by [casey](https://redirect.github.com/casey)) - Document that `[arg(help)]` may be a list ([#&#8203;3485](https://redirect.github.com/casey/just/pull/3485) by [casey](https://redirect.github.com/casey)) - Move override processing out of `Analyzer` ([#&#8203;3481](https://redirect.github.com/casey/just/pull/3481) by [casey](https://redirect.github.com/casey)) - Add `ConstEvalError` ([#&#8203;3480](https://redirect.github.com/casey/just/pull/3480) by [casey](https://redirect.github.com/casey)) - Remove `ModuleAlias` ([#&#8203;3475](https://redirect.github.com/casey/just/pull/3475) by [casey](https://redirect.github.com/casey)) - Chain tests ([#&#8203;3476](https://redirect.github.com/casey/just/pull/3476) by [casey](https://redirect.github.com/casey)) - Remove temptree dependency ([#&#8203;3473](https://redirect.github.com/casey/just/pull/3473) by [casey](https://redirect.github.com/casey)) - Simplify show tests ([#&#8203;3471](https://redirect.github.com/casey/just/pull/3471) by [casey](https://redirect.github.com/casey)) - Remove unnecessary tab escapes ([#&#8203;3470](https://redirect.github.com/casey/just/pull/3470) by [casey](https://redirect.github.com/casey)) - Indent `Test::write()` strings ([#&#8203;3469](https://redirect.github.com/casey/just/pull/3469) by [casey](https://redirect.github.com/casey)) - Document cache key printing ([#&#8203;3468](https://redirect.github.com/casey/just/pull/3468) by [casey](https://redirect.github.com/casey)) - Remove generic argument from `Count` ([#&#8203;3467](https://redirect.github.com/casey/just/pull/3467) by [casey](https://redirect.github.com/casey)) ### [`v1.54.0`](https://redirect.github.com/casey/just/blob/HEAD/CHANGELOG.md#1540---2026-06-22) [Compare Source](https://redirect.github.com/casey/just/compare/1.53.0...1.54.0) ##### Fixed - Forbid duplicate attribute keys ([#&#8203;3454](https://redirect.github.com/casey/just/pull/3454) by [casey](https://redirect.github.com/casey)) - Clear signal handler when infallible line catches signal ([#&#8203;3444](https://redirect.github.com/casey/just/pull/3444) by [casey](https://redirect.github.com/casey)) ##### Changed - Allow passing `--dotenv-command` multiple times ([#&#8203;3445](https://redirect.github.com/casey/just/pull/3445) by [casey](https://redirect.github.com/casey)) - Allow `[arg]` `value` to be expression ([#&#8203;3429](https://redirect.github.com/casey/just/pull/3429) by [casey](https://redirect.github.com/casey)) ##### Added - Add `[continue]` attribute ([#&#8203;3442](https://redirect.github.com/casey/just/pull/3442) by [casey](https://redirect.github.com/casey)) - Add `--dotenv-command` and `set dotenv-command` ([#&#8203;3441](https://redirect.github.com/casey/just/pull/3441) by [casey](https://redirect.github.com/casey)) ##### Cached Recipes - Add cache key to verbose output ([#&#8203;3465](https://redirect.github.com/casey/just/pull/3465) by [casey](https://redirect.github.com/casey)) - Add `--no-cache` flag ([#&#8203;3463](https://redirect.github.com/casey/just/pull/3463) by [casey](https://redirect.github.com/casey)) - Remove empty cache entries with `just --clean` ([#&#8203;3462](https://redirect.github.com/casey/just/pull/3462) by [casey](https://redirect.github.com/casey)) - Add `just --clean` instructions to readme ([#&#8203;3461](https://redirect.github.com/casey/just/pull/3461) by [casey](https://redirect.github.com/casey)) - Allow filtering `--clean` by recipe and module path ([#&#8203;3460](https://redirect.github.com/casey/just/pull/3460) by [casey](https://redirect.github.com/casey)) - Add `--clean` subcommand for clearing recipe cache ([#&#8203;3459](https://redirect.github.com/casey/just/pull/3459) by [casey](https://redirect.github.com/casey)) - Include recipe name in cache entries ([#&#8203;3457](https://redirect.github.com/casey/just/pull/3457) by [casey](https://redirect.github.com/casey)) - Add extra user-supplied cache key ([#&#8203;3456](https://redirect.github.com/casey/just/pull/3456) by [casey](https://redirect.github.com/casey)) - Fix working directory cache key ([#&#8203;3455](https://redirect.github.com/casey/just/pull/3455) by [casey](https://redirect.github.com/casey)) - Add output files to cached recipes ([#&#8203;3453](https://redirect.github.com/casey/just/pull/3453) by [casey](https://redirect.github.com/casey)) - Add file inputs to cached recipes ([#&#8203;3452](https://redirect.github.com/casey/just/pull/3452) by [casey](https://redirect.github.com/casey)) - Use body lines in cache key ([#&#8203;3451](https://redirect.github.com/casey/just/pull/3451) by [casey](https://redirect.github.com/casey)) - Use recipe body in cache key instead of lines ([#&#8203;3447](https://redirect.github.com/casey/just/pull/3447) by [casey](https://redirect.github.com/casey)) - Add additional cache keys ([#&#8203;3446](https://redirect.github.com/casey/just/pull/3446) by [casey](https://redirect.github.com/casey)) - Add cached recipes ([#&#8203;3437](https://redirect.github.com/casey/just/pull/3437) by [casey](https://redirect.github.com/casey)) ##### Misc - Rename `AttributeDiscriminant` to `AttributeKind` ([#&#8203;3464](https://redirect.github.com/casey/just/pull/3464) by [casey](https://redirect.github.com/casey)) - Improve invalid shell recipe attribute error message ([#&#8203;3458](https://redirect.github.com/casey/just/pull/3458) by [casey](https://redirect.github.com/casey)) - Add `Environment` struct ([#&#8203;3450](https://redirect.github.com/casey/just/pull/3450) by [casey](https://redirect.github.com/casey)) - Remove `Test::no_justfile()` ([#&#8203;3449](https://redirect.github.com/casey/just/pull/3449) by [casey](https://redirect.github.com/casey)) - Use plural consistently in `UnstableFeature` enum ([#&#8203;3448](https://redirect.github.com/casey/just/pull/3448) by [casey](https://redirect.github.com/casey)) - Lowercase `ctrl` consistently ([#&#8203;3443](https://redirect.github.com/casey/just/pull/3443) by [casey](https://redirect.github.com/casey)) - Add activating environments section to readme ([#&#8203;3440](https://redirect.github.com/casey/just/pull/3440) by [casey](https://redirect.github.com/casey)) - Bump minimum-supported Rust version to 1.89.0 ([#&#8203;3438](https://redirect.github.com/casey/just/pull/3438) by [casey](https://redirect.github.com/casey)) - Make non-unicode error messages consistent ([#&#8203;3436](https://redirect.github.com/casey/just/pull/3436) by [casey](https://redirect.github.com/casey)) - Lowercase function error messages ([#&#8203;3435](https://redirect.github.com/casey/just/pull/3435) by [casey](https://redirect.github.com/casey)) - Reword readme ([#&#8203;3433](https://redirect.github.com/casey/just/pull/3433) by [casey](https://redirect.github.com/casey)) - Remove emacs `Local Variables:` block from justfile ([#&#8203;3432](https://redirect.github.com/casey/just/pull/3432) by [casey](https://redirect.github.com/casey)) </details> <details> <summary>astral-sh/uv (uv)</summary> ### [`v0.11.25`](https://redirect.github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#01125) [Compare Source](https://redirect.github.com/astral-sh/uv/compare/0.11.24...0.11.25) Released on 2026-06-26. ##### Security This release updates our tar library, [astral-tokio-tar](https://redirect.github.com/astral-sh/tokio-tar), to v0.6.3, which includes over 20 changes that harden our tar handling against [parser differentials](https://www.brainonfire.net/blog/2022/04/11/what-is-parser-mismatch/). uv may reject source distributions with malformed or ambiguous content that were previously accepted. See the [upstream commits](https://redirect.github.com/astral-sh/tokio-tar/compare/v0.6.2...v0.6.3) for a full list of changes. ##### Enhancements - Add a full "lockfile" to tool receipts ([#&#8203;18937](https://redirect.github.com/astral-sh/uv/pull/18937)) - Allow scoped overrides to add dependencies ([#&#8203;19974](https://redirect.github.com/astral-sh/uv/pull/19974)) - Avoid writing redundant lockfile markers with `tool.uv.environments` ([#&#8203;19933](https://redirect.github.com/astral-sh/uv/pull/19933)) - Factor supported environments out of lockfile markers ([#&#8203;19969](https://redirect.github.com/astral-sh/uv/pull/19969)) - Recommend our own build backend in the build frontend ([#&#8203;19994](https://redirect.github.com/astral-sh/uv/pull/19994)) - Reject wheels with multiple .dist-info directories ([#&#8203;19986](https://redirect.github.com/astral-sh/uv/pull/19986)) - Simplify dependency markers under parent reachability ([#&#8203;19971](https://redirect.github.com/astral-sh/uv/pull/19971)) - Support scoped dependency exclusions ([#&#8203;19977](https://redirect.github.com/astral-sh/uv/pull/19977)) - Support scoped dependency overrides ([#&#8203;19970](https://redirect.github.com/astral-sh/uv/pull/19970)) - Explain why files are skipped in registry index parsing ([#&#8203;19983](https://redirect.github.com/astral-sh/uv/pull/19983)) ##### Preview features - Add `uv workspace list --scripts` ([#&#8203;20009](https://redirect.github.com/astral-sh/uv/pull/20009)) - Support centralised environments in `uv venv` ([#&#8203;19912](https://redirect.github.com/astral-sh/uv/pull/19912)) - Use locked ty versions in `uv check` ([#&#8203;19884](https://redirect.github.com/astral-sh/uv/pull/19884)) - Add centralized storage of project environments ([#&#8203;18214](https://redirect.github.com/astral-sh/uv/pull/18214)) - Verify lockfile hashes before reusing a cached ty in `uv check` ([#&#8203;19995](https://redirect.github.com/astral-sh/uv/pull/19995)) - Use locked dependency selection for `uv check --script` ([#&#8203;19989](https://redirect.github.com/astral-sh/uv/pull/19989)) ##### Bug fixes - Preserve standalone markers in workspace metadata ([#&#8203;20011](https://redirect.github.com/astral-sh/uv/pull/20011)) - Reject `uv build` if the cache dir is enclosed ([#&#8203;19991](https://redirect.github.com/astral-sh/uv/pull/19991)) ### [`v0.11.24`](https://redirect.github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#01124) [Compare Source](https://redirect.github.com/astral-sh/uv/compare/0.11.23...0.11.24) Released on 2026-06-23. ##### Python - Add CPython 3.15.0b3 ([#&#8203;19964](https://redirect.github.com/astral-sh/uv/pull/19964)) ##### Preview features - Make project environments relocatable under preview ([#&#8203;19965](https://redirect.github.com/astral-sh/uv/pull/19965)) ##### Performance - Use a compact index for lazy version maps ([#&#8203;19959](https://redirect.github.com/astral-sh/uv/pull/19959)) ##### Bug fixes - Allow disabling `exclude-newer` ([#&#8203;19934](https://redirect.github.com/astral-sh/uv/pull/19934)) - Avoid archive id collisions ([#&#8203;19949](https://redirect.github.com/astral-sh/uv/pull/19949)) - Reapply "Fix transparent Python upgrades in project environments" ([#&#8203;19928](https://redirect.github.com/astral-sh/uv/pull/19928)) - Clean up partial tool entrypoint installs ([#&#8203;19966](https://redirect.github.com/astral-sh/uv/pull/19966)) - Fix relocatable `activate.fish` and broaden Fish version support ([#&#8203;19856](https://redirect.github.com/astral-sh/uv/pull/19856)) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - Between 12:00 AM and 03:59 AM, only on Monday (`* 0-3 * * 1`) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/alecthomas/chroma). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNDIuMiIsInVwZGF0ZWRJblZlciI6IjQzLjI0Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent f0e1def commit f106c56

7 files changed

Lines changed: 4 additions & 4 deletions

File tree

File renamed without changes.

bin/biome

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.biome-2.5.0.pkg
1+
.biome-2.5.1.pkg

bin/just

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.just-1.53.0.pkg
1+
.just-1.55.0.pkg

bin/uv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.uv-0.11.23.pkg
1+
.uv-0.11.25.pkg

bin/uvx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.uv-0.11.23.pkg
1+
.uv-0.11.25.pkg

0 commit comments

Comments
 (0)