Compare commits

..

5 Commits

Author SHA1 Message Date
Tobias Genannt
79c1832f62 Preparation for 4.0.2 2026-02-27 06:33:35 +01:00
Tobias Genannt
9057d17fd9 Merge pull request #1633 from hka-schaefer/develop
Set default for LOGOUT_REDIRECT_URL
2026-02-26 20:36:06 +01:00
hka-schaefer
18110eee00 Set default for LOGOUT_REDIRECT_URL
LOGOUT_REDIRECT_URL is commented in netbox.env, which leads to an error during logout.
Setting a default prevents that error
2026-02-26 16:30:46 +01:00
Tobias Genannt
f4f6189c9f Merge pull request #1630 from netbox-community/renovate/granian-2.x
chore(deps): update dependency granian to v2.7.2
2026-02-25 06:37:02 +01:00
renovate[bot]
9c992c9879 chore(deps): update dependency granian to v2.7.2 2026-02-25 00:36:06 +00:00
5 changed files with 11 additions and 4 deletions

View File

@@ -19,8 +19,15 @@ jobs:
runs-on: ubuntu-24.04
name: Checks syntax of our code
permissions:
# contents permission to clone the repository
contents: read
packages: read
# issues and pull-requests permissions to write results as pull
# request comments. Omit them if you don't need summary comments
issues: write
pull-requests: write
# To report GitHub Actions status checks. Omit if you don't need
# to update commit status
statuses: write
steps:
- uses: actions/checkout@v6

View File

@@ -1 +1 @@
4.0.1
4.0.2

View File

@@ -322,7 +322,7 @@ SOCIAL_AUTH_OIDC_OIDC_ENDPOINT = environ.get('SOCIAL_AUTH_OIDC_OIDC_ENDPOINT')
SOCIAL_AUTH_OIDC_KEY = environ.get('SOCIAL_AUTH_OIDC_KEY')
SOCIAL_AUTH_OIDC_SECRET = _read_secret('oidc_secret', environ.get('SOCIAL_AUTH_OIDC_SECRET', ''))
SOCIAL_AUTH_OIDC_SCOPE = _environ_get_and_map('SOCIAL_AUTH_OIDC_SCOPE', '', _AS_LIST)
LOGOUT_REDIRECT_URL = environ.get('LOGOUT_REDIRECT_URL')
LOGOUT_REDIRECT_URL = environ.get('LOGOUT_REDIRECT_URL','/')
SOCIAL_AUTH_OIDC_JWT_ALGORITHMS = _environ_get_and_map('SOCIAL_AUTH_OIDC_JWT_ALGORITHMS', "RS256", _AS_LIST)
# This repository is used to check whether there is a new release of NetBox available. Set to None to disable the

View File

@@ -1,6 +1,6 @@
services:
netbox: &netbox
image: docker.io/netboxcommunity/netbox:${VERSION-v4.5-4.0.1}
image: docker.io/netboxcommunity/netbox:${VERSION-v4.5-4.0.2}
depends_on:
- postgres
- redis

View File

@@ -1,6 +1,6 @@
django-auth-ldap==5.3.0
dulwich==1.1.0
granian[uvloop]==2.7.1
granian[uvloop]==2.7.2
python3-saml==1.16.0
--no-binary lxml
--no-binary xmlsec