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 9f5263ca..1ed4f327 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -120,6 +120,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 d9ce2937..e5cd12e7 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"