diff --git a/CHANGELOG.md b/CHANGELOG.md index 00fb7f7..eded6a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.1.0] + +- Fix TTL bug resulting in the data retention policy not being followed. +- Add migration to fix TTL on existing database entries. +- Add a basic stats page showing all booking counts per office, per day. +- Improved usability and accessibility of login journey. +- Increase test coverage of critical path to booking. + ## [2.0.2] - Add check for user before attempting to retrieve office details. diff --git a/client/package.json b/client/package.json index 8e1fd7d..496006a 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "office-booker", - "version": "0.1.0", + "version": "2.1.0", "private": true, "scripts": { "start": "react-scripts start", diff --git a/server/app.ts b/server/app.ts index 2b1db85..472f6a7 100644 --- a/server/app.ts +++ b/server/app.ts @@ -47,7 +47,7 @@ export const configureApp = (config: Config) => { app.get('/api/config', (req, res, next) => { try { const clientConfig = { - version: '2.0.0', + version: '2.1.0', showTestBanner: config.showTestBanner, auth: config.authConfig.type === 'cognito'