Skip to content

Commit 0ae5ef0

Browse files
chore(deps): update all non-major dependencies (#1137)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [biome](https://redirect.github.com/biomejs/biome) | | patch | `2.2.2` -> `2.2.3` | | [go](https://redirect.github.com/golang/go) | | patch | `1.25.0` -> `1.25.1` | | [go](https://go.dev/) ([source](https://redirect.github.com/golang/go)) | toolchain | patch | `1.25.0` -> `1.25.1` | | [uv](https://redirect.github.com/astral-sh/uv) | | patch | `0.8.13` -> `0.8.15` | --- ### Release Notes <details> <summary>biomejs/biome (biome)</summary> ### [`v2.2.3`](https://redirect.github.com/biomejs/biome/releases/tag/%40biomejs/biome%402.2.3): Biome CLI v2.2.3 #### 2.2.3 ##### Patch Changes - [#&#8203;7353](https://redirect.github.com/biomejs/biome/pull/7353) [`4d2b719`](https://redirect.github.com/biomejs/biome/commit/4d2b7190f855a88bdae467a2efc00b81721bee62) Thanks [@&#8203;JeetuSuthar](https://redirect.github.com/JeetuSuthar)! - Fixed [#&#8203;7340](https://redirect.github.com/biomejs/biome/issues/7340): The linter now allows the `navigation` property for view-transition in CSS. Previously, the linter incorrectly flagged `navigation: auto` as an unknown property. This fix adds `navigation` to the list of known CSS properties, following the [CSS View Transitions spec](https://www.w3.org/TR/css-view-transitions-2/#view-transition-navigation-descriptor). - [#&#8203;7275](https://redirect.github.com/biomejs/biome/pull/7275) [`560de1b`](https://redirect.github.com/biomejs/biome/commit/560de1bf3f22f4a8a5cdc224256a34dbb9d78481) Thanks [@&#8203;arendjr](https://redirect.github.com/arendjr)! - Fixed [#&#8203;7268](https://redirect.github.com/biomejs/biome/issues/7268): Files that are explicitly passed as CLI arguments are now correctly ignored if they reside in an ignored folder. - [#&#8203;7358](https://redirect.github.com/biomejs/biome/pull/7358) [`963a246`](https://redirect.github.com/biomejs/biome/commit/963a24643cbf4d91cca81569b33a8b7e21b4dd0b) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed [#&#8203;7085](https://redirect.github.com/biomejs/biome/issues/7085), now the rule `noDescendingSpecificity` correctly calculates the specificity of selectors when they are included inside a media query. - [#&#8203;7387](https://redirect.github.com/biomejs/biome/pull/7387) [`923674d`](https://redirect.github.com/biomejs/biome/commit/923674dbf8cc4c23ab569cd00ae0a0cf2a3ab791) Thanks [@&#8203;qraqras](https://redirect.github.com/qraqras)! - Fixed [#&#8203;7381](https://redirect.github.com/biomejs/biome/issues/7381), now the [`useOptionalChain`](https://biomejs.dev/ja/linter/rules/use-optional-chain/) rule recognizes optional chaining using Yoda expressions (e.g., `undefined !== foo && foo.bar`). - [#&#8203;7316](https://redirect.github.com/biomejs/biome/pull/7316) [`f9636d5`](https://redirect.github.com/biomejs/biome/commit/f9636d5de1e8aef742d145a886f05a4cd79eca31) Thanks [@&#8203;Conaclos](https://redirect.github.com/Conaclos)! - Fixed [#&#8203;7289](https://redirect.github.com/biomejs/biome/issues/7289). The rule [`useImportType`](https://biomejs.dev/linter/rules/use-import-type/) now inlines `import type` into `import { type }` when the `style` option is set to `inlineType`. Example: ```ts import type { T } from "mod"; // becomes import { type T } from "mod"; ``` - [#&#8203;7350](https://redirect.github.com/biomejs/biome/pull/7350) [`bb4d407`](https://redirect.github.com/biomejs/biome/commit/bb4d407747dd29df78776f143ad63657f869be11) Thanks [@&#8203;siketyan](https://redirect.github.com/siketyan)! - Fixed [#&#8203;7261](https://redirect.github.com/biomejs/biome/issues/7261): two characters `・` (KATAKANA MIDDLE DOT, U+30FB) and `・` (HALFWIDTH KATAKANA MIDDLE DOT, U+FF65) are no longer considered as valid characters in identifiers. Property keys containing these character(s) are now preserved as string literals. - [#&#8203;7377](https://redirect.github.com/biomejs/biome/pull/7377) [`811f47b`](https://redirect.github.com/biomejs/biome/commit/811f47b35163e70dce106f62d0aea4ef9e6b91bb) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed a bug where the Biome Language Server didn't correctly compute the diagnostics of a monorepo setting, caused by an incorrect handling of the project status. - [#&#8203;7245](https://redirect.github.com/biomejs/biome/pull/7245) [`fad34b9`](https://redirect.github.com/biomejs/biome/commit/fad34b9db9778fe964ff7dbc489de0bfad2d3ece) Thanks [@&#8203;kedevked](https://redirect.github.com/kedevked)! - Added the new lint rule `useConsistentArrowReturn`. This rule enforces a consistent return style for arrow functions. ##### Invalid ```js const f = () => { return 1; }; ``` This rule is a port of ESLint's [arrow-body-style](https://eslint.org/docs/latest/rules/arrow-body-style) rule. - [#&#8203;7370](https://redirect.github.com/biomejs/biome/pull/7370) [`e8032dd`](https://redirect.github.com/biomejs/biome/commit/e8032ddfdd734a1441335d82b49db478248e6992) Thanks [@&#8203;fireairforce](https://redirect.github.com/fireairforce)! - Support dynamic `import defer` and `import source`. The syntax looks like: ```ts import.source("foo"); import.source("x", { with: { attr: "val" } }); import.defer("foo"); import.defer("x", { with: { attr: "val" } }); ``` - [#&#8203;7369](https://redirect.github.com/biomejs/biome/pull/7369) [`b1f8cbd`](https://redirect.github.com/biomejs/biome/commit/b1f8cbd88619deb269b2028eb0578657987848c5) Thanks [@&#8203;siketyan](https://redirect.github.com/siketyan)! - Range suppressions are now supported for Grit plugins. For JavaScript, you can suppress a plugin as follows: ```js // biome-ignore-start lint/plugin/preferObjectSpread: reason Object.assign({ foo: "bar" }, baz); // biome-ignore-end lint/plugin/preferObjectSpread: reason ``` For CSS, you can suppress a plugin as follows: ```css body { /* biome-ignore-start lint/plugin/useLowercaseColors: reason */ color: #fff; /* biome-ignore-end lint/plugin/useLowercaseColors: reason */ } ``` - [#&#8203;7384](https://redirect.github.com/biomejs/biome/pull/7384) [`099507e`](https://redirect.github.com/biomejs/biome/commit/099507eb07f14f7d383f848fb6c659b5a6ccfd92) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Reduced the severity of certain diagnostics emitted when Biome deserializes the configuration files. Now these diagnostics are emitted as `Information` severity, which means that they won't interfere when running commands with `--error-on-warnings` - [#&#8203;7302](https://redirect.github.com/biomejs/biome/pull/7302) [`2af2380`](https://redirect.github.com/biomejs/biome/commit/2af2380b8210e74efea467139a8a4cb4747c8af4) Thanks [@&#8203;unvalley](https://redirect.github.com/unvalley)! - Fixed [#&#8203;7301](https://redirect.github.com/biomejs/biome/issues/7301): [`useReadonlyClassProperties`](https://biomejs.dev/linter/rules/use-readonly-class-properties/) now correctly skips JavaScript files. - [#&#8203;7288](https://redirect.github.com/biomejs/biome/pull/7288) [`94d85f8`](https://redirect.github.com/biomejs/biome/commit/94d85f8fe54305e8fa070490bb2f7c86a91c5e92) Thanks [@&#8203;ThiefMaster](https://redirect.github.com/ThiefMaster)! - Fixed [#&#8203;7286](https://redirect.github.com/biomejs/biome/issues/7286). Files are now formatted with JSX behavior when `javascript.parser.jsxEverywhere` is explicitly set. Previously, this flag was only used for parsing, but not for formatting, which resulted in incorrect formatting of conditional expressions when JSX syntax is used in `.js` files. - [#&#8203;7311](https://redirect.github.com/biomejs/biome/pull/7311) [`62154b9`](https://redirect.github.com/biomejs/biome/commit/62154b93e0aa1609afb3d2b1f5468b63ab79374a) Thanks [@&#8203;qraqras](https://redirect.github.com/qraqras)! - Added the new nursery rule `noUselessCatchBinding`. This rule disallows unnecessary catch bindings. ```diff try { // Do something - } catch (unused) {} + } catch {} ``` - [#&#8203;7349](https://redirect.github.com/biomejs/biome/pull/7349) [`45c1dfe`](https://redirect.github.com/biomejs/biome/commit/45c1dfe32879f4bbb75cbf9b3ee86e304a02aaa1) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed [#&#8203;4298](https://redirect.github.com/biomejs/biome/issues/4298). Biome now correctly formats CSS declarations when it contains one single value: ```diff .bar { - --123456789012345678901234567890: var(--1234567890123456789012345678901234567); + --123456789012345678901234567890: var( + --1234567890123456789012345678901234567 + ); } ``` - [#&#8203;7295](https://redirect.github.com/biomejs/biome/pull/7295) [`7638e84`](https://redirect.github.com/biomejs/biome/commit/7638e84b026c8b008fa1efdd795b8c0bff0733ab) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed [#&#8203;7130](https://redirect.github.com/biomejs/biome/issues/7130). Removed the emission of a false-positive diagnostic. Biome no longer emits the following diagnostic: ``` lib/main.ts:1:5 suppressions/unused ━━━━━━━━━━━━━━━━━━━━━━━━━ ⚠ Suppression comment has no effect because the tool is not enabled. > 1 │ /** biome-ignore-all assist/source/organizeImports: For the lib root file, we don't want to organize exports */ │ ^^^^^^^^^^^^^^^^ ``` - [#&#8203;7377](https://redirect.github.com/biomejs/biome/pull/7377) [`811f47b`](https://redirect.github.com/biomejs/biome/commit/811f47b35163e70dce106f62d0aea4ef9e6b91bb) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed [#&#8203;7371](https://redirect.github.com/biomejs/biome/issues/7371) where the Biome Language Server didn't correctly recompute the diagnostics when updating a nested configuration file. - [#&#8203;7348](https://redirect.github.com/biomejs/biome/pull/7348) [`ac27fc5`](https://redirect.github.com/biomejs/biome/commit/ac27fc56dbb14c8f8507ffc4b7d6bf27aa3780db) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed [#&#8203;7079](https://redirect.github.com/biomejs/biome/issues/7079). Now the rule [`useSemanticElements`](https://biomejs.dev/linter/rules/use-semantic-elements/) doesn't trigger components and custom elements. - [#&#8203;7389](https://redirect.github.com/biomejs/biome/pull/7389) [`ab06a7e`](https://redirect.github.com/biomejs/biome/commit/ab06a7ea9523ecb39ebf74a14600a02332e9d4e1) Thanks [@&#8203;Conaclos](https://redirect.github.com/Conaclos)! - Fixed [#&#8203;7344](https://redirect.github.com/biomejs/biome/issues/7344). [`useNamingConvention`](https://biomejs.dev/linter/rules/use-naming-convention/) no longer reports interfaces defined in global declarations. Interfaces declared in global declarations augment existing interfaces. Thus, they must be ignored. In the following example, `useNamingConvention` reported `HTMLElement`. It is now ignored. ```ts export {}; declare global { interface HTMLElement { foo(): void; } } ``` - [#&#8203;7315](https://redirect.github.com/biomejs/biome/pull/7315) [`4a2bd2f`](https://redirect.github.com/biomejs/biome/commit/4a2bd2f38d1f449e55f88be351fcc1cf1d561e69) Thanks [@&#8203;vladimir-ivanov](https://redirect.github.com/vladimir-ivanov)! - Fixed [#&#8203;7310](https://redirect.github.com/biomejs/biome/issues/7310): [`useReadonlyClassProperties`](https://biomejs.dev/linter/rules/use-readonly-class-properties/) correctly handles nested assignments, avoiding false positives when a class property is assigned within another assignment expression. Example of code that previously triggered a false positive but is now correctly ignored: ```ts class test { private thing: number = 0; // incorrectly flagged public incrementThing(): void { const temp = { x: 0 }; temp.x = this.thing++; } } ``` #### What's Changed - fix(lint/useReadonlyClassProperties): skip rule for JavaScript files by [@&#8203;unvalley](https://redirect.github.com/unvalley) in [#&#8203;7302](https://redirect.github.com/biomejs/biome/pull/7302) - feat(biome-js-analyzer): adds class member analyzer to extract mutated properties in a class by [@&#8203;vladimir-ivanov](https://redirect.github.com/vladimir-ivanov) in [#&#8203;7015](https://redirect.github.com/biomejs/biome/pull/7015) - fix(analyzer): remove unhelpful diagnostic by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;7295](https://redirect.github.com/biomejs/biome/pull/7295) - fix(useImportType): inline `import type` into `import { type }` when `style=inlineType` by [@&#8203;Conaclos](https://redirect.github.com/Conaclos) in [#&#8203;7316](https://redirect.github.com/biomejs/biome/pull/7316) - fix(noDuplicateObjectKeys): correct grammatical error in JSON diagnostic message by [@&#8203;JeetuSuthar](https://redirect.github.com/JeetuSuthar) in [#&#8203;7317](https://redirect.github.com/biomejs/biome/pull/7317) - chore(deps): update github-actions by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7319](https://redirect.github.com/biomejs/biome/pull/7319) - chore(deps): update dependency [@&#8203;types/node](https://redirect.github.com/types/node) to v22.17.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7318](https://redirect.github.com/biomejs/biome/pull/7318) - chore(deps): update rust crate anyhow to 1.0.99 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7321](https://redirect.github.com/biomejs/biome/pull/7321) - chore(deps): update rust crate cfg-if to 1.0.3 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7322](https://redirect.github.com/biomejs/biome/pull/7322) - fix: simplify parens check in exponentiation expression handling by [@&#8203;cqh963852](https://redirect.github.com/cqh963852) in [#&#8203;7341](https://redirect.github.com/biomejs/biome/pull/7341) - feat: execute JS plugin in the Boa engine by [@&#8203;siketyan](https://redirect.github.com/siketyan) in [#&#8203;7300](https://redirect.github.com/biomejs/biome/pull/7300) - fix(format): honor jsxEverywhere setting in variant-specific formatter rules by [@&#8203;ThiefMaster](https://redirect.github.com/ThiefMaster) in [#&#8203;7288](https://redirect.github.com/biomejs/biome/pull/7288) - fix(biome-js-analyze): add tests for useReadonlyClassProperties by [@&#8203;vladimir-ivanov](https://redirect.github.com/vladimir-ivanov) in [#&#8203;7315](https://redirect.github.com/biomejs/biome/pull/7315) - fix(useSemanticElements): exclude components and custom elements by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;7348](https://redirect.github.com/biomejs/biome/pull/7348) - fix(css/formatter): formatting of single value lists by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;7349](https://redirect.github.com/biomejs/biome/pull/7349) - fix(formatter): patch ID\_Continue to omit U+30FB and U+FF65 added in Unicode 15.1 by [@&#8203;siketyan](https://redirect.github.com/siketyan) in [#&#8203;7350](https://redirect.github.com/biomejs/biome/pull/7350) - fix(css): allow navigation property for view-transition (fixes [#&#8203;7340](https://redirect.github.com/biomejs/biome/issues/7340)) by [@&#8203;JeetuSuthar](https://redirect.github.com/JeetuSuthar) in [#&#8203;7353](https://redirect.github.com/biomejs/biome/pull/7353) - chore(deps): update rust crate tracing-subscriber to v0.3.20 \[security] by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7365](https://redirect.github.com/biomejs/biome/pull/7365) - fix(noDescendingSpecificity): compute nested selectors by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;7358](https://redirect.github.com/biomejs/biome/pull/7358) - feat(biome\_js\_analyze): add `noUselessCatchBinding` by [@&#8203;qraqras](https://redirect.github.com/qraqras) in [#&#8203;7311](https://redirect.github.com/biomejs/biome/pull/7311) - feat(parser): support dynamic import defer and import source expr by [@&#8203;fireairforce](https://redirect.github.com/fireairforce) in [#&#8203;7370](https://redirect.github.com/biomejs/biome/pull/7370) - fix(lsp): internal project handling by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;7377](https://redirect.github.com/biomejs/biome/pull/7377) - fix: biome diagnostic about schema by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;7384](https://redirect.github.com/biomejs/biome/pull/7384) - feat(lint/vue): implement `useVueMultiWordComponentNames` by [@&#8203;dyc3](https://redirect.github.com/dyc3) in [#&#8203;7373](https://redirect.github.com/biomejs/biome/pull/7373) - fix(useNamingConvention): ignore interfaces in global declarations by [@&#8203;Conaclos](https://redirect.github.com/Conaclos) in [#&#8203;7389](https://redirect.github.com/biomejs/biome/pull/7389) - fix(useOptionalChain): support Yoda expressions by [@&#8203;qraqras](https://redirect.github.com/qraqras) in [#&#8203;7387](https://redirect.github.com/biomejs/biome/pull/7387) - fix(core): improve inference with conditionals by [@&#8203;arendjr](https://redirect.github.com/arendjr) in [#&#8203;7393](https://redirect.github.com/biomejs/biome/pull/7393) - refactor(analyze): integrate plugin as a syntax visitor by [@&#8203;siketyan](https://redirect.github.com/siketyan) in [#&#8203;7369](https://redirect.github.com/biomejs/biome/pull/7369) - feat(biome\_js\_analyze): add UseConsistentArrowReturn rule by [@&#8203;kedevked](https://redirect.github.com/kedevked) in [#&#8203;7245](https://redirect.github.com/biomejs/biome/pull/7245) - fix(cli): files in ignored folders are now correctly ignored by [@&#8203;arendjr](https://redirect.github.com/arendjr) in [#&#8203;7275](https://redirect.github.com/biomejs/biome/pull/7275) - docs: safety of useSortedKeys by [@&#8203;Sjlver](https://redirect.github.com/Sjlver) in [#&#8203;6112](https://redirect.github.com/biomejs/biome/pull/6112) - chore: add new bronze sponsor by [@&#8203;ematipico](https://redirect.github.com/ematipico) in [#&#8203;7397](https://redirect.github.com/biomejs/biome/pull/7397) - chore(rules\_check): add multi file lint rule checking by [@&#8203;ryan-m-walker](https://redirect.github.com/ryan-m-walker) in [#&#8203;7399](https://redirect.github.com/biomejs/biome/pull/7399) - ci: release by [@&#8203;github-actions](https://redirect.github.com/github-actions)\[bot] in [#&#8203;7306](https://redirect.github.com/biomejs/biome/pull/7306) #### New Contributors - [@&#8203;ThiefMaster](https://redirect.github.com/ThiefMaster) made their first contribution in [#&#8203;7288](https://redirect.github.com/biomejs/biome/pull/7288) - [@&#8203;qraqras](https://redirect.github.com/qraqras) made their first contribution in [#&#8203;7311](https://redirect.github.com/biomejs/biome/pull/7311) - [@&#8203;kedevked](https://redirect.github.com/kedevked) made their first contribution in [#&#8203;7245](https://redirect.github.com/biomejs/biome/pull/7245) - [@&#8203;Sjlver](https://redirect.github.com/Sjlver) made their first contribution in [#&#8203;6112](https://redirect.github.com/biomejs/biome/pull/6112) - [@&#8203;ryan-m-walker](https://redirect.github.com/ryan-m-walker) made their first contribution in [#&#8203;7399](https://redirect.github.com/biomejs/biome/pull/7399) **Full Changelog**: <https://github.com/biomejs/biome/compare/@biomejs/biome@2.2.2...@&#8203;biomejs/biome@v2.2.3> </details> <details> <summary>golang/go (go)</summary> ### [`v1.25.1`](https://redirect.github.com/golang/go/compare/go1.25.0...go1.25.1) </details> <details> <summary>astral-sh/uv (uv)</summary> ### [`v0.8.15`](https://redirect.github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0815) [Compare Source](https://redirect.github.com/astral-sh/uv/compare/0.8.14...0.8.15) ##### Python - Upgrade SQLite 3.50.4 in CPython builds for [CVE-2025-6965](https://redirect.github.com/advisories/GHSA-2m69-gcr7-jv3q) (see also [python/cpython#137134](https://redirect.github.com/python/cpython/issues/137134)) ##### Enhancements - Add `uv auth` commands for credential management ([#&#8203;15570](https://redirect.github.com/astral-sh/uv/pull/15570)) - Add pyx support to `uv auth` commands ([#&#8203;15636](https://redirect.github.com/astral-sh/uv/pull/15636)) - Add `uv tree --show-sizes` to show package sizes ([#&#8203;15531](https://redirect.github.com/astral-sh/uv/pull/15531)) - Add `--python-platform riscv64-unknown-linux` ([#&#8203;15630](https://redirect.github.com/astral-sh/uv/pull/15630)) - Add `--python-platform` to `uv run` and `uv tool` ([#&#8203;15515](https://redirect.github.com/astral-sh/uv/pull/15515)) - Add `uv publish --dry-run` ([#&#8203;15638](https://redirect.github.com/astral-sh/uv/pull/15638)) - Add zstandard support for wheels ([#&#8203;15645](https://redirect.github.com/astral-sh/uv/pull/15645)) - Allow registries to pre-provide core metadata ([#&#8203;15644](https://redirect.github.com/astral-sh/uv/pull/15644)) - Retry streaming Python and binary download errors ([#&#8203;15567](https://redirect.github.com/astral-sh/uv/pull/15567)) ##### Bug fixes - Fix settings rendering for `extra-build-dependencies` ([#&#8203;15622](https://redirect.github.com/astral-sh/uv/pull/15622)) - Skip non-existent directories in bytecode compilation ([#&#8203;15608](https://redirect.github.com/astral-sh/uv/pull/15608)) ##### Error messages - Add error trace to invalid package format ([#&#8203;15626](https://redirect.github.com/astral-sh/uv/pull/15626)) ### [`v0.8.14`](https://redirect.github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0814) [Compare Source](https://redirect.github.com/astral-sh/uv/compare/0.8.13...0.8.14) ##### Python - Add managed CPython distributions for aarch64 musl ##### Enhancements - Add `--python-platform` to `uv pip check` ([#&#8203;15486](https://redirect.github.com/astral-sh/uv/pull/15486)) - Add an environment variable for `UV_ISOLATED` ([#&#8203;15428](https://redirect.github.com/astral-sh/uv/pull/15428)) - Add logging to the uv build backend ([#&#8203;15533](https://redirect.github.com/astral-sh/uv/pull/15533)) - Allow more trailing null bytes in zip files ([#&#8203;15452](https://redirect.github.com/astral-sh/uv/pull/15452)) - Allow pinning managed Python versions to specific build versions ([#&#8203;15314](https://redirect.github.com/astral-sh/uv/pull/15314)) - Cache PyTorch wheels by default ([#&#8203;15481](https://redirect.github.com/astral-sh/uv/pull/15481)) - Reject already-installed wheels that don't match the target platform ([#&#8203;15484](https://redirect.github.com/astral-sh/uv/pull/15484)) - Add `--no-install-local` option to `uv sync`, `uv add` and `uv export` ([#&#8203;15328](https://redirect.github.com/astral-sh/uv/pull/15328)) - Include cycle error message in `uv pip` CLI ([#&#8203;15453](https://redirect.github.com/astral-sh/uv/pull/15453)) ##### Preview features - Fix format of `{version}` on `uv format` failure ([#&#8203;15527](https://redirect.github.com/astral-sh/uv/pull/15527)) - Lock during installs in `uv format` to prevent races ([#&#8203;15551](https://redirect.github.com/astral-sh/uv/pull/15551)) - Respect `--project` in `uv format` ([#&#8203;15438](https://redirect.github.com/astral-sh/uv/pull/15438)) - Run `uv format` in the project root ([#&#8203;15440](https://redirect.github.com/astral-sh/uv/pull/15440)) ##### Configuration - Add file-to-CLI overrides for build isolation configuration ([#&#8203;15437](https://redirect.github.com/astral-sh/uv/pull/15437)) - Add file-to-CLI overrides for reinstall configuration ([#&#8203;15426](https://redirect.github.com/astral-sh/uv/pull/15426)) ##### Performance - Cache `WHEEL` and `METADATA` reads in installed distributions ([#&#8203;15489](https://redirect.github.com/astral-sh/uv/pull/15489)) ##### Bug fixes - Avoid erroring when creating `venv` in current working directory ([#&#8203;15537](https://redirect.github.com/astral-sh/uv/pull/15537)) - Avoid introducing unnecessary system dependency on CUDA ([#&#8203;15449](https://redirect.github.com/astral-sh/uv/pull/15449)) - Clear discovered site packages when creating virtual environment ([#&#8203;15522](https://redirect.github.com/astral-sh/uv/pull/15522)) - Read index credentials from the environment during `uv publish` checks ([#&#8203;15545](https://redirect.github.com/astral-sh/uv/pull/15545)) - Refuse to remove non-virtual environments in `uv venv` ([#&#8203;15538](https://redirect.github.com/astral-sh/uv/pull/15538)) - Stop setting `CLICOLOR_FORCE=1` when calling build backends ([#&#8203;15472](https://redirect.github.com/astral-sh/uv/pull/15472)) - Support file or directory removal for Windows symlinks ([#&#8203;15543](https://redirect.github.com/astral-sh/uv/pull/15543)) ##### Documentation - Fix GitHub guide highlight lines ([#&#8203;15443](https://redirect.github.com/astral-sh/uv/pull/15443)) - Move Resolver to new Internals section in the Reference ([#&#8203;15465](https://redirect.github.com/astral-sh/uv/pull/15465)) - Split the "Authentication" page into sections ([#&#8203;15575](https://redirect.github.com/astral-sh/uv/pull/15575)) - Update uninstall docs to mention `uvw.exe` needs to be removed ([#&#8203;15536](https://redirect.github.com/astral-sh/uv/pull/15536)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), 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:eyJjcmVhdGVkSW5WZXIiOiI0MS45MS4xIiwidXBkYXRlZEluVmVyIjoiNDEuOTEuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 8f9e82f commit 0ae5ef0

File tree

10 files changed

+7
-7
lines changed

10 files changed

+7
-7
lines changed
File renamed without changes.
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.2.2.pkg
1+
.biome-2.2.3.pkg

bin/go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.go-1.25.0.pkg
1+
.go-1.25.1.pkg

bin/gofmt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.go-1.25.0.pkg
1+
.go-1.25.1.pkg

bin/uv

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

bin/uvx

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

cmd/chroma/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/alecthomas/chroma/v2/cmd/chroma
22

33
go 1.22
44

5-
toolchain go1.25.0
5+
toolchain go1.25.1
66

77
replace github.com/alecthomas/chroma/v2 => ../../
88

cmd/chromad/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/alecthomas/chroma/v2/cmd/chromad
22

33
go 1.22
44

5-
toolchain go1.25.0
5+
toolchain go1.25.1
66

77
require (
88
github.com/alecthomas/chroma/v2 v2.20.0

0 commit comments

Comments
 (0)