1
0
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:
jeremystretch
2022-03-09 12:56:20 -05:00
parent f559ceeb7f
commit 7cffa6ebcc
4 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@ Check `base_requirements.txt` for any dependencies pinned to a specific version,
### Link to the Release Notes Page ### 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 ### Manually Perform a New Install

View File

@ -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 * The `NetBoxTable` base class for rendering object tables with `django-tables2`, as well as various custom column classes
* Function-specific templates (for generic views) * Function-specific templates (for generic views)
* Various custom template tags and filters * 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 * 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. 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 * [#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 * [#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 * [#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 * [#8656](https://github.com/netbox-community/netbox/issues/8656) - Fix migration error when upgrading from a v2.11 database

View File

@ -19,7 +19,7 @@ from netbox.config import PARAMS
# Environment setup # Environment setup
# #
VERSION = '3.2.0-beta1' VERSION = '3.2.0-beta2'
# Hostname # Hostname
HOSTNAME = platform.node() HOSTNAME = platform.node()

View File

@ -1,4 +1,4 @@
Django==4.0.2 Django==4.0.3
django-cors-headers==3.11.0 django-cors-headers==3.11.0
django-debug-toolbar==3.2.4 django-debug-toolbar==3.2.4
django-filter==21.1 django-filter==21.1
@ -13,7 +13,6 @@ django-taggit==2.1.0
django-timezone-field==5.0 django-timezone-field==5.0
djangorestframework==3.13.1 djangorestframework==3.13.1
drf-yasg[validation]==1.20.0 drf-yasg[validation]==1.20.0
#graphene_django==2.15.0
# Installing from branch pending v2.16 release # Installing from branch pending v2.16 release
git+git://github.com/graphql-python/graphene-django.git@v2 git+git://github.com/graphql-python/graphene-django.git@v2
gunicorn==20.1.0 gunicorn==20.1.0