Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gaudi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gaudi
Gaudi
Commits
fd2bdac3
Commit
fd2bdac3
authored
2 years ago
by
Marco Clemencic
Browse files
Options
Downloads
Plain Diff
Bump version to 36.9 and update change log
See merge request
!1402
parents
730d3e9d
b368b8f1
No related branches found
Branches containing commit
Tags
v36r9
Tags containing commit
1 merge request
!1402
Bump version to 36.9 and update change log
Pipeline
#4792554
passed
2 years ago
Stage: test
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+45
-0
45 additions, 0 deletions
CHANGELOG.md
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
docs/source/conf.py
+2
-2
2 additions, 2 deletions
docs/source/conf.py
with
48 additions
and
3 deletions
CHANGELOG.md
+
45
−
0
View file @
fd2bdac3
...
...
@@ -5,6 +5,50 @@ Project Coordinators: Marco Clemencic @clemenci, Charles Leggett @leggett
The format is based on
[
Keep a Changelog
](
http://keepachangelog.com/en/1.0.0/
)
.
## [v36r9][] - 2022-11-21
Just some minor bugfixes and a few (mostly backword compatible) changes in behaviour.
To be noted:
-
ROOT file produced by
`RootCnvSvc`
are now more reproducible
(gaudi/Gaudi!1380), thanks to a special flag from
[
TFile
](
https://root.cern/doc/master/classTFile.html#ae82abd48570a83d8aecb2af32eaa324ea31be021b9a54c95db15121c28b69f242
)
,
in case of problems or for backward compatibility the new behaviour can be
turned off with the
`RootCnvSvc`
property
`ProduceReproducibleFiles`
(dafalt
is
`true`
)
-
`RootCnvSvc`
improves compressibility of files by using larger basket sizes
(see gaudi/Gaudi!1381), the side effect is that one may notice al larger use
of VMEM from the job
-
we added a few missing
`const`
in
`LinkManager`
interface (gaudi/Gaudi!1386),
but that means that downstream code might fail to build if it was relying on
`const`
instances returning pointer to non-
`const`
objects
-
you will get a runtime error when trying to create histograms with heading or
trailing whitespaces in titles and labels (gaudi/Gaudi!1397)
## Changed
-
Create reproducible ROOT files and clean up tests (gaudi/Gaudi!1380)
-
Do not allow whitespace at front or back of histogram titles or labels (lhcb/Gaudi#3 gaudi/Gaudi!1397)
-
Optimise basket sizes created by
`RootCnvSvc`
(gaudi/Gaudi!1381)
-
Avoid unneccessary work if tests are not requested (gaudi/Gaudi!1391)
-
Use Gitlab CI DAG pipelines (gaudi/Gaudi!1393)
-
More const-correct
`LinkManager`
interface (gaudi/Gaudi!1386)
## Added
-
Add test build of public headers (again) (gaudi/Gaudi!1394)
-
Add support for
`.json`
options to
`Gaudi.exe`
(gaudi/Gaudi!1388)
-
Add output dependency checks to
`AvalancheSchedulerSvc`
(gaudi/Gaudi!1384)
## Fixed
-
Fixes to support builds on ARM processors (gaudi/Gaudi!1396)
-
Fix use of deprecated Boost headers (gaudi/Gaudi!1400)
-
Fix
`UnboundLocalError`
in
`GaudiKernel/Configurable.py`
(gaudi/Gaudi!1399)
-
Fix detection of platform specific reference files (gaudi/Gaudi#236 gaudi/Gaudi!1398)
-
Fix access to Python binary modules from the build tree (gaudi/Gaudi#240 gaudi/Gaudi!1392)
-
Fix TProfile creation in ROOT monitoring sink when SetDefaultSumw2 is used (gaudi/Gaudi!1390)
-
Use actual counter type when registering to monitoring (gaudi/Gaudi!1389)
-
Release the GIL when bootstrapping with
`Gaudi.Application`
(gaudi/Gaudi!1387)
## [v36r8][] - 2022-10-12
Minor release to pick up some fixes for ATLAS and LHCb.
...
...
@@ -954,6 +998,7 @@ Details about old versions of the project can be found in the
[
GaudiRelease/doc
](
GaudiRelease/doc
)
.
[
v36r9
]:
https://gitlab.cern.ch/gaudi/Gaudi/-/releases/v36r9
[
v36r8
]:
https://gitlab.cern.ch/gaudi/Gaudi/-/releases/v36r8
[
v36r7
]:
https://gitlab.cern.ch/gaudi/Gaudi/-/releases/v36r7
[
v36r6
]:
https://gitlab.cern.ch/gaudi/Gaudi/-/releases/v36r6
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
1
−
1
View file @
fd2bdac3
...
...
@@ -80,7 +80,7 @@ Maintainer's guide: `<https://twiki.cern.ch/twiki/bin/view/LHCb/MaintainGaudiCMa
cmake_minimum_required
(
VERSION 3.15
)
project
(
Gaudi VERSION 36.
8
project
(
Gaudi VERSION 36.
9
LANGUAGES CXX
DESCRIPTION
"Gaudi Software Framework"
HOMEPAGE_URL
"https://cern.ch/gaudi"
)
...
...
This diff is collapsed.
Click to expand it.
docs/source/conf.py
+
2
−
2
View file @
fd2bdac3
...
...
@@ -23,9 +23,9 @@ copyright = "1998-2021, CERN for the benefit of the LHCb and ATLAS collaboration
author
=
"
The Gaudi Developers
"
# The short X.Y version
version
=
"
36.
8
"
version
=
"
36.
9
"
# The full version, including alpha/beta/rc tags
release
=
"
v36r
8
"
release
=
"
v36r
9
"
# -- General configuration ---------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment