Skip to content

Commit

Permalink
release 0.40.0 (#735)
Browse files Browse the repository at this point in the history
  • Loading branch information
graduta authored Sep 21, 2022
1 parent 0af92f1 commit ae262c9
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 13 deletions.
20 changes: 11 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,22 @@
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.40.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.40.0)
* Notable change for the user
* Notable changes for users:
* Fix synthetic run definition computation
* Fix fill efficiency on LHC fill overview
* Run definition is now displayed on run details page
* Detectors can be filled in any order in run overview filters
* Visual improvements to log creation page
* Run types are now added and can be filtered. The type for a run is shown in the details page.
* Notable changes for developers:
* Runs API:
* `GET`
* `runTypes` Run types can be fetched by id or overall.
* `runTypes` Run types are added to a run, this can be an id or object depending on how the endpoint is set.
* `POST`
* `runType` A run type in a string can now be given when starting a run or updating a run.
* `PATCH`
* `runType` A run type can be given to a run to update it. A new type will be generated if it does not exist.

## [0.39.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.39.0)
* Notable changes for users:
Expand All @@ -33,21 +43,13 @@ All notable changes to this project will be documented in this file. See [standa

## [0.38.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.38.0)
* Notable changes for users:
* Run types are now added and can be filtered. The type for a run is shown in the details page.
* `pdpWorkflowParameters, pdpBeamType, readoutCfgUri` field added to the runs detail page and can be exported.
* Time after last run and corresponding loss has been added to fill statistics
* Fix bug where some LHC fills had a negative time before first run (and associated loss)
* Fix log notification not sent with logs created automatically
* Fix bug where hovering log columns reset page to 1
* Notable changes for developers:
* Runs API:
* `GET`
`runTypes` Run types can be fetched by id or overall.
`runTypes` Run types are added to a run, this can be an id or object depending on how the endpoint is set.
* `POST`
`runType` A run type in a string can now be given when starting a run or updating a run.
* `PATCH`
* `runType` A run type can be given to a run to update it. A new type will be generated if it does not exist.
* `GET`
* `pdpWorkflowParameters, pdpBeamType, readoutCfgUri` Can now be fetched in runs and a specific run.
* `PATCH`
Expand Down
8 changes: 8 additions & 0 deletions database/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [0.40.0]
* Changes made to the database:
* Table `runs` updates:
* new column `run_type_id`
* New Table `run_types`:
* `id` - NUMBER & primary key,
* `name` - CHAR(64),

## [0.37.0]
* Changes made to the database:
* Table `runs` - added fields:
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/common/table/table.js';
*/
const aboutOverview = () => {
const data = [
{ type: 'Bookkeeping', version: '0.39.0', hostname: '-', port: '4000' },
{ type: 'Bookkeeping', version: '0.40.0', 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.39.0",
"version": "0.40.0",
"author": "ALICEO2",
"scripts": {
"coverage": "nyc npm test && npm run coverage:report",
Expand Down

0 comments on commit ae262c9

Please sign in to comment.