Skip to content

Commit b1d1b51

Browse files
Merge pull request #16707 from netbox-community/develop
Release v4.0.6
2 parents e68b839 + 4ae1a1f commit b1d1b51

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+4500
-169472
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ body:
2626
attributes:
2727
label: NetBox Version
2828
description: What version of NetBox are you currently running?
29-
placeholder: v4.0.5
29+
placeholder: v4.0.6
3030
validations:
3131
required: true
3232
- type: dropdown

.github/ISSUE_TEMPLATE/feature_request.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ body:
1414
attributes:
1515
label: NetBox version
1616
description: What version of NetBox are you currently running?
17-
placeholder: v4.0.5
17+
placeholder: v4.0.6
1818
validations:
1919
required: true
2020
- type: dropdown

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@ on:
55
paths-ignore:
66
- 'contrib/**'
77
- 'docs/**'
8+
- 'netbox/translations/**'
89
pull_request:
910
paths-ignore:
1011
- 'contrib/**'
1112
- 'docs/**'
13+
- 'netbox/translations/**'
1214

1315
permissions:
1416
contents: read

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ netbox.pid
2828
.idea
2929
.coverage
3030
.vscode
31+
.python-version

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ NetBox exists to empower network engineers. Since its release in 2016, it has be
1717
<a href="#why-netbox">Why NetBox?</a> |
1818
<a href="#getting-started">Getting Started</a> |
1919
<a href="#get-involved">Get Involved</a> |
20-
<a href="#project-stats">Project Stats</a> |
2120
<a href="#screenshots">Screenshots</a>
2221
</p>
2322

SECURITY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ If you believe you've uncovered a security vulnerability and wish to report it c
2424

2525
Please note that we **DO NOT** accept reports generated by automated tooling which merely suggest that a file or file(s) _may_ be vulnerable under certain conditions, as these are most often innocuous.
2626

27-
If you believe that you've found a vulnerability which meets all of these conditions, please [submit a draft security advisory](https://github.com/netbox-community/netbox/security/advisories/new) on GitHub, or email a brief description of the suspected bug and instructions for reproduction to **[email protected]**. For any security concerns regarding NetBox deployed via Docker, please see the [netbox-docker](https://github.com/netbox-community/netbox-docker) project.
27+
If you believe that you've found a vulnerability which meets all of these conditions, please [submit a draft security advisory](https://github.com/netbox-community/netbox/security/advisories/new) on GitHub. For any security concerns regarding NetBox deployed via Docker, please see the [netbox-docker](https://github.com/netbox-community/netbox-docker) project.
2828

2929
### Bug Bounties
3030

base_requirements.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ django-cors-headers
88

99
# Runtime UI tool for debugging Django
1010
# https://github.com/jazzband/django-debug-toolbar/blob/main/docs/changes.rst
11-
django-debug-toolbar
11+
# Pinned for DNS looukp bug; see https://github.com/netbox-community/netbox/issues/16454
12+
# and https://github.com/jazzband/django-debug-toolbar/issues/1927
13+
django-debug-toolbar==4.3.0
1214

1315
# Library for writing reusable URL query filters
1416
# https://github.com/carltongibson/django-filter/blob/main/CHANGES.rst
@@ -108,7 +110,7 @@ Pillow
108110

109111
# PostgreSQL database adapter for Python
110112
# https://github.com/psycopg/psycopg/blob/master/docs/news.rst
111-
psycopg[binary,pool]
113+
psycopg[c,pool]
112114

113115
# YAML rendering library
114116
# https://github.com/yaml/pyyaml/blob/master/CHANGES

0 commit comments

Comments
 (0)