From ee20e71fc8f45f02b304e31bf414ff0437ab6cb4 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Mon, 11 Nov 2024 11:00:27 +0100 Subject: [PATCH 1/2] Improve release notes formatting Signed-off-by: Leandro Lucarella --- RELEASE_NOTES.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 9449f241e..8c31700d4 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -15,14 +15,14 @@ actor = ConfigManagingActor(config_files=["config.toml"]) ``` -* The `MovingWindow` now take all arguments as keyword-only to avoid mistakes. -* The `frequenz-quantities` dependency was bumped to `1.0.0rc3`. -* The `ComponentMetricsRequest` now produces a channel name without the `start_date` if the `start_date` is `None`. If you are somehow relying on the old behavior, please update your code. +- The `MovingWindow` now take all arguments as keyword-only to avoid mistakes. +- The `frequenz-quantities` dependency was bumped to `1.0.0rc3`. +- The `ComponentMetricsRequest` now produces a channel name without the `start_date` if the `start_date` is `None`. If you are somehow relying on the old behavior, please update your code. ## New Features - The `ConfigManagingActor` can now take multiple configuration files as input, allowing to override default configurations with custom configurations. -* A new `frequenz.sdk.config.load_config()` function is available to load configurations using `marshmallow_dataclass`es with correct type hints. +- A new `frequenz.sdk.config.load_config()` function is available to load configurations using `marshmallow_dataclass`es with correct type hints. - Implement and standardize logging configuration with the following changes: * Add `LoggerConfig` and `LoggingConfig` to standardize logging configuration. * Create `LoggingConfigUpdater` to handle runtime config updates. From 9e43e0eb503c5edf2a2aa894e8dc81b03f3b3928 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Mon, 11 Nov 2024 11:01:50 +0100 Subject: [PATCH 2/2] Prepare release notes for rc1100 Signed-off-by: Leandro Lucarella --- RELEASE_NOTES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 8c31700d4..1cc6dae6d 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,7 +2,7 @@ ## Summary - +This release focus on improving the config management, but also introduces other minor improvements and fixes an important bug. ## Upgrading