From dd82b6ad41e9514f7f223409ff6cd8656d98333b Mon Sep 17 00:00:00 2001 From: Christian Adell Date: Fri, 7 Jun 2024 06:37:16 +0200 Subject: [PATCH] chore: Release v1.3.0 --- docs/admin/release_notes/version_1.3.md | 15 +++++++++++++++ mkdocs.yml | 3 +++ notes.txt | 0 pyproject.toml | 2 +- 4 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 docs/admin/release_notes/version_1.3.md delete mode 100644 notes.txt diff --git a/docs/admin/release_notes/version_1.3.md b/docs/admin/release_notes/version_1.3.md new file mode 100644 index 00000000..7d25b513 --- /dev/null +++ b/docs/admin/release_notes/version_1.3.md @@ -0,0 +1,15 @@ +# v1.3.0 Release Notes + +## Release Overview + +The 1.3 release of Design Builder introduces a new functionality that complements the traditional deployment mode. The designs, if defined for, can now be deployed with life cycle capacity, so after being created, they can be updated with new input data (indefinitely) and decommissioned (i.e., reverting the data to the original state). This new approach requires of new models to track all the information in the database. + +Also, as a complement, the design deployments run with the new mode can (optionally) prevent direct modification of the objects or attributes under control of a design. This means that is an object was created by a device, only the design decommissioning can remove it. + +## [v1.3.0] - 2024-06 + +### Added + +- Add a new mode that tracks the design deployment providing capacity to updates and decommission (life cycle management) + +- Provide data protection (optional) for data that has been created or modified by a design deployment. diff --git a/mkdocs.yml b/mkdocs.yml index 38942f2b..a0045c19 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -118,6 +118,9 @@ nav: - "admin/release_notes/index.md" - v1.0: "admin/release_notes/version_1.0.md" - v1.1: "admin/release_notes/version_1.1.md" + - v1.2: "admin/release_notes/version_1.2.md" + - v1.3: "admin/release_notes/version_1.3.md" + - Developer Guide: - Extending the App: "dev/extending.md" - Contributing to the App: "dev/contributing.md" diff --git a/notes.txt b/notes.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/pyproject.toml b/pyproject.toml index b3f6f571..8dacd4bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nautobot-design-builder" -version = "1.2.0" +version = "1.3.0" description = "Nautobot app that uses design templates to easily create data objects in Nautobot with minimal input from a user." authors = ["Network to Code, LLC "] license = "Apache-2.0"