Skip to content

Commit afc10aa

Browse files
authored
Merge pull request #1379 from netbox-community/develop
Version 3.1.1
2 parents bd9bdd0 + e48a1b6 commit afc10aa

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ RUN export DEBIAN_FRONTEND=noninteractive \
7171
&& apt-get update -qq \
7272
&& apt-get install \
7373
--yes -qq --no-install-recommends \
74-
unit=1.34.0-1~noble \
75-
unit-python3.12=1.34.0-1~noble \
74+
unit=1.34.1-1~noble \
75+
unit-python3.12=1.34.1-1~noble \
7676
&& rm -rf /var/lib/apt/lists/*
7777

7878
COPY --from=builder /opt/netbox/venv /opt/netbox/venv

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.0
1+
3.1.1

configuration/configuration.py

+2
Original file line numberDiff line numberDiff line change
@@ -348,3 +348,5 @@ def _environ_get_and_map(variable_name: str, default: str | None = None, map_fn:
348348
# Time zone (default: UTC)
349349
TIME_ZONE = environ.get('TIME_ZONE', 'UTC')
350350

351+
# If true disables miscellaneous functionality which depends on access to the Internet.
352+
ISOLATED_DEPLOYMENT = _environ_get_and_map('ISOLATED_DEPLOYMENT', 'False', _AS_BOOL)

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
netbox: &netbox
3-
image: docker.io/netboxcommunity/netbox:${VERSION-v4.2-3.1.0}
3+
image: docker.io/netboxcommunity/netbox:${VERSION-v4.2-3.1.1}
44
depends_on:
55
- postgres
66
- redis

requirements-container.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ django-auth-ldap==5.1.0
22
django-storages[azure,boto3,dropbox,google,libcloud,sftp]==1.14.4
33
dulwich==0.22.7
44
python3-saml==1.16.0 --no-binary lxml,xmlsec
5-
sentry-sdk[django]==2.19.2
5+
sentry-sdk[django]==2.20.0

0 commit comments

Comments
 (0)