Releases: netbox-community/pynetbox
Releases · netbox-community/pynetbox
6.1.2
6.1.1
6.1.0
6.0.2
6.0.1
6.0.0
- BREAKING CHANGE
Endpoint.all()
and.filter()
no longer return lists, instead they return aReturnSet
object now. Iterating over this object calls a generator which steps through paginated results now as-needed. Endpoint.all()
and.filter()
now accept alimit
kwarg that controls the page size of paginated results.- Fixes issue pickling responses from
Endpoint.all()
and `.filter() (#331, thanks again @markkuleinio). - Implemented integration tests against four previous major NetBox releases (thanks @raddessi).
- Ends python 2 support.
5.3.1
5.3.0
5.2.1
5.2.0
- Adds support for the
/dcim/interfaces/:id/trace
endpoint via the.trace()
method on an interface record. #280 (Thanks @raddessi) - Add support for
/api/users/
endpoints in NetBox 2.9+. #313 (Thanks @markkuleinio) - Add Api.status() to be used with NetBox 2.10.0+. #314 (Thanks @markkuleinio)
- Fixes bug in
Endpoint.get()
to return None when a non-existent object is queried by ID. #292 (Thanks @Dimaqa)