Skip to content

Commit 4293afd

Browse files
authored
[deps] Updated dependencies
Updated python packages, system packages, enabled dependabot.
1 parent 3ea1abe commit 4293afd

File tree

5 files changed

+24
-11
lines changed

5 files changed

+24
-11
lines changed

.github/dependabot.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "pip" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "monthly"
12+
commit-message:
13+
prefix: "[deps] "

images/openwisp_base/Dockerfile

+8-8
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ FROM system AS openwisp_python
2525
ENV PATH="${PATH}:/home/openwisp/.local/bin"
2626
ENV PYTHONPATH=/home/openwisp/.local/lib/python3.10/site-packages
2727

28-
RUN pip install --no-cache-dir --user --upgrade pip~=24.0.0
28+
RUN pip install --no-cache-dir --user --upgrade pip~=24.1.2 setuptools~=70.3.0 wheel~=0.43.0
2929
# TODO: Remove when next version of openwisp-monitoring is released
30-
ARG OPENWISP_MONITORING_SOURCE=https://github.com/openwisp/openwisp-monitoring/tarball/18cc5249de1f057554826f9d6e6ed8683e3f24bc
30+
ARG OPENWISP_MONITORING_SOURCE=https://github.com/openwisp/openwisp-monitoring/tarball/fb2814b6dd8213ddb45a8497cf41dfb10eee04a2
3131
# hadolint ignore=DL3013
3232
RUN pip install --no-cache-dir --user --upgrade ${OPENWISP_MONITORING_SOURCE}
33-
ARG OPENWISP_FIRMWARE_SOURCE=https://github.com/openwisp/openwisp-firmware-upgrader/tarball/5a104a8f06fd566b9c09dddb93005f223df0bb47
33+
ARG OPENWISP_FIRMWARE_SOURCE=https://github.com/openwisp/openwisp-firmware-upgrader/tarball/178055284b39c4f6d0b166e817a275efb9fc0dc0
3434
# hadolint ignore=DL3013
3535
RUN pip install --no-cache-dir --user --upgrade ${OPENWISP_FIRMWARE_SOURCE}
36-
ARG OPENWISP_TOPOLOGY_SOURCE=https://github.com/openwisp/openwisp-network-topology/tarball/d150127e6ee244b2c25aa2d35f804d3d1124bde4
36+
ARG OPENWISP_TOPOLOGY_SOURCE=https://github.com/openwisp/openwisp-network-topology/tarball/8b9380d1dcdacb180af8e04f489b3e4af7480a0a
3737
# hadolint ignore=DL3013
3838
RUN pip install --no-cache-dir --user --upgrade ${OPENWISP_TOPOLOGY_SOURCE}
39-
ARG OPENWISP_RADIUS_SOURCE=https://github.com/openwisp/openwisp-radius/tarball/6a2d98861a8d43e7622d87f7e1af97503c2677f9
39+
ARG OPENWISP_RADIUS_SOURCE=https://github.com/openwisp/openwisp-radius/tarball/fd8a2300d65d6191d10c62b9ea4e1f56de2bcfe4
4040
# hadolint ignore=DL3013
4141
RUN pip install --no-cache-dir --user --upgrade ${OPENWISP_RADIUS_SOURCE}
4242

@@ -49,7 +49,7 @@ RUN if [ "$OPENWISP_IPAM_SOURCE" != "default" ] ; then \
4949
pip install --no-cache-dir --user --upgrade ${OPENWISP_IPAM_SOURCE}; \
5050
fi
5151
# TODO: Remove when next version of openwisp-controller is released
52-
ARG OPENWISP_CONTROLLER_SOURCE=https://github.com/openwisp/openwisp-controller/tarball/1e641fe094838178556b4db09317065bd28c625c
52+
ARG OPENWISP_CONTROLLER_SOURCE=https://github.com/openwisp/openwisp-controller/tarball/1a24f57493b1343f4e94409be3c24bdb5b952db1
5353
# hadolint ignore=DL3013
5454
RUN if [ "$OPENWISP_CONTROLLER_SOURCE" != "default" ] ; then \
5555
pip install --no-cache-dir --user --upgrade ${OPENWISP_CONTROLLER_SOURCE}; \
@@ -59,13 +59,13 @@ ARG OPENWISP_NOTIFICATION_SOURCE=default
5959
RUN if [ "$OPENWISP_NOTIFICATION_SOURCE" != "default" ] ; then \
6060
pip install --no-cache-dir --user --upgrade ${OPENWISP_NOTIFICATION_SOURCE}; \
6161
fi
62-
ARG OPENWISP_USERS_SOURCE=https://github.com/openwisp/openwisp-users/tarball/8a39e488b0b955c7322f6df7927d2adb71ce7caf
62+
ARG OPENWISP_USERS_SOURCE=https://github.com/openwisp/openwisp-users/tarball/1130d5a4cbde0a09f57df638bba45bd53ea27192
6363
# hadolint ignore=DL3013
6464
RUN if [ "$OPENWISP_USERS_SOURCE" != "default" ] ; then \
6565
pip install --no-cache-dir --user --upgrade --force-reinstall ${OPENWISP_USERS_SOURCE}; \
6666
fi
6767
# TODO: Remove when next version of openwisp-utils is released
68-
ARG OPENWISP_UTILS_SOURCE="openwisp-utils[celery,rest] @ https://github.com/openwisp/openwisp-utils/tarball/0a7f9214388b634eec437af544fc31c1762a02ce"
68+
ARG OPENWISP_UTILS_SOURCE="openwisp-utils[celery,rest] @ https://github.com/openwisp/openwisp-utils/tarball/a93483530352e4919901959449476988fef55b33"
6969
# hadolint ignore=DL3013
7070
RUN if [ "$OPENWISP_UTILS_SOURCE" != "default" ] ; then \
7171
pip install --no-cache-dir --user --upgrade --force-reinstall "${OPENWISP_UTILS_SOURCE}"; \

images/openwisp_base/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sentry-sdk
66
supervisor~=4.2 # allows 4.x and > 4.2
77
django-cors-headers~=3.1 # allows 3.x and > 3.1
88
django-pipeline~=2.0 # allows 2.x
9-
uwsgi~=2.0.20
9+
uwsgi~=2.0.26
1010
django-celery-email~=3.0.0
1111
tldextract~=5.1.2
1212
# these add support for object storage

images/openwisp_freeradius/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM freeradius/freeradius-server:3.0.26-alpine
1+
FROM freeradius/freeradius-server:3.2.5-alpine
22

33
# hadolint ignore=DL3018
44
RUN apk add --no-cache --update tzdata~=2022f-r1 \

images/openwisp_nginx/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM nginx:1.23.4-alpine
22

33
RUN apk add --update --no-cache \
4-
openssl~=3.0.13-r0 \
4+
openssl~=3.0.14-r0 \
55
certbot~=1.32.0-r0 \
66
certbot-nginx~=1.32.0-r0 && \
77
rm -rf /var/cache/apk/* /tmp/*

0 commit comments

Comments
 (0)