Skip to content

Commit 5dafb0e

Browse files
Release 1.4.0 (#1817)
1 parent 18de156 commit 5dafb0e

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
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.
44

5+
## [1.4.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%401.4.0)
6+
* Notable changes for users:
7+
* Fixed tag color not being updated when switching to run details after updating a tag
8+
* Environment variable ENABLE_HOUSEKEEPING must be set to true (case-insensitive) to actually enable housekeeping
9+
* Use time range picker for runs start & stop filtering
10+
* Run details page has been modernized
11+
* Notable changes for developers:
12+
* Runs and QC flags timestamps now store milliseconds
13+
* Fixed users that start/stop runs not being extracted from kafka message
14+
* Fixed TF timestamps being ignored when creating QC flags
15+
* Fixed randomly failing test in FLP frontend tests
16+
* Use coalesced run time in raw SQL querries
17+
* Removed the max number of retries for kafka connection
18+
519
## [1.3.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%401.3.0)
620
* Notable changes for users:
721
* Fixed physical constants values which resulted in wrong AVG center of mass energy

database/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## [1.4.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%401.4.0)
2+
* Changes made to the database
3+
* Following columns in runs table has been changed to Datetime(3):
4+
* time_o2_start
5+
* time_trg_start
6+
* first_tf_timestamp
7+
* last_tf_timestamp
8+
* time_trg_end
9+
* time_o2_end
10+
* Following columns in quality_control_flags table has been changed to Datetime(3):
11+
* from
12+
* to
13+
* created_at
14+
* updated_at
15+
* Following columns in quality_control_flag_effective_periods table has been changed to Datetime(3):
16+
* from
17+
* to
18+
* created_at
19+
* updated_at
20+
* Added two more virtual columns to runs, rct_time_start and rct_time_end that coalesce first/last TF timestamps with run start/stop
21+
122
## [1.3.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%401.3.0)
223
* Changes made to the database
324
* Fixed physical constants values in database

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aliceo2/bookkeeping",
3-
"version": "1.3.0",
3+
"version": "1.4.0",
44
"author": "ALICEO2",
55
"scripts": {
66
"coverage": "nyc npm test && npm run coverage:report",

0 commit comments

Comments
 (0)