Skip to content

Commit c1b44e9

Browse files
committed
Release v0.4.0
1 parent 54b3236 commit c1b44e9

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

docs/changelog.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
11
# Change Log
22

3-
## FUTURE
3+
## v0.4.0
44

55
### Enhancements
66

77
* [#52](https://github.com/netboxlabs/nbl-netbox-branching/issues/52) - Introduce the `max_branches` config parameter
8+
* [#71](https://github.com/netboxlabs/nbl-netbox-branching/issues/71) - Ensure the consistent application of logging messages
9+
* [#76](https://github.com/netboxlabs/nbl-netbox-branching/issues/76) - Validate required configuration items on initialization
810

911
### Bug Fixes
1012

1113
* [#57](https://github.com/netboxlabs/nbl-netbox-branching/issues/57) - Avoid recording ChangeDiff records for unsupported object types
1214
* [#59](https://github.com/netboxlabs/nbl-netbox-branching/issues/59) - `BranchAwareRouter` should consider branching support for model when determining database connection to use
15+
* [#61](https://github.com/netboxlabs/nbl-netbox-branching/issues/61) - Fix transaction rollback when performing a dry run sync
16+
* [#66](https://github.com/netboxlabs/nbl-netbox-branching/issues/66) - Capture object representation on ChangeDiff when creating a new object within a branch
17+
* [#69](https://github.com/netboxlabs/nbl-netbox-branching/issues/69) - Represent null values for ChangeDiff fields consistently in REST API
18+
* [#73](https://github.com/netboxlabs/nbl-netbox-branching/issues/73) - Ensure all relevant branch diffs are updated when an object is modified in main
1319

1420
---
1521

netbox_branching/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class AppConfig(PluginConfig):
99
name = 'netbox_branching'
1010
verbose_name = 'NetBox Branching'
1111
description = 'A git-like branching implementation for NetBox'
12-
version = '0.3.1'
12+
version = '0.4.0'
1313
base_url = 'branching'
1414
min_version = '4.1'
1515
middleware = [

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "netboxlabs-netbox-branching"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
description = "A git-like branching implementation for NetBox"
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)