-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for major versions >= 3 #21
Comments
Thanks for the suggestion, would you mind creating a PR for it ? |
Hi, i'd like to ask if this PR/Issue might have been forgotten or lost due to maintainer changes? |
@z-8-d Maintainers are not responding. Would guess they've moved on from NetBox to their NetBox-Derivate Nautobot and are not keen to help NetBox any further. |
Hi, In Netbox version 3.5.0, the file "/opt/netbox/netbox/extras/models/init.py" has changed. in version 3.4.x: **from .change_logging import ObjectChange all = ( In version 3.5.x, file content: **from .change_logging import * And in version 3.5.x, the class JobResult has been deleted in file "/opt/netbox/netbox/extras/models/models.py". BR, Chris. |
|
Environment
Steps to Reproduce
/api/plugins/metrics-ext/app-metrics
Expected Behavior
Regular output just as designed.
Observed Behavior
The cause is the version check in:
ntc-netbox-plugin-metrics-ext/netbox_metrics_ext/metrics.py
Line 54 in bc138d1
The minor version check rules out anything other than 9 or above.
So e.g. 3.9.0 would be allowed, while 3.0.2 is not.
Suggestion:
The text was updated successfully, but these errors were encountered: