Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[deps] Bumped postfix~=3.9.1-r0 #418

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ on:
push:
branches:
- master
- '24.11'
pull_request:
branches:
- master
- '24.11'

jobs:
build:
Expand Down
15 changes: 15 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
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.

Version 24.11.1 [2024-11-27]
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion images/common/openwisp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion images/openwisp_postfix/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apk add --no-cache --upgrade \
cyrus-sasl~=2.1.28-r6 \
cyrus-sasl-login~=2.1.28-r6 && \
apk add --no-cache \
postfix~=3.9.0-r1 \
postfix~=3.9.1-r0 \
rsyslog~=8.2404.0-r0 \
tzdata~=2024b-r0 && \
rm -rf /tmp/* /var/cache/apk/*
Expand Down