chore(deps): bump anyio and soupsieve for five new CVEs - #28
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
The CI dependency audit now fails on every PR. Five advisories were published after
main's last green run:Change
uv.lockonly: 12 lines, the version, sdist and wheel entries of those two packages. The new releases declare exactly the same requirements as the old ones (checked against PyPI metadata), so no other package moves.Checks run:
uv lock --checkresolves 434 packages, the same as before.uv sync --frozen --group devinstalls both with their hashes verified.uv export … | pip-auditwith the existing ignores) reports no known vulnerabilities.web_fetchpasses.Why the lockfile was edited instead of running
uv lock --upgrade-packageWith uv 0.12.2,
uv lock --upgrade-package <any package>re-resolves the whole lock and drops 114 packages. That is about 1,900 lines, mostly the dependency tree of thememory-serverextra, which conflicts withlangfuse. This happens even forsoupsievealone.A plain
uv lockanduv lock --checkare both no-ops, so the committed lock is consistent. The next dependency bump that re-resolves should expect this and check that thememory-serverfork survives.