Skip to content

Commit d8822c8

Browse files
Merge pull request #20226 from netbox-community/release-v4.4.0
Release v4.4.0
2 parents 08ae139 + 319556a commit d8822c8

File tree

348 files changed

+6226
-2519
lines changed

Some content is hidden

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

348 files changed

+6226
-2519
lines changed

.github/ISSUE_TEMPLATE/01-feature_request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ body:
1515
attributes:
1616
label: NetBox version
1717
description: What version of NetBox are you currently running?
18-
placeholder: v4.3.7
18+
placeholder: v4.4.0
1919
validations:
2020
required: true
2121
- type: dropdown

.github/ISSUE_TEMPLATE/02-bug_report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ body:
2727
attributes:
2828
label: NetBox Version
2929
description: What version of NetBox are you currently running?
30-
placeholder: v4.3.7
30+
placeholder: v4.4.0
3131
validations:
3232
required: true
3333
- type: dropdown

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ yarn-error.log*
99
/netbox/netbox/configuration.py
1010
/netbox/netbox/ldap_config.py
1111
/netbox/local/*
12+
/netbox/media
1213
/netbox/reports/*
1314
!/netbox/reports/__init__.py
1415
/netbox/scripts/*

base_requirements.txt

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Shell text coloring
2+
# https://github.com/tartley/colorama/blob/master/CHANGELOG.rst
3+
colorama
4+
15
# The Python web framework on which NetBox is built
26
# https://docs.djangoproject.com/en/stable/releases/
37
Django==5.2.*
@@ -102,7 +106,11 @@ mkdocs-material
102106

103107
# Introspection for embedded code
104108
# https://github.com/mkdocstrings/mkdocstrings/blob/main/CHANGELOG.md
105-
mkdocstrings[python]
109+
mkdocstrings
110+
111+
# Python handler for mkdocstrings
112+
# https://github.com/mkdocstrings/python/blob/main/CHANGELOG.md
113+
mkdocstrings-python
106114

107115
# Library for manipulating IP prefixes and addresses
108116
# https://github.com/netaddr/netaddr/blob/master/CHANGELOG.rst
@@ -131,7 +139,8 @@ requests
131139

132140
# rq
133141
# https://github.com/rq/rq/blob/master/CHANGES.md
134-
rq
142+
# RQ v2.5 drops support for Redis < 5.0
143+
rq==2.4.1
135144

136145
# Django app for social-auth-core
137146
# https://github.com/python-social-auth/social-app-django/blob/master/CHANGELOG.md
@@ -141,6 +150,10 @@ social-auth-app-django
141150
# https://github.com/python-social-auth/social-core/blob/master/CHANGELOG.md
142151
social-auth-core
143152

153+
# Image thumbnail generation
154+
# https://github.com/jazzband/sorl-thumbnail/blob/master/CHANGES.rst
155+
sorl-thumbnail
156+
144157
# Strawberry GraphQL
145158
# https://github.com/strawberry-graphql/strawberry/blob/main/CHANGELOG.md
146159
strawberry-graphql

contrib/netbox-housekeeping.service

Lines changed: 0 additions & 17 deletions
This file was deleted.

contrib/netbox-housekeeping.sh

Lines changed: 0 additions & 9 deletions
This file was deleted.

contrib/netbox-housekeeping.timer

Lines changed: 0 additions & 13 deletions
This file was deleted.

docs/administration/housekeeping.md

Lines changed: 0 additions & 49 deletions
This file was deleted.

docs/configuration/miscellaneous.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,6 @@ By default, NetBox will prevent the creation of duplicate prefixes and IP addres
108108

109109
## EVENTS_PIPELINE
110110

111-
!!! info "This parameter was introduced in NetBox v4.2."
112-
113111
Default: `['extras.events.process_event_queue',]`
114112

115113
NetBox will call dotted paths to the functions listed here for events (create, update, delete) on models as well as when custom EventRules are fired.

docs/configuration/required-parameters.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ See the [`DATABASES`](#databases) configuration below for usage.
3434

3535
## DATABASES
3636

37-
!!! info "This parameter was introduced in NetBox v4.3."
38-
3937
NetBox requires access to a PostgreSQL 14 or later database service to store data. This service can run locally on the NetBox server or on a remote system. Databases are defined as named dictionaries:
4038

4139
```python

0 commit comments

Comments
 (0)