diff --git a/CHANGELOG.md b/CHANGELOG.md index d7154bf..a7bbf38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. +## 4.5.0 (2025-11-07) + +### Added + +- Add `storm::webdav::scitags_daemon` parameter to WebDAV to select which daemon to use for SciTags + +### Fixed + +- Fix MySQL module version to the last one that works + +### Removed + +- Remove two unused Environment variables in StoRM WebDAV systemd unit (`STORM_WEBDAV_OUT` and `STORM_WEBDAV_ERR`) + ## 4.4.0 (2025-05-07) ### Added diff --git a/REFERENCE.md b/REFERENCE.md index 23a919c..4a9b933 100644 --- a/REFERENCE.md +++ b/REFERENCE.md @@ -1310,6 +1310,7 @@ The following parameters are available in the `storm::webdav` class: * [`voms_cache_enabled`](#-storm--webdav--voms_cache_enabled) * [`voms_cache_entry_lifetime_sec`](#-storm--webdav--voms_cache_entry_lifetime_sec) * [`scitags_enabled`](#-storm--webdav--scitags_enabled) +* [`scitags_daemon`](#-storm--webdav--scitags_daemon) * [`scitags_collector`](#-storm--webdav--scitags_collector) * [`nginx_enabled`](#-storm--webdav--nginx_enabled) @@ -1583,6 +1584,12 @@ Data type: `Boolean` Enable SciTags flow marking +##### `scitags_daemon` + +Data type: `String` + +The daemon to use for SciTags (e.g. 'flowd' or 'flowd-go'). Optional. + ##### `scitags_collector` Data type: `Optional[String]` diff --git a/manifests/webdav.pp b/manifests/webdav.pp index 69743d2..807b2fc 100644 --- a/manifests/webdav.pp +++ b/manifests/webdav.pp @@ -147,6 +147,9 @@ # @param scitags_enabled # Enable SciTags flow marking # +# @param scitags_daemon +# The daemon to use for SciTags (e.g. 'flowd' or 'flowd-go'). Optional. +# # @param scitags_collector # Remote address of SciTags collector. Optional. # diff --git a/metadata.json b/metadata.json index bd717bd..5c9d845 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "cnafsd-storm", - "version": "4.4.0", + "version": "4.5.0", "author": "storm", "summary": "StoRM Puppet module", "license": "Apache-2.0",