From 6e3298baca5a885fb50aba86c5989a2c6999da0d Mon Sep 17 00:00:00 2001 From: Nano Taboada <87288+nanotaboada@users.noreply.github.com> Date: Sun, 12 Apr 2026 13:21:45 -0300 Subject: [PATCH 1/3] docs(changelog): prepare release notes for v1.1.1-cannavaro Co-authored-by: Claude Sonnet 4.6 --- CHANGELOG.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e22578..dad5da3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +### Changed + +### Fixed + +### Removed + +## [1.1.1 - Cannavaro] - 2026-04-12 + +### Added + - CodeQL Advanced workflow (`.github/workflows/codeql.yml`) for static security analysis on push, pull request, and weekly schedule; covers `actions` and `rust` languages (#77) - Coverage reporting with `cargo-tarpaulin` and Codecov integration (#42) - `codecov.yml` with 80% minimum threshold on `src/services/`, `src/routes/`, `src/repositories/` (#42) @@ -107,6 +117,7 @@ Release codenames follow an A-Z sequence using Ballon d'Or award nominees surnam | Y | `yayatoure` | Yaya Touré | Ivory Coast | 2011, 2013 | | Z | `zlatan` | Zlatan Ibrahimović | Sweden | 2013, 2015 | -[unreleased]: https://github.com/nanotaboada/rust-samples-rocket-restful/compare/v1.1.0-benzema...HEAD +[unreleased]: https://github.com/nanotaboada/rust-samples-rocket-restful/compare/v1.1.1-cannavaro...HEAD +[1.1.1 - Cannavaro]: https://github.com/nanotaboada/rust-samples-rocket-restful/compare/v1.1.0-benzema...v1.1.1-cannavaro [1.1.0 - Benzema]: https://github.com/nanotaboada/rust-samples-rocket-restful/compare/v1.0.0-aguero...v1.1.0-benzema [1.0.0 - Agüero]: https://github.com/nanotaboada/rust-samples-rocket-restful/releases/tag/v1.0.0-aguero From 82f5aa6d9ccdce0d37aca0477301e61d6e08b0bd Mon Sep 17 00:00:00 2001 From: Nano Taboada <87288+nanotaboada@users.noreply.github.com> Date: Sun, 12 Apr 2026 13:28:24 -0300 Subject: [PATCH 2/3] docs(readme): fix PUT response code in API reference table Co-authored-by: Claude Sonnet 4.6 --- CHANGELOG.md | 2 ++ README.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dad5da3..602d01b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- API Reference table in `README.md`: corrected `PUT /players/squadnumber/:squadnumber` response from `200 OK` to `204 No Content` + ### Removed ## [1.1.1 - Cannavaro] - 2026-04-12 diff --git a/README.md b/README.md index b32bd65..eaea242 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ graph RL | `GET` | `/players/:id` | Get player by ID | `200 OK` | | `GET` | `/players/squadnumber/:squadnumber` | Get player by squad number | `200 OK` | | `POST` | `/players` | Create new player | `201 Created` | -| `PUT` | `/players/squadnumber/:squadnumber` | Update player by squad number | `200 OK` | +| `PUT` | `/players/squadnumber/:squadnumber` | Update player by squad number | `204 No Content` | | `DELETE` | `/players/squadnumber/:squadnumber` | Remove player by squad number | `204 No Content` | | `GET` | `/health` | Health check | `200 OK` | From 5e21b27cc4e596c674f093966d77009b12c92c69 Mon Sep 17 00:00:00 2001 From: Nano Taboada <87288+nanotaboada@users.noreply.github.com> Date: Sun, 12 Apr 2026 14:42:37 -0300 Subject: [PATCH 3/3] docs(changelog): move README fix entry to 1.1.1 Fixed section Co-authored-by: Claude Sonnet 4.6 --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 602d01b..62bfd2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,8 +13,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- API Reference table in `README.md`: corrected `PUT /players/squadnumber/:squadnumber` response from `200 OK` to `204 No Content` - ### Removed ## [1.1.1 - Cannavaro] - 2026-04-12 @@ -37,6 +35,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- API Reference table in `README.md`: corrected `PUT /players/squadnumber/:squadnumber` response from `200 OK` to `204 No Content` + ### Removed - Pre-seeded `storage/players-sqlite3.db` file and `storage/` directory from repository; Diesel `embed_migrations!()` initialises and seeds the database on first start (#79)