diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index b4240171b..672f43b09 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -14,7 +14,7 @@ body: attributes: label: NetBox version description: What version of NetBox are you currently running? - placeholder: v3.5-beta2 + placeholder: v3.5.0 validations: required: true - type: dropdown diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index cedee1f44..842454d6b 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -14,7 +14,7 @@ body: attributes: label: NetBox version description: What version of NetBox are you currently running? - placeholder: v3.5-beta2 + placeholder: v3.5.0 validations: required: true - type: dropdown diff --git a/docs/release-notes/index.md b/docs/release-notes/index.md index 6262ef92c..4d812938f 100644 --- a/docs/release-notes/index.md +++ b/docs/release-notes/index.md @@ -10,6 +10,16 @@ Minor releases are published in April, August, and December of each calendar yea This page contains a history of all major and minor releases since NetBox v2.0. For more detail on a specific patch release, please see the release notes page for that specific minor release. +#### [Version 3.5](./version-3.5.md) (April 2023) + +* Customizable Dashboard ([#9416](https://github.com/netbox-community/netbox/issues/9416)) +* Remote Data Sources ([#11558](https://github.com/netbox-community/netbox/issues/11558)) +* Configuration Template Rendering ([#11559](https://github.com/netbox-community/netbox/issues/11559)) +* NAPALM Integration Plugin ([#10520](https://github.com/netbox-community/netbox/issues/10520)) +* ASN Ranges ([#8550](https://github.com/netbox-community/netbox/issues/8550)) +* Provider Accounts ([#9047](https://github.com/netbox-community/netbox/issues/9047)) +* Job-Triggered Webhooks ([#8958](https://github.com/netbox-community/netbox/issues/8958)) + #### [Version 3.4](./version-3.4.md) (December 2022) * New Global Search ([#10560](https://github.com/netbox-community/netbox/issues/10560)) diff --git a/docs/release-notes/version-3.5.md b/docs/release-notes/version-3.5.md index bc54202b5..13fee4473 100644 --- a/docs/release-notes/version-3.5.md +++ b/docs/release-notes/version-3.5.md @@ -1,6 +1,6 @@ # NetBox v3.5 -## v3.5-beta2 (2023-04-18) +## v3.5.0 (2023-04-27) ### Breaking Changes @@ -29,7 +29,7 @@ NetBox now has the ability to synchronize arbitrary data from external sources t This release introduces the ability to render device configurations from Jinja2 templates natively within NetBox, via both the UI and REST API. The new [ConfigTemplate](../models/extras/configtemplate.md) model stores template code (which may be defined locally or sourced from remote data files). The rendering engine passes data gleaned from both config contexts and request parameters to generate complete configurations suitable for direct application to network devices. -#### NAPALM Plugin ([#10520](https://github.com/netbox-community/netbox/issues/10520)) +#### NAPALM Integration Plugin ([#10520](https://github.com/netbox-community/netbox/issues/10520)) The NAPALM integration feature found in previous NetBox releases has been moved from the core application to a [dedicated plugin](https://github.com/netbox-community/netbox-napalm). This allows greater control over the feature's configuration and will unlock additional potential as a separate project. diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py index 83c9aed91..c35ebe992 100644 --- a/netbox/netbox/settings.py +++ b/netbox/netbox/settings.py @@ -25,7 +25,7 @@ from netbox.constants import RQ_QUEUE_DEFAULT, RQ_QUEUE_HIGH, RQ_QUEUE_LOW # Environment setup # -VERSION = '3.5-beta2' +VERSION = '3.5.0' # Hostname HOSTNAME = platform.node() diff --git a/requirements.txt b/requirements.txt index 191399bd3..3ac6d636f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ bleach==6.0.0 -boto3==1.26.115 +boto3==1.26.121 Django==4.1.8 django-cors-headers==3.14.0 django-debug-toolbar==4.0.0 @@ -30,7 +30,7 @@ Pillow==9.5.0 psycopg2-binary==2.9.6 PyYAML==6.0 sentry-sdk==1.21.0 -social-auth-app-django==5.0.0 +social-auth-app-django==5.2.0 social-auth-core[openidconnect]==4.4.2 svgwrite==1.4.3 tablib==3.4.0