Skip to content
Merged
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
17 changes: 17 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## 0.4.2
---

### Enhancements

- [#278](https://github.com/netboxlabs/netbox-custom-objects/issues/278) - Add bulk import buttons to nav sidebar
- [#282](https://github.com/netboxlabs/netbox-custom-objects/issues/282) - Allow Admins to limit the number of Custom Object Types

### Bug Fixes

- [#266](https://github.com/netboxlabs/netbox-custom-objects/issues/266) - Creating / editing Custom Object via API with field type Multiple Object fails
- [#283](https://github.com/netboxlabs/netbox-custom-objects/issues/283) - IntegrityError when deleting a CO that is referenced by another CO
- [#287](https://github.com/netboxlabs/netbox-custom-objects/issues/287) - Description field missing from API views
- [#290](https://github.com/netboxlabs/netbox-custom-objects/issues/290) - Improve API object_types Labels for Custom Object Types
- [#313](https://github.com/netboxlabs/netbox-custom-objects/issues/313) - Cap number of "Custom Objects linking to this object" on Detail view


## 0.4.1
---

Expand Down
2 changes: 1 addition & 1 deletion netbox_custom_objects/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class CustomObjectsPluginConfig(PluginConfig):
name = "netbox_custom_objects"
verbose_name = "Custom Objects"
description = "A plugin to manage custom objects in NetBox"
version = "0.4.1"
version = "0.4.2"
author = 'Netbox Labs'
author_email = 'support@netboxlabs.com'
base_url = "custom-objects"
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-custom-objects"
version = "0.4.1"
version = "0.4.2"
description = "A plugin to manage custom objects in NetBox"
readme = "README.md"
requires-python = ">=3.10"
Expand Down