Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `.github/workflows/ci.yml` — pytest matrix on Python 3.9 / 3.10 /
3.11 / 3.12 / 3.13, ruff (lint + format check), mypy strict, build
sdist + wheel.
- `.github/dependabot.yml` — weekly `pip` + `github-actions`
updates.
- `.github/PULL_REQUEST_TEMPLATE.md` — Summary / Changes / API
impact / Daemon compatibility / Async compatibility / Testing /
Checklist.
Expand Down
16 changes: 7 additions & 9 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,13 @@ We follow [coordinated vulnerability disclosure](https://en.wikipedia.org/wiki/C

## Security practices in this repo

- **Dependency monitoring:** automated via Dependabot (see
`.github/dependabot.yml`).
- **Static analysis:** `golangci-lint` / `ruff` / `mypy` enforced in CI.
- **Vulnerability scanning:** `govulncheck` (Go) / `pip-audit` (Python) run
on every CI build.
- **Lockfiles:** `go.sum` / `pnpm-lock.yaml` / `pyproject.toml` are pinned
and committed.
- **Reproducible builds:** release artefacts ship with SHA-256 checksums via
goreleaser.
- **Dependency monitoring:** vulnerable dependencies are detected by
`pip-audit`, which runs on every CI build (see "Vulnerability scanning").
- **Static analysis:** `ruff` (lint + format) and `mypy --strict` are enforced
in CI (see `.github/workflows/ci.yml`).
- **Vulnerability scanning:** `pip-audit` runs on every CI build.
- **Lockfiles:** dependencies are pinned in `pyproject.toml`.
- **Reproducible builds:** wheels and sdists are built with `hatchling`.
- **No secrets in source:** API keys are configuration, not constants. Pre-
commit hooks block accidental secret commits.

Expand Down
Loading