diff --git a/CHANGELOG.md b/CHANGELOG.md index dac23e1..b17406c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,31 @@ ## [Unreleased](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/tree/HEAD) -[Full Changelog](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/compare/v0.3.2...HEAD) +[Full Changelog](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/compare/v0.3.3...HEAD) + +**Closed issues:** + +- "Select all matching query" not working. [\#50](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/issues/50) + +## [v0.3.3](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/tree/v0.3.3) (2024-10-15) + +[Full Changelog](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/compare/v0.4.0...v0.3.3) + +## [v0.4.0](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/tree/v0.4.0) (2024-07-03) + +[Full Changelog](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/compare/v0.3.2...v0.4.0) **Closed issues:** - Syntax Issue [\#48](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/issues/48) - Form Invalid When Importing Data Types via API Due to Missing "\_init\_time" Field [\#43](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/issues/43) +- Add Test Cases [\#39](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/issues/39) + +**Merged pull requests:** + +- Release v0.4.0 [\#52](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/pull/52) ([abhi1693](https://github.com/abhi1693)) +- NB-17 Support Added for NetBox v4.0 [\#51](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/pull/51) ([yash-pal1](https://github.com/yash-pal1)) +- Test Cases Added [\#47](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/pull/47) ([yash-pal1](https://github.com/yash-pal1)) ## [v0.3.2](https://github.com/Onemind-Services-LLC/netbox-metatype-importer/tree/v0.3.2) (2024-03-11) diff --git a/netbox_metatype_importer/views.py b/netbox_metatype_importer/views.py index 6f22bc4..184e271 100644 --- a/netbox_metatype_importer/views.py +++ b/netbox_metatype_importer/views.py @@ -207,9 +207,11 @@ class MetaModuleTypeImportView(GenericTypeImportView): class MetaDeviceTypeBulkDeleteView(generic.BulkDeleteView): queryset = MetaType.objects.filter(type=TypeChoices.TYPE_DEVICE) + filterset = MetaTypeFilterSet table = MetaTypeTable class MetaModuleTypeBulkDeleteView(generic.BulkDeleteView): queryset = MetaType.objects.filter(type=TypeChoices.TYPE_MODULE) + filterset = MetaTypeFilterSet table = MetaTypeTable diff --git a/setup.py b/setup.py index a4b1a7e..e072b17 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='netbox-metatype-importer', - version='0.4.0', + version='0.4.1', description='Easily import Device and Module types from GitHub repo', long_description='Import MetaTypes into NetBox', long_description_content_type="text/markdown",