Commit 8ca245f
ROB-429 CVEminator π€ 2026-06-23 (#533)
### Next Steps
After merge, build and release a new image:
```
# us-central1-docker.pkg.dev/genuine-flight-317411/devel/krr β list tags by date, bump latest.
# docker build -t us-central1-docker.pkg.dev/genuine-flight-317411/devel/krr:<new-tag> .
```
### Changes
| File | Change | CVE |
|------|--------|-----|
| `pyproject.toml` | `requests = ">2.32.4"` β `requests = ">=2.33.0"` |
CVE-2026-25645 |
| `poetry.lock` | `requests` 2.32.5 β 2.34.2 | CVE-2026-25645 |
| `requirements.txt` | `requests==2.32.5` β `requests==2.34.2` |
CVE-2026-25645 |
Refs:
- https://github.com/robusta-dev/krr/security/dependabot/69
- https://github.com/psf/requests/releases
### Test plan
- `docker build -t krr-cve-test -f Dockerfile .` β builds clean.
- `docker run --rm --entrypoint python krr-cve-test krr.py --help` β CLI
usage prints.
- `docker run --rm --entrypoint python krr-cve-test -c "import requests;
print(requests.__version__)"` β `2.34.2` (β₯ 2.33.0, CVE fixed).
### Human in the loop
Nothing extra needed β single-line pin bump on a battle-tested HTTP
library, no API surface change. `requirements.txt` was edited surgically
(only the `requests==` line) rather than re-exporting from poetry,
because a fresh `poetry export` re-resolves dozens of unrelated pins and
would balloon the diff.
π€ Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent 847db04 commit 8ca245f
3 files changed
Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
| 36 | + | |
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
40 | | - | |
| 40 | + | |
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
| |||
0 commit comments