1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-11-23 22:24:39 +02:00
Files
chroma/bin/.enumer-1.6.1.pkg
renovate[bot] ba111b72d5 chore(deps): update all non-major dependencies (#1147)
Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs
from Renovate will soon appear from 'Mend'. Learn more
[here](https://redirect.github.com/renovatebot/renovate/discussions/37842).

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [enumer](https://redirect.github.com/dmarkham/enumer) | minor |
`1.5.11` -> `1.6.1` |
| [esbuild](https://redirect.github.com/evanw/esbuild) | patch |
`0.25.9` -> `0.25.10` |
| [uv](https://redirect.github.com/astral-sh/uv) | patch | `0.8.17` ->
`0.8.19` |

---

### Release Notes

<details>
<summary>dmarkham/enumer (enumer)</summary>

###
[`v1.6.1`](https://redirect.github.com/dmarkham/enumer/releases/tag/v1.6.1)

This release includes a new github workflow to automatically build
linux, macos and windows binaries and attaches them to the release. A
new release is the easiest way to bring back the lost binaries (a
previous change was made and they were no longer being built)

</details>

<details>
<summary>evanw/esbuild (esbuild)</summary>

###
[`v0.25.10`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#02510)

[Compare
Source](https://redirect.github.com/evanw/esbuild/compare/v0.25.9...v0.25.10)

- Fix a panic in a minification edge case
([#&#8203;4287](https://redirect.github.com/evanw/esbuild/issues/4287))

This release fixes a panic due to a null pointer that could happen when
esbuild inlines a doubly-nested identity function and the final result
is empty. It was fixed by emitting the value `undefined` in this case,
which avoids the panic. This case must be rare since it hasn't come up
until now. Here is an example of code that previously triggered the
panic (which only happened when minifying):

  ```js
  function identity(x) { return x }
  identity({ y: identity(123) })
  ```

- Fix `@supports` nested inside pseudo-element
([#&#8203;4265](https://redirect.github.com/evanw/esbuild/issues/4265))

When transforming nested CSS to non-nested CSS, esbuild is supposed to
filter out pseudo-elements such as `::placeholder` for correctness. The
[CSS nesting specification](https://www.w3.org/TR/css-nesting-1/) says
the following:

> The nesting selector cannot represent pseudo-elements (identical to
the behavior of the ':is()' pseudo-class). We’d like to relax this
restriction, but need to do so simultaneously for both ':is()' and '&',
since they’re intentionally built on the same underlying mechanisms.

However, it seems like this behavior is different for nested at-rules
such as `@supports`, which do work with pseudo-elements. So this release
modifies esbuild's behavior to now take that into account:

  ```css
  /* Original code */
  ::placeholder {
    color: red;
    body & { color: green }
    @&#8203;supports (color: blue) { color: blue }
  }

  /* Old output (with --supported:nesting=false) */
  ::placeholder {
    color: red;
  }
  body :is() {
    color: green;
  }
  @&#8203;supports (color: blue) {
     {
      color: blue;
    }
  }

  /* New output (with --supported:nesting=false) */
  ::placeholder {
    color: red;
  }
  body :is() {
    color: green;
  }
  @&#8203;supports (color: blue) {
    ::placeholder {
      color: blue;
    }
  }
  ```

</details>

<details>
<summary>astral-sh/uv (uv)</summary>

###
[`v0.8.19`](https://redirect.github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0819)

[Compare
Source](https://redirect.github.com/astral-sh/uv/compare/0.8.18...0.8.19)

Released on 2025-09-19.

##### Python

- Add CPython 3.14.0rc3
- Upgrade OpenSSL to 3.5.3

See the [python-build-standalone release
notes](https://redirect.github.com/astral-sh/python-build-standalone/releases/tag/20250918)
for more details.

##### Bug fixes

- Make `uv cache clean` parallel process safe
([#&#8203;15888](https://redirect.github.com/astral-sh/uv/pull/15888))
- Fix implied `platform_machine` marker for `win_arm64` platform tag
([#&#8203;15921](https://redirect.github.com/astral-sh/uv/pull/15921))

###
[`v0.8.18`](https://redirect.github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0818)

[Compare
Source](https://redirect.github.com/astral-sh/uv/compare/0.8.17...0.8.18)

Released on 2025-09-17.

##### Enhancements

- Add PyG packages to torch backend
([#&#8203;15911](https://redirect.github.com/astral-sh/uv/pull/15911))
- Add handling for unnamed conda environments in base environment
detection
([#&#8203;15681](https://redirect.github.com/astral-sh/uv/pull/15681))
- Allow selection of debug build interpreters
([#&#8203;11520](https://redirect.github.com/astral-sh/uv/pull/11520))
- Improve `uv init` defaults for native build backend cache keys
([#&#8203;15705](https://redirect.github.com/astral-sh/uv/pull/15705))
- Error when `pyproject.toml` target does not exist for dependency
groups
([#&#8203;15831](https://redirect.github.com/astral-sh/uv/pull/15831))
- Infer check URL from publish URL when known
([#&#8203;15886](https://redirect.github.com/astral-sh/uv/pull/15886))
- Support Gitlab CI/CD as a trusted publisher
([#&#8203;15583](https://redirect.github.com/astral-sh/uv/pull/15583))
- Add GraalPy 25.0.0 with support for Python 3.12
([#&#8203;15900](https://redirect.github.com/astral-sh/uv/pull/15900))
- Add `--no-clear` to `uv venv` to disable removal prompts
([#&#8203;15795](https://redirect.github.com/astral-sh/uv/pull/15795))
- Add conflict detection between `--only-group` and `--extra` flags
([#&#8203;15788](https://redirect.github.com/astral-sh/uv/pull/15788))
- Allow `[project]` to be missing from a `pyproject.toml`
([#&#8203;14113](https://redirect.github.com/astral-sh/uv/pull/14113))
- Always treat conda environments named `base` and `root` as base
environments
([#&#8203;15682](https://redirect.github.com/astral-sh/uv/pull/15682))
- Improve log message when direct build for `uv_build` is skipped
([#&#8203;15898](https://redirect.github.com/astral-sh/uv/pull/15898))
- Log when the cache is disabled
([#&#8203;15828](https://redirect.github.com/astral-sh/uv/pull/15828))
- Show pyx organization name after authenticating
([#&#8203;15823](https://redirect.github.com/astral-sh/uv/pull/15823))
- Use `_CONDA_ROOT` to detect Conda base environments
([#&#8203;15680](https://redirect.github.com/astral-sh/uv/pull/15680))
- Include blake2b hash in `uv publish` upload form
([#&#8203;15794](https://redirect.github.com/astral-sh/uv/pull/15794))
- Fix misleading debug message when removing environments in `uv sync`
([#&#8203;15881](https://redirect.github.com/astral-sh/uv/pull/15881))

##### Deprecations

- Deprecate `tool.uv.dev-dependencies`
([#&#8203;15469](https://redirect.github.com/astral-sh/uv/pull/15469))
- Revert "feat(ci): build loongarch64 binaries in CI
([#&#8203;15387](https://redirect.github.com/astral-sh/uv/issues/15387))"
([#&#8203;15820](https://redirect.github.com/astral-sh/uv/pull/15820))

##### Preview features

- Propagate preview flag to client for `native-auth` feature
([#&#8203;15872](https://redirect.github.com/astral-sh/uv/pull/15872))
- Store native credentials for realms with the https scheme stripped
([#&#8203;15879](https://redirect.github.com/astral-sh/uv/pull/15879))
- Use the root index URL when retrieving credentials from the native
store
([#&#8203;15873](https://redirect.github.com/astral-sh/uv/pull/15873))

##### Bug fixes

- Fix `uv sync --no-sources` not switching from editable to registry
installations
([#&#8203;15234](https://redirect.github.com/astral-sh/uv/pull/15234))
- Avoid display of an empty string when a path is the working directory
([#&#8203;15897](https://redirect.github.com/astral-sh/uv/pull/15897))
- Allow cached environment reuse with `@latest`
([#&#8203;15827](https://redirect.github.com/astral-sh/uv/pull/15827))
- Allow escaping spaces in --env-file handling
([#&#8203;15815](https://redirect.github.com/astral-sh/uv/pull/15815))
- Avoid ANSI codes in debug! messages
([#&#8203;15843](https://redirect.github.com/astral-sh/uv/pull/15843))
- Improve BSD tag construction
([#&#8203;15829](https://redirect.github.com/astral-sh/uv/pull/15829))
- Include SHA when listing lockfile changes
([#&#8203;15817](https://redirect.github.com/astral-sh/uv/pull/15817))
- Invert the logic for determining if a path is a base conda environment
([#&#8203;15679](https://redirect.github.com/astral-sh/uv/pull/15679))
- Load credentials for explicit members when lowering
([#&#8203;15844](https://redirect.github.com/astral-sh/uv/pull/15844))
- Re-add `triton` as a torch backend package
([#&#8203;15910](https://redirect.github.com/astral-sh/uv/pull/15910))
- Respect `UV_INSECURE_NO_ZIP_VALIDATION=1` in duplicate header errors
([#&#8203;15912](https://redirect.github.com/astral-sh/uv/pull/15912))

##### Documentation

- Add GitHub Actions to PyPI trusted publishing example
([#&#8203;15753](https://redirect.github.com/astral-sh/uv/pull/15753))
- Add Coiled integration documentation
([#&#8203;14430](https://redirect.github.com/astral-sh/uv/pull/14430))
- Add verbose output to the getting help section
([#&#8203;15915](https://redirect.github.com/astral-sh/uv/pull/15915))
- Document `NO_PROXY` support
([#&#8203;15816](https://redirect.github.com/astral-sh/uv/pull/15816))
- Document cache-keys for native build backends
([#&#8203;15811](https://redirect.github.com/astral-sh/uv/pull/15811))
- Add documentation for dependency group `requires-python`
([#&#8203;14282](https://redirect.github.com/astral-sh/uv/pull/14282))

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-22 19:45:25 +10:00

Symbolic link
1 line
6 B
Plaintext