From 6c3ab30244f57bac0ac73aafe2205d9653d759aa Mon Sep 17 00:00:00 2001 From: Gagan Deep Date: Wed, 18 Dec 2024 20:04:02 +0530 Subject: [PATCH] 24.11.2 release Signed-off-by: Gagan Deep --- CHANGES.rst | 18 ++++++++++++++++++ Makefile | 2 +- images/common/openwisp/__init__.py | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d09adac8..f8f813a0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,24 @@ Changelog ========= +Version 24.11.2 [2024-12-18] +---------------------------- + +Bugfixes +~~~~~~~~ + +- Resolved an issue in the ``docker-compose`` configuration for the + ``openvpn`` service by adding the ``/dev/net/tun`` device. +- Fixed the auto-install script to support installations from forked + repositories. +- Fixed the auto-install script to ensure installation of the latest + released version from GitHub. +- Added missing dependencies ``curl`` and ``jq`` to the auto-install + script to prevent installation failures. +- Resolved issues in the ``openwisp-postfix`` image by upgrading to + ``postfix~=3.9.1-r0``. +- Bumped ``boto3~=1.35.82``. + Version 24.11.1 [2024-11-27] ---------------------------- diff --git a/Makefile b/Makefile index 2dcb314a..1ba12f4d 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Find documentation in README.md under # the heading "Makefile Options". -OPENWISP_VERSION = 24.11.1 +OPENWISP_VERSION = 24.11.2 SHELL := /bin/bash .SILENT: clean pull start stop diff --git a/images/common/openwisp/__init__.py b/images/common/openwisp/__init__.py index 810a1ccc..319aaf68 100644 --- a/images/common/openwisp/__init__.py +++ b/images/common/openwisp/__init__.py @@ -3,5 +3,5 @@ from .celery import app as celery_app __all__ = ['celery_app'] -__openwisp_version__ = '24.11.1' +__openwisp_version__ = '24.11.2' __openwisp_installation_method__ = 'docker-openwisp'