From 0bbc5992ca9b0e24cf278600ae3e97f37646f3ae Mon Sep 17 00:00:00 2001 From: gyptazy Date: Thu, 9 Oct 2025 09:05:17 +0200 Subject: [PATCH] release: Prepare release 1.1.8 Fixes: #332 --- .changelogs/1.1.8/release_meta.yml | 2 +- CHANGELOG.md | 7 +++++++ README.md | 1 + debian/changelog | 7 +++++++ helm/proxlb/Chart.yaml | 4 ++-- helm/proxlb/values.yaml | 2 +- misc/01-replace-version.sh | 3 ++- proxlb/utils/version.py | 2 +- setup.py | 2 +- 9 files changed, 23 insertions(+), 7 deletions(-) diff --git a/.changelogs/1.1.8/release_meta.yml b/.changelogs/1.1.8/release_meta.yml index c19765d..657007c 100644 --- a/.changelogs/1.1.8/release_meta.yml +++ b/.changelogs/1.1.8/release_meta.yml @@ -1 +1 @@ -date: TBD +date: 2025-10-09 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ae29a6..e2b1b1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ 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.8] - 2025-10-09 + +### Fixed + +- Fix API errors when using conntrack aware migration with older PVE versions (@gyptazy). [#318] +- Add a static ProxLB prefix to the log output when used by journal handler (@gyptazy). [#329] + ## [1.1.7] - 2025-09-19 ### Added diff --git a/README.md b/README.md index 4ac44b6..b6825f2 100644 --- a/README.md +++ b/README.md @@ -169,6 +169,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.8 | cr.gyptazy.com/proxlb/proxlb:v1.1.8 | | v1.1.7 | cr.gyptazy.com/proxlb/proxlb:v1.1.7 | | v1.1.6.1 | cr.gyptazy.com/proxlb/proxlb:v1.1.6.1 | | v1.1.6 | cr.gyptazy.com/proxlb/proxlb:v1.1.6 | diff --git a/debian/changelog b/debian/changelog index 4250978..419759c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +proxlb (1.1.8) stable; urgency=medium + + * Fix API errors when using conntrack aware migration with older PVE version. (Closes: #318) + * Add a static ProxLB prefix to the log output when used by journal handler. (Closes: #329) + + -- Florian Paul Azim Hoberg Thu, 09 Oct 2025 09:04:13 +0002 + proxlb (1.1.7) stable; urgency=medium * Add conntrack state aware migrations of VMs. (Closes: #305) diff --git a/helm/proxlb/Chart.yaml b/helm/proxlb/Chart.yaml index e518bed..99fd4b8 100644 --- a/helm/proxlb/Chart.yaml +++ b/helm/proxlb/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v3 name: proxlb description: A Helm chart for self-hosted ProxLB type: application -version: "1.1.7" -appVersion: "v1.1.7" +version: "1.1.8" +appVersion: "v1.1.8" diff --git a/helm/proxlb/values.yaml b/helm/proxlb/values.yaml index 373ab21..0402068 100644 --- a/helm/proxlb/values.yaml +++ b/helm/proxlb/values.yaml @@ -1,7 +1,7 @@ image: registry: cr.gyptazy.com repository: proxlb/proxlb - tag: v1.1.7 + tag: v1.1.8 pullPolicy: IfNotPresent imagePullSecrets: [ ] diff --git a/misc/01-replace-version.sh b/misc/01-replace-version.sh index 591185b..4eb5f39 100644 --- a/misc/01-replace-version.sh +++ b/misc/01-replace-version.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -VERSION="1.1.7" +VERSION="1.1.8" # ProxLB sed -i "s/^__version__ = .*/__version__ = \"$VERSION\"/" "proxlb/utils/version.py" @@ -8,5 +8,6 @@ sed -i "s/version=\"[0-9]*\.[0-9]*\.[0-9]*\"/version=\"$VERSION\"/" setup.py # Helm Chart sed -i "s/^version: .*/version: \"$VERSION\"/" helm/proxlb/Chart.yaml sed -i "s/^appVersion: .*/appVersion: \"v$VERSION\"/" helm/proxlb/Chart.yaml +sed -i "s/^tag: .*/tag: \"v$VERSION\"/" helm/proxlb/values.yaml echo "OK: Versions have been sucessfully set to $VERSION" diff --git a/proxlb/utils/version.py b/proxlb/utils/version.py index fcccb10..6fe3d83 100644 --- a/proxlb/utils/version.py +++ b/proxlb/utils/version.py @@ -3,5 +3,5 @@ __app_desc__ = "An advanced resource scheduler and load balancer for Proxmox clu __author__ = "Florian Paul Azim Hoberg " __copyright__ = "Copyright (C) 2025 Florian Paul Azim Hoberg (@gyptazy)" __license__ = "GPL-3.0" -__version__ = "1.1.7" +__version__ = "1.1.8" __url__ = "https://github.com/gyptazy/ProxLB" diff --git a/setup.py b/setup.py index c5cd226..d1b1a4e 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="proxlb", - version="1.1.7", + version="1.1.8", description="An advanced resource scheduler and load balancer for Proxmox clusters.", long_description="An advanced resource scheduler and load balancer for Proxmox clusters that also supports maintenance modes and affinity/anti-affinity rules.", author="Florian Paul Azim Hoberg",