chore(deps): the whole pass in one PR (django, pympp, x402 and the rest) - #107
Merged
Conversation
Bumps the minor-patch group with 3 updates: [starlette](https://github.com/Kludex/starlette), [ruff](https://github.com/astral-sh/ruff) and [ty](https://github.com/astral-sh/ty). Updates `starlette` from 1.3.1 to 1.6.0 - [Release notes](https://github.com/Kludex/starlette/releases) - [Changelog](https://github.com/Kludex/starlette/blob/main/docs/release-notes.md) - [Commits](Kludex/starlette@1.3.1...1.6.0) Updates `ruff` from 0.16.1 to 0.16.2 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.16.1...0.16.2) Updates `ty` from 0.0.66 to 0.0.69 - [Release notes](https://github.com/astral-sh/ty/releases) - [Changelog](https://github.com/astral-sh/ty/blob/main/CHANGELOG.md) - [Commits](astral-sh/ty@0.0.66...0.0.69) --- updated-dependencies: - dependency-name: starlette dependency-version: 1.6.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-patch - dependency-name: ruff dependency-version: 0.16.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-patch - dependency-name: ty dependency-version: 0.0.69 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Consolidates dependabot's group (starlette) with the django 5.2.17 bump it raised separately and everything else a lock upgrade showed outstanding: httpcore2, httpx2, packaging, pydantic-settings, pympp, rignore, sentry-sdk, setuptools, typing-inspection, x402. pympp 0.10.0 -> 0.10.1 sits on the MPP settle path, so it carries the evidence the registry asks for rather than riding along unexamined. Exactly ONE file differs across the whole package, mpp/client/transport.py, so every signing and domain-separation path is byte-identical: this is not the mppx-0.8.0 class of break. The change itself is a hardening worth taking, bounding 402 retries at three and pinning the original origin across redirects so a redirect cannot steer a payment elsewhere. django moves in our lock only. It is an optional extra declared as ">=4.0", so consumers resolve their own and are unaffected; raising that floor would wrongly exclude 4.2 LTS users carrying their own backport. Verified: ruff clean, 1841 passed, 4 skipped, 95.36% coverage against a 95% floor.
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.
Summary
Consolidates the full dependency pass into one PR so this repo needs a single merge. It carries dependabot's group (
starlette), thedjango5.2.16 to 5.2.17 bump raised separately as #108, and everything else a lock upgrade showed still outstanding:httpcore2,httpx2,packaging,pydantic-settings,pympp,rignore,sentry-sdk,setuptools,typing-inspection,x402.#108 is superseded by this and should be closed.
pympp 0.10.0 to 0.10.1, with the evidence
pymppsits on the MPP settle path, so it does not ride along unexamined. Byte-comparing the two wheels: exactly one file differs across the entire package,mpp/client/transport.py. Every signing and domain-separation path is therefore byte-identical, which is the check that separates a safe move from the mppx-0.8.0 class of break where a domain version changed inside a minor.The one change is a hardening worth taking on its own merits. It bounds 402 retries at three and records the original request origin as an extension, comparing against it across redirects, so a redirect cannot steer a payment to a different origin than the one the caller addressed.
django moves in our lock only
djangois an optional extra here, declareddjango>=4.0, plus a dev dependency. Consumers resolve their own version against that floor rather than from our lockfile, so this bump protects our CI and not theirs. The floor is deliberately left alone: raising it to 5.2.17 would exclude django 4.2 LTS users who carry their own backported fix.Type of change
Public API
None. No exported type, signature, wire format, or response shape changes. Declared dependency ranges are unchanged, so no consumer has to react.
Test plan
Run locally on this branch, all green:
uv run ruff check .anduv run pytest(1841 passed, 4 skipped, 95.36% coverage against the 95% floor). The pympp move additionally carries the wheel byte-comparison described above.Checklist