Skip to content

Commit 17c24d7

Browse files
pandafynemesifier
authored andcommitted
25.10.0 release
Signed-off-by: Gagan Deep <[email protected]>
1 parent 028dad1 commit 17c24d7

File tree

3 files changed

+70
-2
lines changed

3 files changed

+70
-2
lines changed

CHANGES.rst

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,74 @@
11
Changelog
22
=========
33

4+
Version 25.10.0 [2025-10-24]
5+
----------------------------
6+
7+
Features
8+
~~~~~~~~
9+
10+
- Added support for non-default external ports in the Nginx container
11+
`#496 <https://github.com/openwisp/docker-openwisp/issues/496>`_.
12+
- Updated FreeRADIUS REST module to include Calling-Station-ID and
13+
Called-Station-ID during authorization `#494
14+
<https://github.com/openwisp/docker-openwisp/issues/494>`_.
15+
- Run `collectstatic` only when Python dependencies change `#246
16+
<https://github.com/openwisp/docker-openwisp/issues/246>`_.
17+
- Added environment variables for configuring Redis `#463
18+
<https://github.com/openwisp/docker-openwisp/issues/463>`_.
19+
20+
Changes
21+
~~~~~~~
22+
23+
Dependencies
24+
++++++++++++
25+
26+
- Upgraded to OpenWISP Users 1.2.x (see `changelog
27+
<https://github.com/openwisp/openwisp-users/releases/tag/1.2.0>`__).
28+
- Upgraded to OpenWISP Controller 1.2.x (see `changelog
29+
<https://github.com/openwisp/openwisp-controller/releases/tag/1.2.0>`__).
30+
- Upgraded to OpenWISP Monitoring 1.2.x (see `changelog
31+
<https://github.com/openwisp/openwisp-monitoring/releases/tag/1.2.0>`__).
32+
- Upgraded to OpenWISP Network Topology 1.2.x (see `changelog
33+
<https://github.com/openwisp/openwisp-network-topology/releases/tag/1.2.0>`__).
34+
- Upgraded to OpenWISP Firmware Upgrader 1.2.x (see `changelog
35+
<https://github.com/openwisp/openwisp-firmware-upgrader/releases/tag/1.2.0>`__).
36+
- Upgraded to OpenWISP RADIUS 1.2.x (see `changelog
37+
<https://github.com/openwisp/openwisp-radius/releases/tag/1.2.0>`__).
38+
- Updated auto-install script to support Debian 13.
39+
- Updated auto-install script to support Ubuntu 24.04.
40+
- Updated base image of ``openwisp/openwisp-nginx`` to
41+
``nginx:1.29.2-alpine``.
42+
- Updated base image of ``openwisp/openwisp-freeradius`` to
43+
``freeradius/freeradius-server:3.2.8-alpine``.
44+
- Updated base image of ``openwisp/openwisp-postfix`` to ``alpine:3.22``.
45+
- Updated base image of ``openwisp/openwisp-openvpn`` to
46+
``kylemanna/openvpn:2.4``.
47+
- Updated base image of ``openwisp/openwisp-dashboard``,
48+
``openwisp/openwisp-api``, and ``openwisp/openwisp-websocket`` to
49+
``python:3.13-slim-bullseye``.
50+
- Bumped ``supervisor>=4.3.0,<4.4.0``.
51+
- Bumped ``django-cors-headers>=4.9.0,<4.10.0``.
52+
- Bumped ``django-pipeline>=4.1.0,<4.2.0``.
53+
- Bumped ``uwsgi>=2.0.30,<2.1.0``.
54+
- Bumped ``django-celery-email-reboot>=4.1.0,<5.0.0``.
55+
- Bumped ``tldextract>=5.3.0,<5.4.0``.
56+
- Bumped ``django-storages>=1.14.6,<1.15.0``.
57+
- Bumped ``boto3>=1.40.49,<1.41.0``.
58+
59+
Bugfixes
60+
~~~~~~~~
61+
62+
- Fixed permissions issues in the Postfix container.
63+
- Fixed FreeRADIUS container exit caused by global write permissions.
64+
- Added error handling for Redis in `load_init_data.py`.
65+
- Updated Django URL patterns in the WebSocket container `#462
66+
<https://github.com/openwisp/docker-openwisp/issues/462>`_.
67+
- Prevented creation of duplicate topology objects.
68+
- Fixed condition check in `create_default_topology` `#421
69+
<https://github.com/openwisp/docker-openwisp/issues/421>`_.
70+
- Updated auto-install script to suggest the correct VPN hostname.
71+
472
Version 24.11.2 [2024-12-18]
573
----------------------------
674

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Find documentation in README.md under
22
# the heading "Makefile Options".
33

4-
OPENWISP_VERSION = 24.11.1
4+
OPENWISP_VERSION = 25.10.0
55
SHELL := /bin/bash
66
.SILENT: clean pull start stop
77

images/common/openwisp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
from .celery import app as celery_app
44

55
__all__ = ["celery_app"]
6-
__openwisp_version__ = "25.07.0a"
6+
__openwisp_version__ = "25.10.0"
77
__openwisp_installation_method__ = "docker-openwisp"

0 commit comments

Comments
 (0)