Commit b4870b0
deps: patch three high-severity advisories, and declare the e2e test dep
requirements.txt — the four packages Dependabot flagged, plus one it could not:
cryptography 46.0.7 -> 50.0.0 (covers all four open alerts)
pyasn1 0.6.3 -> 0.6.4
httplib2 0.22.0 -> 0.32.0
pyparsing 3.0.9 -> 3.2.5 (NOT an alert: httplib2 0.32 needs >=3.1)
That last line is probably why the PRs stopped. Dependabot security updates bump
only the vulnerable package; httplib2 0.32 also requires moving pyparsing, so no
single-package PR resolves and it gives up silently. The last Dependabot PR here
was #206 on 2026-02-11, while the alerts kept arriving — 8 are open now.
Resolution verified in a python:3.12-slim container (the app.yaml runtime), not
locally: a 3.14 venv fails on `grpcio>=1.75.1; python_version >= "3.14"`, which
does not apply to the deployed runtime.
requirements-test.txt — add pytest-playwright. tests/test_e2e.py imports
playwright and uses the `page`/`base_url` fixtures, which come from the PLUGIN,
not the bare library; without it the module fails to import and 18 tests never
collect.
Suite before and after the bump is identical: 19 passed, 2 failed. Both failures
(test_plotusers append/create) are pre-existing — verified by running the same
tests against the original pins.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01G7y9rTA1r8r8EhEnPSQenR1 parent cf37072 commit b4870b0
2 files changed
Lines changed: 9 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
| 23 | + | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
| 30 | + | |
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
| 34 | + | |
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
| |||
0 commit comments