diff --git a/CHANGELOG.md b/CHANGELOG.md index af719d8098..ca76d0580d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ 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.91.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.91.0) +* Notable changes for users: + * Added a new tab in runs details to display trigger counters table + * Disable sorting reconstructedEventsCount and outputSize on DataPasses overview pages + * Added iconBan to RCT runs overviews in case there is no QC flag assigned to detector and user has no permission to add one + * Added gRPC interface to create/update trigger counters + * Changed display of Bad runs in Runs per data/simulation pass views and disabled QC management for them +* Notable change for developers: + * Several improvements has been done on frontend suite: + * Set default navigation timeout to 5s + * Set default timeout (except for navigation) to 1.5s + * Removed waitForNetworkIdleAndRedraw and improved tests incorrectly waiting for navigation + * Replaced checkMismatchingUrlParam by easier to use function expectUrlParams + * Removed function validateElement and replaced its calls by native waitForSelector + * Refactored ML client to fetch data passes data n CSV format + * Refactored ML synchronization to work with lastSeen instead of lastRunNumber + * Factorized QC flags breadcrumbs + ## [0.90.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.90.0) * Notable changes for users: * Ordered magnets input Dipole first then solenoid in RC daily meeting template and SL EoS report diff --git a/database/CHANGELOG.md b/database/CHANGELOG.md index 2cf095e43a..f8666c1b73 100644 --- a/database/CHANGELOG.md +++ b/database/CHANGELOG.md @@ -1,3 +1,7 @@ +## [0.91.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.91.0) +* Changes made to the database + * Added data_pass_versions table + ## [0.90.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.90.0) * Changes made to the database * Added origin column to quality_control_flags table diff --git a/package-lock.json b/package-lock.json index 0ab9c3d9d0..4deb9d6a4c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@aliceo2/bookkeeping", - "version": "0.90.0", + "version": "0.91.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@aliceo2/bookkeeping", - "version": "0.90.0", + "version": "0.91.0", "bundleDependencies": [ "@aliceo2/web-ui", "@grpc/grpc-js", diff --git a/package.json b/package.json index eaf5e982f7..75119741de 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aliceo2/bookkeeping", - "version": "0.90.0", + "version": "0.91.0", "author": "ALICEO2", "scripts": { "coverage": "nyc npm test && npm run coverage:report",