Skip to content

Commit 70c0aec

Browse files
committed
Release v4.0.2
1 parent beb9b96 commit 70c0aec

File tree

8 files changed

+20
-17
lines changed

8 files changed

+20
-17
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 1 addition & 1 deletion
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.1
29+
placeholder: v4.0.2
3030
validations:
3131
required: true
3232
- type: dropdown

.github/ISSUE_TEMPLATE/feature_request.yaml

Lines changed: 1 addition & 1 deletion
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.1
17+
placeholder: v4.0.2
1818
validations:
1919
required: true
2020
- type: dropdown

base_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ social-auth-app-django
131131
strawberry-graphql
132132

133133
# Strawberry GraphQL Django extension
134-
# https://github.com/strawberry-graphql/strawberry-django/blob/main/CHANGELOG.md
134+
# https://github.com/strawberry-graphql/strawberry-django/releases
135135
strawberry-graphql-django
136136

137137
# SVG image rendering (used for rack elevations)

docs/release-notes/version-4.0.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# NetBox v4.0
22

3-
## v4.0.2 (FUTURE)
3+
## v4.0.2 (2024-05-14)
4+
5+
!!! warning "Important"
6+
This release includes an important security fix, and is a strongly recommended update for all users. More details will follow.
47

58
### Enhancements
69

netbox/netbox/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# Environment setup
2626
#
2727

28-
VERSION = '4.0.2-dev'
28+
VERSION = '4.0.2'
2929
HOSTNAME = platform.node()
3030
# Set the base directory two levels up
3131
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

netbox/project-static/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"gridstack": "10.1.2",
3131
"htmx.org": "1.9.12",
3232
"query-string": "9.0.0",
33-
"sass": "1.77.0",
33+
"sass": "1.77.1",
3434
"tom-select": "2.3.1",
3535
"typeface-inter": "3.18.1",
3636
"typeface-roboto-mono": "1.1.13"

netbox/project-static/yarn.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1816,9 +1816,9 @@ ignore@^5.2.0:
18161816
integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==
18171817

18181818
immutable@^4.0.0:
1819-
version "4.3.5"
1820-
resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.5.tgz#f8b436e66d59f99760dc577f5c99a4fd2a5cc5a0"
1821-
integrity sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==
1819+
version "4.3.6"
1820+
resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.6.tgz#6a05f7858213238e587fb83586ffa3b4b27f0447"
1821+
integrity sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==
18221822

18231823
import-fresh@^3.2.1:
18241824
version "3.3.0"
@@ -2482,10 +2482,10 @@ safe-regex-test@^1.0.3:
24822482
es-errors "^1.3.0"
24832483
is-regex "^1.1.4"
24842484

2485-
2486-
version "1.77.0"
2487-
resolved "https://registry.yarnpkg.com/sass/-/sass-1.77.0.tgz#e736c69aff9fae4a4e6dae60a979eee9c942f321"
2488-
integrity sha512-eGj4HNfXqBWtSnvItNkn7B6icqH14i3CiCGbzMKs3BAPTq62pp9NBYsBgyN4cA+qssqo9r26lW4JSvlaUUWbgw==
2485+
2486+
version "1.77.1"
2487+
resolved "https://registry.yarnpkg.com/sass/-/sass-1.77.1.tgz#018cdfb206afd14724030c02e9fefd8f30a76cd0"
2488+
integrity sha512-OMEyfirt9XEfyvocduUIOlUSkWOXS/LAt6oblR/ISXCTukyavjex+zQNm51pPCOiFKY1QpWvEH1EeCkgyV3I6w==
24892489
dependencies:
24902490
chokidar ">=3.0.0 <4.0.0"
24912491
immutable "^4.0.0"

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ feedparser==6.0.11
2020
gunicorn==22.0.0
2121
Jinja2==3.1.4
2222
Markdown==3.6
23-
mkdocs-material==9.5.21
23+
mkdocs-material==9.5.22
2424
mkdocstrings[python-legacy]==0.25.1
2525
netaddr==1.2.1
2626
nh3==0.2.17
2727
Pillow==10.3.0
28-
psycopg[c,pool]==3.1.18
28+
psycopg[c,pool]==3.1.19
2929
PyYAML==6.0.1
3030
requests==2.31.0
3131
social-auth-app-django==5.4.1
3232
social-auth-core==4.5.4
33-
strawberry-graphql==0.227.4
34-
strawberry-graphql-django==0.39.2
33+
strawberry-graphql==0.229.0
34+
strawberry-graphql-django==0.40.0
3535
svgwrite==1.4.3
3636
tablib==3.6.1
3737
tzdata==2024.1

0 commit comments

Comments
 (0)