Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion netbox_branching/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down