Changelog for
python39-pynetbox-7.2.0-69.1.noarch.rpm :
* Thu Sep 07 2023 Martin Hauke
- Update to version 7.2.0
* Add support for NetBox v3.6.
* Wed Aug 30 2023 Matej Cepl - Clean up the SPEC file
* Tue Aug 29 2023 Martin Hauke - Update to version 7.1.0
* Add support for NetBox v3.5.
* Mon Jan 23 2023 Martin Hauke - Update to version 7.0.1
* Removed pre-NetBox 3.3 features.
* Fix custom_filed KeyError traceback.
* Mon Dec 12 2022 pgajdosAATTsuse.com- python-six is not required
* Sat Dec 10 2022 Martin Hauke - Update to version 7.0.0 BREAKING CHANGE
* Due to changes for a_terminations, b_terminations this version only supports NetBox 3.3 and later. Changes
* Enable available_ips for ip_ranges.
* Remove all Python2 related code.
* Do not skip plugins in endpoint URLs.
* Fix pickling exception with custom errors.
* Support NetBox 3.3 cabling models (breaking change).
* Wed Oct 05 2022 Yogalakshmi Arunachalam - Update to version 6.6.2
* ci: test against the currently supported python versions by AATTraddessi in #446 Fix pickling exception with custom errors by AATTkingtong in #459
* Thu Apr 07 2022 pgajdosAATTsuse.com- python-mock is not required for build
* Thu Feb 24 2022 Martin Hauke - Update to version 6.6.1
* Use devices as variable for example calls to nb.dcim.devices.
* Fixes #447: Remove extra self argument in Vlans.str().- Update to version 6.6.0
* Upgrade Black to the first non-beta release.
* Fix VirtualChassis.__str__(), make VirtualChassis.master a Devices object.- Update to version 6.5.0
* Docstring updates: remove secrets from examples.
* Fixes #427: Adds support for available-vlans child endpoint for VLAN groups.
* Mon Dec 27 2021 Martin Hauke - Update to version 6.4.1
* Adds support for HTTP 409 when allocation is unsuccessful.
* Set ObjectChanges.postchange_data and .prechange_data to JsonField.- Update to version 6.4.0
* Use display field in Record.__str__() to support future models
* Update docstrings for DetailEndpoint and Prefixes.available_
*
* Add wireless app (for NetBox 3.1+)
* Sun Dec 05 2021 Martin Hauke - Update to version 6.3.0
* Handle list results in DetailEndpoint.create().
* Define Permissions.constraints as JSON field to fix #398.
* Fixes manual pagination (#412) and argless filter.
* Makes .filter() with no args equivalent to .all(), 7.0 will remove the latter.
* Add Api.create_token() (for NetBox 3.0+)
* Add custom model name lookup to fix.
* Sun Oct 31 2021 Martin Hauke - Update to version 6.2.0
* Fixes bulk update/delete on both Endpoint and RecordSet.
* Sun Aug 01 2021 Martin Hauke - Update to version 6.1.3
* Adds dash-separated plugin endpoint name support- Do not longer build for python2 (upsteam dropped support).
* Fri Apr 16 2021 Martin Hauke - Update to version 6.1.2
* Fixes issue giving Endpoint.create() a list of dicts.
* Fri Apr 09 2021 Martin Hauke - Update to version 6.1.1
* Fixes issue with duplicate returns when threading is enabled.
* Fixes updates to config_context data.
* Re-implements ValueError from Endpoint.get() when used with kwargs and more than one result is found.- Update to version 6.1.0
* Adds a __next__ method to RecordSet objects.- Update to version 6.0.2
* Fix len() calls for empty RecordSet.
* Wed Apr 07 2021 Martin Hauke - Update to version 6.0.1
* Fixes broken DetailEndpoint.list().- Update to version 6.0.0
* BREAKING CHANGE Endpoint.all() and .filter() no longer return lists, instead they return a ReturnSet object now. Iterating over this object calls a generator which steps through paginated results now as-needed.
* Endpoint.all() and .filter() now accept a limit kwarg that controls the page size of paginated results.
* Fixes issue pickling responses from Endpoint.all() and `.filter().
* Implemented integration tests against four previous major NetBox releases.
* Ends python 2 support.
* Mon Jan 04 2021 Martin Hauke - Update to version 5.3.0
* Improves on Record._endpoint_from_url()\'s path parsing to avoid URL format issues.
* Wed Dec 30 2020 Martin Hauke - Update to version 5.2.1
* fix tests
* Wed Dec 30 2020 Martin Hauke - Update to version 5.2.0
* Adds support for the /dcim/interfaces/:id/trace endpoint via the .trace() method on an interface record.
* Add support for /api/users/ endpoints in NetBox 2.9+. Add Api.status() to be used with NetBox 2.10.0+.
* Sat Dec 26 2020 Martin Hauke - Update to version 5.1.2
* Fixes issue saving tags on NetBox 2.9+ instances (#311)
* Tue Dec 15 2020 Martin Hauke - Update to version 5.1.1
* Fixes bug with where URL was mangled calling .save()
* Thu Sep 24 2020 Martin Hauke - Update to version 5.1.0
* Add Basic plugins support (#290).
* Wed Sep 02 2020 Martin Hauke - Update to version 5.0.8
* Fixes malformed URL when calling .save() and .delete() on nested objects.
* Sat Aug 22 2020 Martin Hauke - Update to version 5.0.7
* Implement Record.__getitem__()- Update to version 5.0.6
* Fixes issue when calling attributes by their dict keys where we only returned the key\'s name instead of its value.
* Thu Jul 16 2020 Martin Hauke - Update to version 5.0.5
* Fixes issue with unchanged tags being reordered when .save() is called that caused unnecessary updates to NetBox.
* Wed Jul 08 2020 Martin Hauke - Update to version 5.0.4
* Fixes issue saving local_config_context attribute on objects
* Mon Jul 06 2020 Martin Hauke - Update to version 5.0.3
* Fixes issue with threads overwriting Request.filters.
* Mon Jul 06 2020 Martin Hauke - Udpate to version 5.0.2
* Fixes Api.get_version() to use the session object.
* Fri Jun 26 2020 Martin Hauke - Update to version 5.0.1
* Fixes #240 by adding an Api.openapi() method that returns a dictionary of the entire OpenAPI spec. Breaking Changes
* Fixes #239, #229, #219, #209, #189, and #166 by allowing Api.http_session to be overridden by user-supplied custom requests.Session() objects to more precisely control certain requests behavior. While this was possible before, it wasn\'t applied to all requests. For example, getting session keys was done in Api().__init__() which wouldn\'t respect a custom http_session. This behavior has been changed and will now only occur when the secrets endpoint is called.
* Note: this change removes the ssl_verify kwarg passed to .api() that controlled certificate validation in previous versions. Please see the docs for the new method.
* Fixes #241 where the same objects failed equality tests if one was derived from a nested object vs directly from that endpoint
* Fixes an inconsistency noted in #224 by making Endpoint.get() and Endpoint.filter() behave similarly (return None) when the resource isn\'t found.
* Fixes #144 by returning proper objects from .create() on detail endpoint routes like available-ips and available-prefixes.
* Sat Jun 13 2020 Martin Hauke - Use github source URL- Update to version 4.3.2
* Adds support for the rack elevation endpoint in NetBox 2.8- Update to version 4.3.1
* Makes config_contex on virtualization record objects a JsonField.
* Mon Mar 23 2020 pgajdosAATTsuse.com- version update to 4.3.0
* Adds the ability to thread calls to NetBox from .filter() and .all() methods. (PR #216)
* Tue Feb 11 2020 Martin Hauke - Update to version 4.2.5
* save() is not idempotent when dealing with choice objects from NetBox 2.7
* Sun Jan 12 2020 Martin Hauke - Update to version 4.2.4
* Fixes Nested Record Write methods