Releases: Kinto/kinto-http.py
Releases · Kinto/kinto-http.py
10.3.0
10.2.0
10.1.1
10.1.0
10.0.0
Breaking changes
By default, the client now raises an exception when a 4XX error occurs in a batch request (#154)
In order to ignore those errors as before, instantiate the client with ignore_batch_4xx=True
.
New feature
- Raise a specific
CollectionNotFound
exception rather than a genericKintoException
.
Bug fixes
- Handle date and datetime object in a Kinto payload. They will be
formated as ISO date JSON strings.
Internal changes
- Update tests to work with Kinto 11.0.0.
- Update tests to use stdlib mock module.
9.1.2
9.1.1
9.1.0
Significant changes
- When the server returns a
409 Conflict
error response, the request will
be retried if theretry
parameter is superior to zero (fixes #167)
New Features
- Expose kinto-http and Python module version in the User-Agent (#157)
- Support different PATCH types. Now, instead of settling for the
"default" patch method offered by the Kinto server, you can choose
by importing a PatchType subclass fromkinto_http.patch_type
. (Fixes #125.)
Bug fixes
- No longer support
method
arguments on theupdate_bucket
,
update_group
,update_collection
, andupdate_record
methods. This argument only existed to support thepatch_*
methods and was never intended to be part of the public API.