|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project are documented in this file. The format is |
| 4 | +based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and the |
| 5 | +project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 6 | + |
| 7 | +## [1.0.0] - 2026-07-31 |
| 8 | + |
| 9 | +### Added |
| 10 | + |
| 11 | +- A pnpm workspace pinned through Corepack, with Node.js 24 and TypeScript 6. |
| 12 | +- A frontend anti-corruption layer that translates backend `completed` values |
| 13 | + into the UI model's `isCompleted` property for REST and SSE messages. |
| 14 | +- Unit and behavioural frontend tests for transport mapping and Todo state |
| 15 | + transitions. |
| 16 | +- PostgreSQL event sourcing for the Todo aggregate, including append-only |
| 17 | + events, an optimistic version check, and a query projection. |
| 18 | +- A PostgreSQL transactional outbox and retrying NATS relay for Todo domain |
| 19 | + events. |
| 20 | +- Real-PostgreSQL integration tests for atomic persistence and stale aggregate |
| 21 | + rejection. |
| 22 | +- Backend linting, database integration tests, and PostgreSQL 18 in CI. |
| 23 | +- Production-focused Node.js 24 Docker images and validated Kubernetes |
| 24 | + manifests. |
| 25 | + |
| 26 | +### Changed |
| 27 | + |
| 28 | +- Modernised the frontend to Vite 7, Redux Toolkit, current generated OpenAPI |
| 29 | + client tooling, and an nginx runtime image. |
| 30 | +- Modernised the backend to NestJS 11, Fastify 5, ESLint 10, Jest 30, pnpm 11, |
| 31 | + and TypeScript 6. |
| 32 | +- Consolidated IAM, Marketing, Todo projections, Todo events, and the outbox on |
| 33 | + PostgreSQL as the sole application database. |
| 34 | +- Changed external browser communication to REST and server-sent events. |
| 35 | +- Made NATS publishing awaitable, bounded failed-message redelivery, and |
| 36 | + isolated tracing delivery failures from business operations. |
| 37 | +- Aligned the root, backend, frontend, and frontend-test package versions at |
| 38 | + `1.0.0`. |
| 39 | + |
| 40 | +### Removed |
| 41 | + |
| 42 | +- Yarn and npm lockfiles in favour of one pnpm lockfile. |
| 43 | +- MongoDB code, dependencies, Compose services, persistent volumes, and |
| 44 | + Kubernetes resources. |
| 45 | +- The unused gRPC/protobuf generation pipeline, generated stubs, gRPC guard, |
| 46 | + and Envoy deployment resources. |
| 47 | + |
| 48 | +### Security |
| 49 | + |
| 50 | +- Updated direct dependencies and constrained vulnerable Fastify/Nest |
| 51 | + transitive packages to patched releases. |
| 52 | +- Stopped persisting request JWTs in Todo event or outbox metadata. |
0 commit comments