From 83e7835d4882b65f4f6f528c59463beee510cf80 Mon Sep 17 00:00:00 2001 From: Martin Boulais <31805063+martinboulais@users.noreply.github.com> Date: Thu, 23 Nov 2023 12:40:57 +0100 Subject: [PATCH] Release 0.72.0 (#1247) * Release 0.72.0 * Improve changelog --- CHANGELOG.md | 21 +++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6271acc39c..b74d39b240 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ 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.72.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.72.0) +* Notable changes for users: + * Added EoR reason chart + * run-detail page use runNumber instead of runId as run identifier, using runId is still possible but not recommended + * Replace nav bar LHC Fills tab with LHC dropdown with two options: + * LHC Fills + * LHC Periods + * Fixed the run order in LHC fill API when some of the runs have EoR reason + * User can now choose the date range on which statistics must be applied, using a time picker with pre-defined options + * Fixed misbehaving in chart fill conditions + * add LHC Period overview page from RCT and the corresponding API +* Notable change for developers: + * existing endpoints which used :runId, use :runNumber now instead + * endpoint GET /api/runs/:runId moved to GET /api/legacy/runs/:runId + * use only one method in model to toggle nav bar dropdowns + * change links id in https://github.com/AliceO2Group/Bookkeeping/pull/1240/files#diff-90f47b96a0752a7ea8dbe41825baf3804e1228ab28f024b599524e0d0ea2c551R47-R49, because of test failure after adding LHC Fills as pageLink + * A time range picker has been created + * Updated the way docker compose is started + * formatTimestamp function now properly display 0 timestamp value + * refactor docs: scalar types to lowercase + ## [0.71.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.71.0) * Notable changes for users: * Only admin is authorised to create and delete tags diff --git a/package-lock.json b/package-lock.json index 968f34e1ad..c92706acb0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@aliceo2/bookkeeping", - "version": "0.71.0", + "version": "0.72.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@aliceo2/bookkeeping", - "version": "0.71.0", + "version": "0.72.0", "bundleDependencies": [ "@aliceo2/web-ui", "cls-hooked", diff --git a/package.json b/package.json index 3840ed906b..2d273ce762 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aliceo2/bookkeeping", - "version": "0.71.0", + "version": "0.72.0", "author": "ALICEO2", "scripts": { "coverage": "nyc npm test && npm run coverage:report",