File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,21 +46,42 @@ This project uses famous football stadiums (A-Z) that hosted FIFA World Cup matc
4646
4747### Changed
4848
49- - Upgrade AutoMapper from 14.x to 16.1.1 to resolve high-severity security vulnerability GHSA-rvv3 -g6hj-g44x (#414 )
50- - Rename test methods to follow Microsoft .NET naming standard (#396 )
51-
5249### Deprecated
5350
5451### Removed
5552
5653### Fixed
5754
55+ ### Security
56+
57+ ---
58+
59+ ## [ 2.0.0 - centenario] - 2026-03-18
60+
61+ ### Changed
62+
63+ - Refactor error responses to use RFC 7807 Problem Details (#418 )
64+ - Add ` /squadNumber/ ` path segment to PUT and DELETE routes — ** breaking change** (#418 )
65+ - Extract ` NotFoundTitle ` constant and remove redundant null-conditional operator (#418 )
66+ - Rename test methods to follow Microsoft .NET naming standard (#396 )
67+ - Upgrade AutoMapper from 14.x to 16.1.1 to resolve high-severity security vulnerability GHSA-rvv3 -g6hj-g44x (#414 )
68+ - Bump FluentAssertions from 8.8.0 to 8.9.0 (#417 )
69+ - Bump coverlet.collector from 8.0.0 to 8.0.1 (#419 )
70+ - Bump softprops/action-gh-release from 2.6.0 to 2.6.1 (#416 )
71+
72+ ### Fixed
73+
74+ - Add squad number mismatch guard in ` PutAsync ` and update README (#418 )
75+ - Strengthen test assertions for Problem Details responses (#418 )
5876- Fix broken 201 assertion in controller test for ` Post_Players_NonExisting ` (#396 )
5977- Add missing edge case tests for ` UpdateAsync ` , ` DeleteAsync ` , and
6078 ` DateOfBirth ` boundary validation (#396 )
6179
6280### Security
6381
82+ - Sanitize player data before logging to prevent log forging
83+ - Upgrade AutoMapper from 14.x to 16.1.1 to resolve high-severity security vulnerability GHSA-rvv3 -g6hj-g44x (#414 )
84+
6485---
6586
6687## [ 1.1.0 - bernabeu] - 2026-02-09
Original file line number Diff line number Diff line change @@ -330,14 +330,16 @@ To create a new release, follow this workflow:
330330
331331#### 1. Update CHANGELOG.md
332332
333- First, document your changes in [ CHANGELOG.md] ( CHANGELOG.md ) :
333+ First, create a ` release/ ` branch and document your changes in [ CHANGELOG.md] ( CHANGELOG.md ) :
334334
335335``` bash
336+ git checkout -b release/1.0.0-azteca
336337# Move items from [Unreleased] to new release section
337338# Example: [1.0.0 - azteca] - 2026-01-22
338339git add CHANGELOG.md
339340git commit -m " docs: prepare changelog for v1.0.0-azteca release"
340- git push
341+ git push origin release/1.0.0-azteca
342+ # Open a PR, get it reviewed, and merge into master
341343```
342344
343345#### 2. Create and Push Tag
You can’t perform that action at this time.
0 commit comments