Skip to content

Commit

Permalink
Release 1.4.0 (#1817)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinboulais authored Dec 12, 2024
1 parent 18de156 commit 5dafb0e
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
21 changes: 21 additions & 0 deletions database/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 5dafb0e

Please sign in to comment.