From 882395d26a2477b763f7080323b39e0c5a52579a Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Sat, 29 Nov 2025 12:01:13 -0500 Subject: [PATCH] Release v0.7.3 --- docs/changelog.md | 12 ++++++++++++ netbox_branching/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 1f17c85..709355a 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,17 @@ # Change Log +## v0.7.3 + +### Bug Fixes + +* [#353](https://github.com/netboxlabs/netbox-branching/issues/353) - Prohibit altering branch status via REST API (establishes a dedicated endpoint for archiving) +* [#354](https://github.com/netboxlabs/netbox-branching/issues/354) - Ensure that queries for assigned tags utilize the active branch +* [#358](https://github.com/netboxlabs/netbox-branching/issues/358) - Enforce `CONN_MAX_AGE` timeout for branch database connections +* [#365](https://github.com/netboxlabs/netbox-branching/issues/365) - Temporarily disable object deletion check when syncing a branch from main to avoid validation failure +* [#371](https://github.com/netboxlabs/netbox-branching/issues/371) - Ignore module import errors when discovering object migrators (fixes `ModuleNotFoundError` exception raised when attempting to merge a branch) + +--- + ## v0.7.2 ### Enhancements diff --git a/netbox_branching/__init__.py b/netbox_branching/__init__.py index b991e0a..6206120 100644 --- a/netbox_branching/__init__.py +++ b/netbox_branching/__init__.py @@ -12,7 +12,7 @@ class AppConfig(PluginConfig): name = 'netbox_branching' verbose_name = 'NetBox Branching' description = 'A git-like branching implementation for NetBox' - version = '0.7.2' + version = '0.7.3' base_url = 'branching' min_version = '4.4.1' max_version = '4.4.99' diff --git a/pyproject.toml b/pyproject.toml index c202844..97c1b44 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "netboxlabs-netbox-branching" -version = "0.7.2" +version = "0.7.3" description = "A git-like branching implementation for NetBox" readme = "README.md" requires-python = ">=3.10"