diff --git a/CHANGELOG.md b/CHANGELOG.md index cbf20f78fa..c4e8386124 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [0.55.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.55.0) +* Notable changes for users: + * Shift endpoint can now provide QC data + * The EoS report generation API endpoint now support QC EoS report generation + * The semi-automated QC/PDP EoS report has been added + * LHC fill display now include total CTF size for good physics runs + * File size are now displayed in GB in run details and LHC fill details + +* Notable changes for developers: + * Use new headless chrome for pupeteer tests + * Updated Docker ca-certificates dependency + ## [0.54.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.54.0) * Notable changes for users: * Reply logs do not appear in EoS report anymore diff --git a/lib/public/views/About/Overview/index.js b/lib/public/views/About/Overview/index.js index 6101fb555d..9dbbda6b21 100644 --- a/lib/public/views/About/Overview/index.js +++ b/lib/public/views/About/Overview/index.js @@ -21,7 +21,7 @@ import { table } from '../../../components/common/table/table.js'; */ const aboutOverview = () => { const data = [ - { type: 'Bookkeeping', version: '0.54.0', hostname: '-', port: '4000' }, + { type: 'Bookkeeping', version: '0.55.0', hostname: '-', port: '4000' }, { type: 'NPM', version: '', hostname: '', port: '' }, ]; diff --git a/package-lock.json b/package-lock.json index aa2737c97f..4c8a9f9244 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@aliceo2/bookkeeping", - "version": "0.54.0", + "version": "0.55.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@aliceo2/bookkeeping", - "version": "0.54.0", + "version": "0.55.0", "bundleDependencies": [ "@aliceo2/web-ui", "cls-hooked", diff --git a/package.json b/package.json index 6ce530a96b..b7029f0335 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aliceo2/bookkeeping", - "version": "0.54.0", + "version": "0.55.0", "author": "ALICEO2", "scripts": { "coverage": "nyc npm test && npm run coverage:report",