mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Release v3.2.0-beta2
This commit is contained in:
@ -8,7 +8,7 @@ Check `base_requirements.txt` for any dependencies pinned to a specific version,
|
||||
|
||||
### Link to the Release Notes Page
|
||||
|
||||
Add the release notes (`/docs/release-notes/X.Y.md`) to the table of contents within `mkdocs.yml`, and point `index.md` to the new file.
|
||||
Add the release notes (`/docs/release-notes/X.Y.md`) to the table of contents within `mkdocs.yml`, and add a summary of the major changes to `index.md`.
|
||||
|
||||
### Manually Perform a New Install
|
||||
|
||||
|
@ -47,6 +47,7 @@ NetBox's plugins framework has been extended considerably in this release. Addit
|
||||
* The `NetBoxTable` base class for rendering object tables with `django-tables2`, as well as various custom column classes
|
||||
* Function-specific templates (for generic views)
|
||||
* Various custom template tags and filters
|
||||
* `NetBoxModelViewSet` and several base serializer classes now provide enhanced REST API functionality
|
||||
* Plugins can now extend NetBox's GraphQL API with their own schema
|
||||
|
||||
No breaking changes to previously supported components have been introduced in this release. However, plugin authors are encouraged to audit their existing code for misuse of unsupported components, as much of NetBox's internal code base has been reorganized.
|
||||
@ -144,7 +145,7 @@ Where it is desired to limit the range of available VLANs within a group, users
|
||||
* [#8572](https://github.com/netbox-community/netbox/issues/8572) - Add a `pre_run()` method for reports
|
||||
* [#8649](https://github.com/netbox-community/netbox/issues/8649) - Enable customization of configuration module using `NETBOX_CONFIGURATION` environment variable
|
||||
|
||||
### Bug Fixes (From Beta)
|
||||
### Bug Fixes (From Beta1)
|
||||
|
||||
* [#8655](https://github.com/netbox-community/netbox/issues/8655) - Fix AttributeError when viewing cabled interfaces
|
||||
* [#8656](https://github.com/netbox-community/netbox/issues/8656) - Fix migration error when upgrading from a v2.11 database
|
||||
|
@ -19,7 +19,7 @@ from netbox.config import PARAMS
|
||||
# Environment setup
|
||||
#
|
||||
|
||||
VERSION = '3.2.0-beta1'
|
||||
VERSION = '3.2.0-beta2'
|
||||
|
||||
# Hostname
|
||||
HOSTNAME = platform.node()
|
||||
|
@ -1,4 +1,4 @@
|
||||
Django==4.0.2
|
||||
Django==4.0.3
|
||||
django-cors-headers==3.11.0
|
||||
django-debug-toolbar==3.2.4
|
||||
django-filter==21.1
|
||||
@ -13,7 +13,6 @@ django-taggit==2.1.0
|
||||
django-timezone-field==5.0
|
||||
djangorestframework==3.13.1
|
||||
drf-yasg[validation]==1.20.0
|
||||
#graphene_django==2.15.0
|
||||
# Installing from branch pending v2.16 release
|
||||
git+git://github.com/graphql-python/graphene-django.git@v2
|
||||
gunicorn==20.1.0
|
||||
|
Reference in New Issue
Block a user