Releases: netbox-community/pynetbox
Releases · netbox-community/pynetbox
v4.0.3
v4.0.2
v4.0.1
v4.0.0
v4.0.0 (2018-12-04)
Enhancements
- #109 - Clean up tests a bit.
- Added cable endpoint support coming in NetBox 2.5.
- Added some detail to the ValueError raised when
.get()
returns more than one object. - Added reserved kwargs to
.get()
and.filter()
("id", "pk", "limit", "offset"). - Made RequestError more verbose when the NetBox API returns a json response. Also added more details when a 404 is returned (e.g. misspelled endpoints).
API Changes
- #22 - Switch to using PATCH instead of PUTs for updates. Also added an
.update()
method to Response objects that takes a dictionary to update multiple values on the object. - #24 - Add basic support for the
_choices
endpoint on each app by adding achoices()
method to the App object. - #108 - Return
Record
objects from.create()
.
Bug Fixes
v4.0.0-rc.1
v4.0.0 (2018-12-04)
Enhancements
- #109 - Clean up tests a bit.
- Added cable endpoint support coming in NetBox 2.5.
- Added some detail to the ValueError raised when
.get()
returns more than one object. - Added reserved kwargs to
.get()
and.filter()
("id", "pk", "limit", "offset"). - Made RequestError more verbose when the NetBox API returns a json response. Also added more details when a 404 is returned (e.g. misspelled endpoints).
API Changes
- #22 - Switch to using PATCH instead of PUTs for updates. Also added an
.update()
method to Response objects that takes a dictionary to update multiple values on the object. - #24 - Add basic support for the
_choices
endpoint on each app by adding achoices()
method to the App object. - #108 - Return
Record
objects from.create()
.
Bug Fixes
v3.4.11
v3.4.10
v3.4.9
v3.4.8
-
Fixes #106 by adding a
units
DetailEndpoint onto the Racks object that lets users get the devices in a rack. Callingnetbox.dcim.racks.get(x).units.list()
will return a list ofRU
objects that have adevice
attribute populated with a Record object of the device in that RU. -
Fixes #110 in serializer that failed to handle tagged_vlans field correctly. This also added the ability for objects stored in lists to be turned into Record objects requested in #92