From 7cffa6ebcc9409789632413a8a4f9935250ca62f Mon Sep 17 00:00:00 2001 From: jeremystretch Date: Wed, 9 Mar 2022 12:56:20 -0500 Subject: [PATCH] Release v3.2.0-beta2 --- docs/development/release-checklist.md | 2 +- docs/release-notes/version-3.2.md | 3 ++- netbox/netbox/settings.py | 2 +- requirements.txt | 3 +-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/development/release-checklist.md b/docs/development/release-checklist.md index 8fbec84f9..17c27948d 100644 --- a/docs/development/release-checklist.md +++ b/docs/development/release-checklist.md @@ -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 diff --git a/docs/release-notes/version-3.2.md b/docs/release-notes/version-3.2.md index 80f73839e..ba91f1e3a 100644 --- a/docs/release-notes/version-3.2.md +++ b/docs/release-notes/version-3.2.md @@ -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 diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py index 197d6850a..e78135aa3 100644 --- a/netbox/netbox/settings.py +++ b/netbox/netbox/settings.py @@ -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() diff --git a/requirements.txt b/requirements.txt index 8775a4a8d..8ba59fbd5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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