diff --git a/.changelogs/1.1.1/release_meta.yml b/.changelogs/1.1.1/release_meta.yml index c19765d..72cd522 100644 --- a/.changelogs/1.1.1/release_meta.yml +++ b/.changelogs/1.1.1/release_meta.yml @@ -1 +1 @@ -date: TBD +date: 2025-04-20 diff --git a/CHANGELOG.md b/CHANGELOG.md index be1b7f4..b9210d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,29 @@ 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.1] - 2025-04-20 + +### Added + +- Providing the API upstream error message when migration fails in debug mode (by @gyptazy) [#205] + +### Changed + +- Change the default behaviour of the daemon mode to active [#176] +- Change the default banalcing mode to used instead of assigned [#180] + +### Fixed + +- Set cpu_used to the cpu usage, which is a percent, times the total number of cores to get a number where guest cpu_used can be added to nodes cpu_used and be meaningful (by @glitchvern) [#195] +- Fix tag evluation for VMs for being ignored for further balancing [#163] +- Honor the value when balancing should not be performed and stop balancing [#174] +- allow the use of minutes instead of hours and only accept hours or minutes in the format (by @glitchvern) [#187] +- Remove hard coded memory usage from lowest usage node and use method and mode specified in configuration instead (by @glitchvern) [#197] +- Fix the guest type relationship in the logs when a migration job failed (by @gyptazy) [#204] +- Requery a guest if that running guest reports 0 cpu usage (by @glitchvern) [#200] +- Fix Python path for Docker entrypoint (by @crandler) [#170] +- Improve logging verbosity of messages that had a wrong servity [#165] + ## [1.1.0] - 2025-04-01 diff --git a/README.md b/README.md index 8cb5638..1f84db9 100644 --- a/README.md +++ b/README.md @@ -160,6 +160,7 @@ docker run -it --rm -v $(pwd)/proxlb.yaml:/etc/proxlb/proxlb.yaml proxlb | Version | Image | |------|:------:| | latest | cr.gyptazy.com/proxlb/proxlb:latest | +| v1.1.1 | cr.gyptazy.com/proxlb/proxlb:v1.1.1 | | v1.1.0 | cr.gyptazy.com/proxlb/proxlb:v1.1.0 | | v1.0.6 | cr.gyptazy.com/proxlb/proxlb:v1.0.6 | | v1.0.5 | cr.gyptazy.com/proxlb/proxlb:v1.0.5 | diff --git a/debian/changelog b/debian/changelog index 36c98e1..f945fb0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,15 @@ proxlb (1.1.1) stable; urgency=medium * Fix tag evluation for VMs for being ignored for further balancing. (Closes: #163) * Improve logging verbosity of messages that had a wrong servity. (Closes: #165) + * Providing the API upstream error message when migration fails in debug mode (Closes: #205) + * Change the default behaviour of the daemon mode to active. (Closes: #176) + * Change the default banalcing mode to used instead of assigned. (Closes: #180) + * Set cpu_used to the cpu usage, which is a percent, times the total number of cores to get a number where guest cpu_used can be added to nodes cpu_used and be meaningful. (Closes: #195) + * Honor the value when balancing should not be performed and stop balancing. (Closes: #174) + * Allow the use of minutes instead of hours and only accept hours or minutes in the format. (Closes: #187) + * Remove hard coded memory usage from lowest usage node and use method and mode specified in configuration instead. (Closes: #197) + * Fix the guest type relationship in the logs when a migration job failed. (Closes: #204) + * Requery a guest if that running guest reports 0 cpu usage. (Closes: #200) -- Florian Paul Azim Hoberg Tue, 1 Apr 2025 18:55:02 +0000