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
1 change: 0 additions & 1 deletion .coderabbit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ reviews:
- "!**/*.db"
- "!**/*.db-shm"
- "!**/*.db-wal"
- "!**/assets/**"
- "!**/postman_collections/**"
- "!**/uv.lock"

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ This project uses famous football coaches as release codenames, following an A-Z
- **BREAKING**: `DELETE /players/{player_id}` replaced by `DELETE /players/squadnumber/{squad_number}` — same rationale as above (#521)
- `update_async` and `delete_async` (UUID-based) replaced by `update_by_squad_number_async` and `delete_by_squad_number_async` in `services/player_service.py` (#521)

### Fixed

- Removed stale `assets/` folder references from `Dockerfile`,
`codecov.yml`, and `.coderabbit.yaml` after the folder was deleted
when the README was migrated to Mermaid diagrams

---

## [1.1.0 - Bielsa] - 2026-03-02
Expand Down
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ LABEL org.opencontainers.image.source="https://github.com/nanotaboada/python-sam

# Copy metadata docs for container registries (e.g.: GitHub Container Registry)
COPY README.md ./
COPY assets/ ./assets/

# Copy pre-built wheels from builder
COPY --from=builder /app/wheelhouse/ /app/wheelhouse/
Expand Down
1 change: 0 additions & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ comment:

# https://docs.codecov.com/docs/ignoring-paths
ignore:
- "^assets/.*"
- "^databases/.*"
- "^models/.*"
- "^rest/.*"
Expand Down
Loading