You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* [#109](https://github.com/digitalocean/pynetbox/issues/109) - Clean up tests a bit.
8
+
* Added cable endpoint support coming in NetBox 2.5.
9
+
* Added some detail to the ValueError raised when `.get()` returns more than one object.
10
+
* Added reserved kwargs to `.get()` and `.filter()` ("id", "pk", "limit", "offset").
11
+
* 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).
12
+
13
+
## API Changes
14
+
15
+
* [#22](https://github.com/digitalocean/pynetbox/issues/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.
16
+
* [#24](https://github.com/digitalocean/pynetbox/issues/24) - Add basic support for the `_choices` endpoint on each app by adding a `choices()` method to the App object.
17
+
* [#108](https://github.com/digitalocean/pynetbox/issues/108) - Return `Record` objects from `.create()`.
18
+
19
+
## Bug Fixes
20
+
21
+
* [#88](https://github.com/digitalocean/pynetbox/issues/88) - Raise an exception now if `.filter()` is passed no kwargs.
22
+
* [#90](https://github.com/digitalocean/pynetbox/issues/90) - Fixes some miscellaneous issues related to converting certain Record object's fields into netaddr.IPNetwork objects. That feature has been removed and it simply return strings now.
0 commit comments