From a163442e8d462fde404910516c870a5244d361ce Mon Sep 17 00:00:00 2001 From: Leo Kirchner Date: Wed, 31 Jul 2024 14:46:26 +0200 Subject: [PATCH] chore: prepares release 1.4.0 --- docs/admin/release_notes/version_1.4.md | 15 +++++++++++++++ mkdocs.yml | 1 + pyproject.toml | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/admin/release_notes/version_1.4.md diff --git a/docs/admin/release_notes/version_1.4.md b/docs/admin/release_notes/version_1.4.md new file mode 100644 index 0000000..6098733 --- /dev/null +++ b/docs/admin/release_notes/version_1.4.md @@ -0,0 +1,15 @@ +# v1.4.0 Release Notes + +## Release Overview + +The 1.4 release of Design Builder introduces new functionality that expands on the deployment mode introduced in 1.3. Pre-existing data (i.e. data not created by a design, or created by one not in deployment mode) can now be imported into a design deployment. This design deployment then owns the lifecycle of that data just like if it had been created by it. + +As a compliment on the other end of the lifecycle, the design decommissioning now has a checkbox for `delete` functionality. By default this is checked, which causes the decommissioning job to function as it did prior to the introduction of this feature. If you uncheck it, the data is unlinked from the design deployment, but _not_ deleted, somewhat like a reverse import. + + +## [v1.4.0] - 2024-07 + +### Added + +- Adds import functionality to deployment mode designs +- Adds the possibility to merely unlink and not delete objects associated with a design deployment during decommissioning diff --git a/mkdocs.yml b/mkdocs.yml index 1ed4f32..7e41104 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -122,6 +122,7 @@ nav: - 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" + - v1.4: "admin/release_notes/version_1.4.md" - Developer Guide: - Extending the App: "dev/extending.md" diff --git a/pyproject.toml b/pyproject.toml index e5cd12e..7cc7e46 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nautobot-design-builder" -version = "1.3.0" +version = "1.4.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"