Skip to content

Commit

Permalink
Merge pull request #58 from Onemind-Services-LLC/dev
Browse files Browse the repository at this point in the history
Release v0.4.1
  • Loading branch information
kprince28 authored Oct 15, 2024
2 parents b04f241 + 43b633c commit d892ad7
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 2 additions & 0 deletions netbox_metatype_importer/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit d892ad7

Please sign in to comment.