Skip to content

Commit c6cd7ef

Browse files
authored
Merge pull request #1636 from netbox-community/develop
Version 4.0.2
2 parents 909a9d0 + c861c0b commit c6cd7ef

6 files changed

Lines changed: 17 additions & 10 deletions

File tree

.github/workflows/push.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,15 @@ jobs:
1919
runs-on: ubuntu-24.04
2020
name: Checks syntax of our code
2121
permissions:
22+
# contents permission to clone the repository
2223
contents: read
2324
packages: read
25+
# issues and pull-requests permissions to write results as pull
26+
# request comments. Omit them if you don't need summary comments
27+
issues: write
28+
pull-requests: write
29+
# To report GitHub Actions status checks. Omit if you don't need
30+
# to update commit status
2431
statuses: write
2532
steps:
2633
- uses: actions/checkout@v6
@@ -77,7 +84,7 @@ jobs:
7784
uses: actions/checkout@v6
7885
- id: buildx-setup
7986
name: Set up Docker Buildx
80-
uses: docker/setup-buildx-action@v3
87+
uses: docker/setup-buildx-action@v4
8188
- id: arm-install-skopeo
8289
name: Install 'skopeo' on ARM64
8390
if: matrix.os == 'ubuntu-24.04-arm'

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ jobs:
4747
# docker.io
4848
- id: docker-io-login
4949
name: Login to docker.io
50-
uses: docker/login-action@v3
50+
uses: docker/login-action@v4
5151
with:
5252
registry: docker.io
5353
username: ${{ secrets.dockerhub_username }}
5454
password: ${{ secrets.dockerhub_password }}
5555
if: steps.check-build-needed.outputs.skipped != 'true'
5656
- id: buildx-setup
5757
name: Set up Docker Buildx
58-
uses: docker/setup-buildx-action@v3
58+
uses: docker/setup-buildx-action@v4
5959
with:
6060
version: "lab:latest"
6161
driver: cloud
@@ -64,7 +64,7 @@ jobs:
6464
# quay.io
6565
- id: quay-io-login
6666
name: Login to Quay.io
67-
uses: docker/login-action@v3
67+
uses: docker/login-action@v4
6868
with:
6969
registry: quay.io
7070
username: ${{ secrets.quayio_username }}
@@ -73,7 +73,7 @@ jobs:
7373
# ghcr.io
7474
- id: ghcr-io-login
7575
name: Login to GitHub Container Registry
76-
uses: docker/login-action@v3
76+
uses: docker/login-action@v4
7777
with:
7878
registry: ghcr.io
7979
username: ${{ github.repository_owner }}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.1
1+
4.0.2

configuration/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def _environ_get_and_map(variable_name: str, default: str | None = None, map_fn:
322322
SOCIAL_AUTH_OIDC_KEY = environ.get('SOCIAL_AUTH_OIDC_KEY')
323323
SOCIAL_AUTH_OIDC_SECRET = _read_secret('oidc_secret', environ.get('SOCIAL_AUTH_OIDC_SECRET', ''))
324324
SOCIAL_AUTH_OIDC_SCOPE = _environ_get_and_map('SOCIAL_AUTH_OIDC_SCOPE', '', _AS_LIST)
325-
LOGOUT_REDIRECT_URL = environ.get('LOGOUT_REDIRECT_URL')
325+
LOGOUT_REDIRECT_URL = environ.get('LOGOUT_REDIRECT_URL','/')
326326
SOCIAL_AUTH_OIDC_JWT_ALGORITHMS = _environ_get_and_map('SOCIAL_AUTH_OIDC_JWT_ALGORITHMS', "RS256", _AS_LIST)
327327

328328
# This repository is used to check whether there is a new release of NetBox available. Set to None to disable the

docker-compose.yml

Lines changed: 1 addition & 1 deletion
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.5-4.0.1}
3+
image: docker.io/netboxcommunity/netbox:${VERSION-v4.5-4.0.2}
44
depends_on:
55
- postgres
66
- redis

requirements-container.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
django-auth-ldap==5.3.0
22
dulwich==1.1.0
3-
granian[uvloop]==2.7.1
3+
granian[uvloop]==2.7.2
44
python3-saml==1.16.0
55
--no-binary lxml
66
--no-binary xmlsec
7-
sentry-sdk[django]==2.53.0
7+
sentry-sdk[django]==2.54.0

0 commit comments

Comments
 (0)