New features
client.list()
now returns an iterable with a special propertyresourceVersion
to implement list + watch pattern by @XeCycle in #88
Bug fixes
- Httpx 0.28.x compatibility by @gtsystem in #82
- Fix autocomplete regression in vscode introduced in #74 by @gtsystem in #85
Breaking changes
- As part of the new feature above,
client.list()
now returns an Iteratable instead of an Iterator. If you are consuming the list usingnext()
you will need to get an iterator first callingiter(list)
. No changes are needed If you are consuming the returned data via a for loop.
Full Changelog: v0.16.0...v0.17.0