Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.4.0 #1817

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading