From 5dafb0e2e0379dc108c6aa92155daf57ea062c40 Mon Sep 17 00:00:00 2001 From: Martin Boulais <31805063+martinboulais@users.noreply.github.com> Date: Thu, 12 Dec 2024 14:27:18 +0100 Subject: [PATCH] Release 1.4.0 (#1817) --- CHANGELOG.md | 14 ++++++++++++++ database/CHANGELOG.md | 21 +++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 38 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03a5f684fe..df42f47dbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ 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. +## [1.4.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%401.4.0) +* Notable changes for users: + * Fixed tag color not being updated when switching to run details after updating a tag + * Environment variable ENABLE_HOUSEKEEPING must be set to true (case-insensitive) to actually enable housekeeping + * Use time range picker for runs start & stop filtering + * Run details page has been modernized +* Notable changes for developers: + * Runs and QC flags timestamps now store milliseconds + * Fixed users that start/stop runs not being extracted from kafka message + * Fixed TF timestamps being ignored when creating QC flags + * Fixed randomly failing test in FLP frontend tests + * Use coalesced run time in raw SQL querries + * Removed the max number of retries for kafka connection + ## [1.3.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%401.3.0) * Notable changes for users: * Fixed physical constants values which resulted in wrong AVG center of mass energy diff --git a/database/CHANGELOG.md b/database/CHANGELOG.md index 527caeed98..3c4e8f1e57 100644 --- a/database/CHANGELOG.md +++ b/database/CHANGELOG.md @@ -1,3 +1,24 @@ +## [1.4.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%401.4.0) +* Changes made to the database + * Following columns in runs table has been changed to Datetime(3): + * time_o2_start + * time_trg_start + * first_tf_timestamp + * last_tf_timestamp + * time_trg_end + * time_o2_end + * Following columns in quality_control_flags table has been changed to Datetime(3): + * from + * to + * created_at + * updated_at + * Following columns in quality_control_flag_effective_periods table has been changed to Datetime(3): + * from + * to + * created_at + * updated_at + * Added two more virtual columns to runs, rct_time_start and rct_time_end that coalesce first/last TF timestamps with run start/stop + ## [1.3.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%401.3.0) * Changes made to the database * Fixed physical constants values in database diff --git a/package-lock.json b/package-lock.json index 27ae3d9386..367842d880 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@aliceo2/bookkeeping", - "version": "1.3.0", + "version": "1.4.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@aliceo2/bookkeeping", - "version": "1.3.0", + "version": "1.4.0", "bundleDependencies": [ "@aliceo2/web-ui", "@grpc/grpc-js", diff --git a/package.json b/package.json index 9ee4e60856..58cf75db21 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aliceo2/bookkeeping", - "version": "1.3.0", + "version": "1.4.0", "author": "ALICEO2", "scripts": { "coverage": "nyc npm test && npm run coverage:report",