14
0

Accepting request 883644 from home:mnhauke:network:automation

- 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.

OBS-URL: https://build.opensuse.org/request/show/883644
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pynetbox?expand=0&rev=43
This commit is contained in:
2021-04-07 20:06:09 +00:00
committed by Git OBS Bridge
parent ce117fd297
commit 0099ccbb42
4 changed files with 24 additions and 5 deletions

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Wed Apr 7 15:27:32 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- 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 4 21:48:00 UTC 2021 - Martin Hauke <mardnh@gmx.de>