File tree Expand file tree Collapse file tree 4 files changed +14
-8
lines changed
Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 22
33## [ Unreleased]
44
5+ ## [ 1.8.3] ( https://github.com/ICTU/netbox_slm/releases/tag/1.8.3 ) - 2025-12-18
6+
7+ ### Fixed
8+
9+ * Filters with default order by ID (#75 )
10+
511## [ 1.8.2] ( https://github.com/ICTU/netbox_slm/releases/tag/1.8.2 ) - 2025-06-02
612
713### Fixed
814
9- * Permission check for adding software product installations (#70 )
15+ * Permission check for adding software product installations (#70 )
1016
1117## [ 1.8.1] ( https://github.com/ICTU/netbox_slm/releases/tag/1.8.1 ) - 2025-04-11
1218
1319### Fixed
1420
15- * Filtering on foreign objects (#65 )
21+ * Filtering on foreign objects (#65 )
1622
1723## [ 1.8.0] ( https://github.com/ICTU/netbox_slm/releases/tag/1.8.0 ) - 2025-02-25
1824
Original file line number Diff line number Diff line change 1616
1717from netbox .plugins import PluginConfig
1818
19- __version__ = "1.8.2 "
19+ __version__ = "1.8.3 "
2020
2121
2222class SLMConfig (PluginConfig ):
Original file line number Diff line number Diff line change @@ -27,24 +27,24 @@ def get_view_name(self):
2727
2828
2929class SoftwareProductViewSet (NetBoxModelViewSet ):
30- queryset = SoftwareProduct .objects .all ()
30+ queryset = SoftwareProduct .objects .all (). order_by ( "id" )
3131 serializer_class = SoftwareProductSerializer
3232 filterset_class = SoftwareProductFilterSet
3333
3434
3535class SoftwareProductVersionViewSet (NetBoxModelViewSet ):
36- queryset = SoftwareProductVersion .objects .all ()
36+ queryset = SoftwareProductVersion .objects .all (). order_by ( "id" )
3737 serializer_class = SoftwareProductVersionSerializer
3838 filterset_class = SoftwareProductVersionFilterSet
3939
4040
4141class SoftwareProductInstallationViewSet (NetBoxModelViewSet ):
42- queryset = SoftwareProductInstallation .objects .all ()
42+ queryset = SoftwareProductInstallation .objects .all (). order_by ( "id" )
4343 serializer_class = SoftwareProductInstallationSerializer
4444 filterset_class = SoftwareProductInstallationFilterSet
4545
4646
4747class SoftwareLicenseViewSet (NetBoxModelViewSet ):
48- queryset = SoftwareLicense .objects .all ()
48+ queryset = SoftwareLicense .objects .all (). order_by ( "id" )
4949 serializer_class = SoftwareLicenseSerializer
5050 filterset_class = SoftwareLicenseFilterSet
Original file line number Diff line number Diff line change 22sonar.organization =ictu
33sonar.projectKey =ICTU_netbox_slm
44sonar.projectName =netbox-slm
5- sonar.projectVersion =1.8.2
5+ sonar.projectVersion =1.8.3
66
77# Path is relative to the sonar-project.properties file
88sonar.sources =netbox_slm
You can’t perform that action at this time.
0 commit comments