mirror of
https://github.com/gyptazy/ProxLB.git
synced 2026-04-05 20:31:57 +02:00
@@ -1 +1 @@
|
|||||||
date: TBD
|
date: 2025-06-27
|
||||||
|
|||||||
14
CHANGELOG.md
14
CHANGELOG.md
@@ -5,7 +5,19 @@ 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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [1.1.3] - 2025-06-29
|
## [1.1.4] - 2025-06-27
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Allow pinning of guests to a group of nodes (@gyptazy). [#245]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Modified log levels to make output lighter at INFO level (@pmarasse) [#255]
|
||||||
|
- Fixed an issue where balancing was performed in combination of deactivated balancing and dry-run mode (@gyptazy). [#248]
|
||||||
|
|
||||||
|
|
||||||
|
## [1.1.3] - 2025-06-19
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
|||||||
@@ -161,6 +161,7 @@ docker run -it --rm -v $(pwd)/proxlb.yaml:/etc/proxlb/proxlb.yaml proxlb
|
|||||||
| Version | Image |
|
| Version | Image |
|
||||||
|------|:------:|
|
|------|:------:|
|
||||||
| latest | cr.gyptazy.com/proxlb/proxlb:latest |
|
| latest | cr.gyptazy.com/proxlb/proxlb:latest |
|
||||||
|
| v1.1.4 | cr.gyptazy.com/proxlb/proxlb:v1.1.4 |
|
||||||
| v1.1.3 | cr.gyptazy.com/proxlb/proxlb:v1.1.3 |
|
| v1.1.3 | cr.gyptazy.com/proxlb/proxlb:v1.1.3 |
|
||||||
| v1.1.2 | cr.gyptazy.com/proxlb/proxlb:v1.1.2 |
|
| v1.1.2 | cr.gyptazy.com/proxlb/proxlb:v1.1.2 |
|
||||||
| v1.1.1 | cr.gyptazy.com/proxlb/proxlb:v1.1.1 |
|
| v1.1.1 | cr.gyptazy.com/proxlb/proxlb:v1.1.1 |
|
||||||
|
|||||||
8
debian/changelog
vendored
8
debian/changelog
vendored
@@ -1,8 +1,10 @@
|
|||||||
proxlb (1.1.4~b1) stable; urgency=medium
|
proxlb (1.1.4) stable; urgency=medium
|
||||||
|
|
||||||
* ProxLB 1.1.4 beta 1
|
* Allow pinning of guests to a group of nodes. (Closes: #245)
|
||||||
|
* Modified log levels to make output lighter at INFO level. (Closes: #255)
|
||||||
|
* ixed an issue where balancing was performed in combination of deactivated balancing and dry-run mode. (Closes: #248)
|
||||||
|
|
||||||
-- Florian Paul Azim Hoberg <gyptazy@gyptazy.com> Tue, 24 Jun 2025 09:56:02 +0000
|
-- Florian Paul Azim Hoberg <gyptazy@gyptazy.com> Fri, 27 Jun 2025 16:22:58 +0000
|
||||||
|
|
||||||
proxlb (1.1.3) stable; urgency=medium
|
proxlb (1.1.3) stable; urgency=medium
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
VERSION="1.1.2b"
|
VERSION="1.1.4"
|
||||||
|
|
||||||
sed -i "s/^__version__ = .*/__version__ = \"$VERSION\"/" "proxlb/utils/version.py"
|
sed -i "s/^__version__ = .*/__version__ = \"$VERSION\"/" "proxlb/utils/version.py"
|
||||||
sed -i "s/version=\"[0-9]*\.[0-9]*\.[0-9]*\"/version=\"$VERSION\"/" setup.py
|
sed -i "s/version=\"[0-9]*\.[0-9]*\.[0-9]*\"/version=\"$VERSION\"/" setup.py
|
||||||
|
|||||||
@@ -3,5 +3,5 @@ __app_desc__ = "A DRS alike loadbalancer for Proxmox clusters."
|
|||||||
__author__ = "Florian Paul Azim Hoberg <gyptazy>"
|
__author__ = "Florian Paul Azim Hoberg <gyptazy>"
|
||||||
__copyright__ = "Copyright (C) 2025 Florian Paul Azim Hoberg (@gyptazy)"
|
__copyright__ = "Copyright (C) 2025 Florian Paul Azim Hoberg (@gyptazy)"
|
||||||
__license__ = "GPL-3.0"
|
__license__ = "GPL-3.0"
|
||||||
__version__ = "1.1.4b1"
|
__version__ = "1.1.4"
|
||||||
__url__ = "https://github.com/gyptazy/ProxLB"
|
__url__ = "https://github.com/gyptazy/ProxLB"
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="proxlb",
|
name="proxlb",
|
||||||
version="1.1.4b1",
|
version="1.1.4",
|
||||||
description="A DRS alike loadbalancer for Proxmox clusters.",
|
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.",
|
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",
|
author="Florian Paul Azim Hoberg",
|
||||||
|
|||||||
Reference in New Issue
Block a user