diff --git a/.changelogs/1.1.3/189_add_reload_function.yml b/.changelogs/1.1.3/189_add_reload_function.yml index f71de13..804c14b 100644 --- a/.changelogs/1.1.3/189_add_reload_function.yml +++ b/.changelogs/1.1.3/189_add_reload_function.yml @@ -1,2 +1,2 @@ -feature: +added: - Add relaod (SIGHUP) function to ProxLB to reload the configuration (by @gyptazy). [#189] diff --git a/.changelogs/1.1.3/232_align_maintenance_mode_proxmox_ha.yml b/.changelogs/1.1.3/232_align_maintenance_mode_proxmox_ha.yml index 37a7c82..e3d6217 100644 --- a/.changelogs/1.1.3/232_align_maintenance_mode_proxmox_ha.yml +++ b/.changelogs/1.1.3/232_align_maintenance_mode_proxmox_ha.yml @@ -1,2 +1,2 @@ -feature: +fixed: - Align maintenance mode with Proxmox HA maintenance mode (by @gyptazy). [#232] diff --git a/.changelogs/1.1.3/239_add_optional_delay_time_until_service_starts.yml b/.changelogs/1.1.3/239_add_optional_delay_time_until_service_starts.yml index 3d711dd..ddab254 100644 --- a/.changelogs/1.1.3/239_add_optional_delay_time_until_service_starts.yml +++ b/.changelogs/1.1.3/239_add_optional_delay_time_until_service_starts.yml @@ -1,2 +1,2 @@ -feature: +added: - Add optional wait time parameter to delay execution until the service takes action (by @gyptazy). #239 diff --git a/.changelogs/1.1.3/241_make_amount_of_parallel_migrations_configurable.yml b/.changelogs/1.1.3/241_make_amount_of_parallel_migrations_configurable.yml index 33ab4f3..bbda8d0 100644 --- a/.changelogs/1.1.3/241_make_amount_of_parallel_migrations_configurable.yml +++ b/.changelogs/1.1.3/241_make_amount_of_parallel_migrations_configurable.yml @@ -1,2 +1,2 @@ -feature: +added: - Make the amount of parallel migrations configurable (by @gyptazy). [#241] diff --git a/.changelogs/1.1.3/94_cpu_balancing_use_avg_instead_current_consumption.yml b/.changelogs/1.1.3/94_cpu_balancing_use_avg_instead_current_consumption.yml index 4f736c9..d6258ea 100644 --- a/.changelogs/1.1.3/94_cpu_balancing_use_avg_instead_current_consumption.yml +++ b/.changelogs/1.1.3/94_cpu_balancing_use_avg_instead_current_consumption.yml @@ -1,2 +1,2 @@ -feature: +changed: - Use the average CPU consumption of a guest within the last 60 minutes instead of the current CPU usage (by @philslab-ninja & @gyptazy). [#94] diff --git a/.changelogs/1.1.3/release_meta.yml b/.changelogs/1.1.3/release_meta.yml index c19765d..f4f0ec8 100644 --- a/.changelogs/1.1.3/release_meta.yml +++ b/.changelogs/1.1.3/release_meta.yml @@ -1 +1 @@ -date: TBD +date: 2025-06-19 diff --git a/CHANGELOG.md b/CHANGELOG.md index 95c5ebd..81165ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.3] - 2025-06-29 + +### Added + +- Add relaod (SIGHUP) function to ProxLB to reload the configuration (by @gyptazy). [#189] +- Add optional wait time parameter to delay execution until the service takes action (by @gyptazy). [#239] +- Make the amount of parallel migrations configurable (by @gyptazy). [#241] + +### Changed + +- Use the average CPU consumption of a guest within the last 60 minutes instead of the current CPU usage (by @philslab-ninja & @gyptazy). [#94] + +### Fixed + +- Align maintenance mode with Proxmox HA maintenance mode (by @gyptazy). [#232] + + ## [1.1.2] - 2025-05-13 ### Added diff --git a/debian/changelog b/debian/changelog index 48cabef..2a6e07e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,12 @@ -proxlb (1.1.3~beta1) stable; urgency=medium +proxlb (1.1.3) stable; urgency=medium - * Build for 1.1.3 beta. + * Add relaod (SIGHUP) function to ProxLB to reload the configuration. (Closes: #189) + * Add optional wait time parameter to delay execution until the service takes action. (Closes: #239) + * Make the amount of parallel migrations configurable. (Closes: #241) + * Use the average CPU consumption of a guest within the last 60 minutes instead of the current CPU usage. (Closes: #94) + * Align maintenance mode with Proxmox HA maintenance mode. (Closes: #232) - -- Florian Paul Azim Hoberg Thu, 22 May 2025 06:58:12 +0000 + -- Florian Paul Azim Hoberg Thu, 19 Jun 2025 09:10:43 +0000 proxlb (1.1.2) stable; urgency=medium diff --git a/proxlb/utils/version.py b/proxlb/utils/version.py index 7a56860..daf03d5 100644 --- a/proxlb/utils/version.py +++ b/proxlb/utils/version.py @@ -3,5 +3,5 @@ __app_desc__ = "A DRS alike loadbalancer for Proxmox clusters." __author__ = "Florian Paul Azim Hoberg " __copyright__ = "Copyright (C) 2025 Florian Paul Azim Hoberg (@gyptazy)" __license__ = "GPL-3.0" -__version__ = "1.1.3b" +__version__ = "1.1.3" __url__ = "https://github.com/gyptazy/ProxLB" diff --git a/setup.py b/setup.py index a358cfd..f1b8108 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="proxlb", - version="1.1.3b", + version="1.1.3", description="A DRS alike loadbalancer for Proxmox clusters.", long_description="An advanced DRS alike loadbalancer for Proxmox clusters that also supports maintenance modes and affinity/anti-affinity rules.", author="Florian Paul Azim Hoberg",