Skip to content

Commit 28d502d

Browse files
Update charmcraft.yaml build tools (#56)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [pip](https://redirect.github.com/pypa/pip) ([changelog](https://pip.pypa.io/en/stable/news/)) | `25.2` -> `25.3` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/pip/25.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/pip/25.2/25.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [uv](https://pypi.org/project/uv/) ([source](https://redirect.github.com/astral-sh/uv), [changelog](https://redirect.github.com/astral-sh/uv/blob/main/CHANGELOG.md)) | `0.9.4` -> `0.9.5` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/uv/0.9.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/uv/0.9.4/0.9.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>pypa/pip (pip)</summary> ### [`v25.3`](https://redirect.github.com/pypa/pip/compare/25.2...25.3) [Compare Source](https://redirect.github.com/pypa/pip/compare/25.2...25.3) </details> <details> <summary>astral-sh/uv (uv)</summary> ### [`v0.9.5`](https://redirect.github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#095) [Compare Source](https://redirect.github.com/astral-sh/uv/compare/0.9.4...0.9.5) Released on 2025-10-21. This release contains an upgrade to `astral-tokio-tar`, which addresses a vulnerability in tar extraction on malformed archives with mismatching size information between the ustar header and PAX extensions. While the `astral-tokio-tar` advisory has been graded as "high" due its potential broader impact, the *specific* impact to uv is **low** due to a lack of novel attacker capability. Specifically, uv only processes tar archives from source distributions, which already possess the capability for full arbitrary code execution by design, meaning that an attacker gains no additional capabilities through `astral-tokio-tar`. Regardless, we take the hypothetical risk of parser differentials very seriously. Out of an abundance of caution, we have assigned this upgrade an advisory: <GHSA-w476-p2h3-79g9> ##### Security - Upgrade `astral-tokio-tar` to 0.5.6 to address a parsing differential ([#&#8203;16387](https://redirect.github.com/astral-sh/uv/pull/16387)) ##### Enhancements - Add required environment marker example to hint ([#&#8203;16244](https://redirect.github.com/astral-sh/uv/pull/16244)) - Fix typo in MissingTopLevel warning ([#&#8203;16351](https://redirect.github.com/astral-sh/uv/pull/16351)) - Improve 403 Forbidden error message to indicate package may not exist ([#&#8203;16353](https://redirect.github.com/astral-sh/uv/pull/16353)) - Add a hint on `uv pip install` failure if the `--system` flag is used to select an externally managed interpreter ([#&#8203;16318](https://redirect.github.com/astral-sh/uv/pull/16318)) ##### Bug fixes - Fix backtick escaping for PowerShell ([#&#8203;16307](https://redirect.github.com/astral-sh/uv/pull/16307)) ##### Documentation - Document metadata consistency expectation ([#&#8203;15683](https://redirect.github.com/astral-sh/uv/pull/15683)) - Remove outdated aarch64 musl note ([#&#8203;16385](https://redirect.github.com/astral-sh/uv/pull/16385)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 01:00 AM and 05:59 AM, only on Tuesday ( * 1-5 * * 2 ) in timezone Etc/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/canonical/mysql-router-operators). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoiZHBlIiwibGFiZWxzIjpbIm5vdCBidWcgb3IgZW5oYW5jZW1lbnQiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 3b63614 commit 28d502d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

kubernetes/charmcraft.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ parts:
2525
# Use environment variable instead of `--break-system-packages` to avoid failing on older
2626
# versions of pip that do not recognize `--break-system-packages`
2727
# `--user` needed (in addition to `--break-system-packages`) for Ubuntu >=24.04
28-
PIP_BREAK_SYSTEM_PACKAGES=true python3 -m pip install --user --upgrade pip==25.2 # renovate: charmcraft-pip-latest
28+
PIP_BREAK_SYSTEM_PACKAGES=true python3 -m pip install --user --upgrade pip==25.3 # renovate: charmcraft-pip-latest
2929
3030
# Use uv to install poetry so that a newer version of Python can be installed if needed by poetry
31-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/0.9.4/uv-installer.sh | sh # renovate: charmcraft-uv-latest
31+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/0.9.5/uv-installer.sh | sh # renovate: charmcraft-uv-latest
3232
# poetry 2.0.0 requires Python >=3.9
3333
if ! "$HOME/.local/bin/uv" python find '>=3.9'
3434
then

machines/charmcraft.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ parts:
2525
# Use environment variable instead of `--break-system-packages` to avoid failing on older
2626
# versions of pip that do not recognize `--break-system-packages`
2727
# `--user` needed (in addition to `--break-system-packages`) for Ubuntu >=24.04
28-
PIP_BREAK_SYSTEM_PACKAGES=true python3 -m pip install --user --upgrade pip==25.2 # renovate: charmcraft-pip-latest
28+
PIP_BREAK_SYSTEM_PACKAGES=true python3 -m pip install --user --upgrade pip==25.3 # renovate: charmcraft-pip-latest
2929
3030
# Use uv to install poetry so that a newer version of Python can be installed if needed by poetry
31-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/0.9.4/uv-installer.sh | sh # renovate: charmcraft-uv-latest
31+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/0.9.5/uv-installer.sh | sh # renovate: charmcraft-uv-latest
3232
# poetry 2.0.0 requires Python >=3.9
3333
if ! "$HOME/.local/bin/uv" python find '>=3.9'
3434
then

0 commit comments

Comments
 (0)