From cfec265eb9f74d12bf3180eb304456311750dc9d Mon Sep 17 00:00:00 2001 From: Martin Boulais <31805063+martinboulais@users.noreply.github.com> Date: Fri, 28 Apr 2023 08:15:39 +0200 Subject: [PATCH] [release] 0.54.0 (#974) --- CHANGELOG.md | 14 ++++++++++++++ lib/public/views/About/Overview/index.js | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a723da4b8..cbf20f78fa 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. +## [0.54.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.54.0) +* Notable changes for users: + * Reply logs do not appear in EoS report anymore + * Bug of LHC fill overview infinite scroll missing data has been fixed + * The tag update access has been reestablished + * Detectors are now sorted alphabetically in run overview & details and lhc fill details in runs tab + * Fixed bug which reseted the input data of EoS report's shifter name when clicking in it while it is focused + +* Notable changes for developers: + * Dockerfile git version has been updated + * The rbac middleware now split the list of user roles if it is a string considering it as being a coma separated list + * In seeders, tag ids for ITS and FT0 has been swapped so that id sort is in the reverse way of alphabetical sort + * Adds the GH option to allow for manual triggers on release job + ## [0.53.1](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.53.1) * Notable changes for users: * EoS report now have the related runs linked to it diff --git a/lib/public/views/About/Overview/index.js b/lib/public/views/About/Overview/index.js index 3eba52a06c..6101fb555d 100644 --- a/lib/public/views/About/Overview/index.js +++ b/lib/public/views/About/Overview/index.js @@ -21,7 +21,7 @@ import { table } from '../../../components/common/table/table.js'; */ const aboutOverview = () => { const data = [ - { type: 'Bookkeeping', version: '0.53.1', hostname: '-', port: '4000' }, + { type: 'Bookkeeping', version: '0.54.0', hostname: '-', port: '4000' }, { type: 'NPM', version: '', hostname: '', port: '' }, ]; diff --git a/package-lock.json b/package-lock.json index 3966e875b1..eda77d0712 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@aliceo2/bookkeeping", - "version": "0.53.1", + "version": "0.54.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@aliceo2/bookkeeping", - "version": "0.53.1", + "version": "0.54.0", "bundleDependencies": [ "@aliceo2/web-ui", "cls-hooked", diff --git a/package.json b/package.json index dd1b4b3baf..4d2e9d0d18 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aliceo2/bookkeeping", - "version": "0.53.1", + "version": "0.54.0", "author": "ALICEO2", "scripts": { "coverage": "nyc npm test && npm run coverage:report",