Skip to content

Latest commit

 

History

History
73 lines (60 loc) · 3.15 KB

File metadata and controls

73 lines (60 loc) · 3.15 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Release names follow the historic football clubs naming convention (A–Z):

Tag Club Country Founded
arsenal Arsenal England 1886
barcelona Barcelona Spain 1899
chelsea Chelsea England 1905
dortmund Borussia Dortmund Germany 1909
everton Everton England 1878
flamengo Flamengo Brazil 1895
galatasaray Galatasaray Turkey 1905
hamburg Hamburg SV Germany 1887
inter Internazionale Italy 1908
juventus Juventus Italy 1897
kaiserslautern Kaiserslautern Germany 1900
liverpool Liverpool England 1892
manchesterutd Manchester United England 1878
napoli Napoli Italy 1926
olympique Olympique Marseille France 1899
psg Paris Saint-Germain France 1970
qpr Queens Park Rangers England 1882
realmadrid Real Madrid Spain 1902
sevilla Sevilla Spain 1890
tottenham Tottenham Hotspur England 1882
union Union Berlin Germany 1966
valencia Valencia Spain 1919
werder Werder Bremen Germany 1899
xerez Xerez CD Spain 1947
youngboys Young Boys Switzerland 1898
zenit Zenit Russia 1925

[Unreleased]

Changed

  • Player entity: id (UUID) is the database primary key — @Id with GenerationType.UUID; squadNumber (Integer) carries @Column(unique=true) and serves as the natural-key route identifier for PUT and DELETE (#268)
  • PlayerDTO: id type changed from Long to UUID (#268)
  • PlayersRepository: keyed on UUID; findBySquadNumber(Integer) derived query resolves the UUID PK before update/delete operations (#268)
  • PlayersService: retrieveById accepts UUID; update and deleteBySquadNumber use findBySquadNumber to look up the UUID PK (#268)
  • PUT /players/{squadNumber} and DELETE /players/{squadNumber}: path variable changed from Long id to Integer squadNumber (#268)
  • GET /players/{id}: path variable changed from Long to UUID (#268)
  • storage/players-sqlite3.db: schema migrated to id VARCHAR(36) PRIMARY KEY, squadNumber INTEGER NOT NULL UNIQUE; 25 players preserved (#268)
  • ddl.sql and dml.sql: test schema and seed data updated for new structure (#268)

Added

  • JaCoCo check goal added to Maven build enforcing 80% instruction and branch coverage — replaces manual HTML report step in /pre-commit (#268)
  • .sonarcloud.properties: SonarCloud Automatic Analysis configuration — sources, tests, coverage exclusions aligned with codecov.yml (#293)
  • .dockerignore: added .claude/, CLAUDE.md, .coderabbit.yaml, .sonarcloud.properties, CHANGELOG.md, README.md (#293)

[1.0.0 - Arsenal] - 2026-03-29

Initial release. See README.md for complete feature list and documentation.