Skip to content

Commit

Permalink
[O2B-484] Fix C++ integration by bringing back runQuality to EndRun D…
Browse files Browse the repository at this point in the history
…TO (#514)

* Bumps patch version
* Adds changelog
* Brings back runQuality to EndRunDto
  • Loading branch information
awegrzyn authored Feb 16, 2022
1 parent 2cf9c67 commit 3b2a3f5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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.21.1](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.21.1)
* Notable changes for developers:
* Adds `run_quality` back to validation of `EndRun` request to ensure backwards compatibility;

## [0.21.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.21.0)
* Notable changes for users:
* Run Quality is now displayed in both `Run-Statistics` and `Run-Details` pages;
Expand Down
1 change: 1 addition & 0 deletions lib/domain/dtos/EndRunDto.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const Joi = require('joi');
const BodyDto = Joi.object({
timeO2End: Joi.date(),
timeTrgEnd: Joi.date(),
runQuality: Joi.string().valid('good', 'bad', 'test').optional(),
});

const QueryDto = Joi.object({
Expand Down
2 changes: 1 addition & 1 deletion lib/public/views/About/Overview/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import table from '../../../components/Table/index.js';
*/
const aboutOverview = (model) => {
const data = [
{ type: 'Bookkeeping', version: '0.20.0', hostname: '-', port: '4000' },
{ type: 'Bookkeeping', version: '0.21.1', hostname: '-', port: '4000' },
{ type: 'NPM', version: '', hostname: '', port: '' },
];

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": "0.21.0",
"version": "0.21.1",
"author": "ALICEO2",
"scripts": {
"coverage": "nyc npm test && npm run coverage:report",
Expand Down

0 comments on commit 3b2a3f5

Please sign in to comment.