tempest/releasenotes/notes/12.1.0-support-chunked-encoding-d71f53225f68edf3.yaml
Ken'ichi Ohmichi 396c9ed378 Rename renos of 12.1.0
We have released a lot of features via Tempest versions and created a
lot of renos. That makes us difficult to select suitable reno files
when adding new features because of many versions.
So it is nice to rename reno files to add versions as the prefix.
This patch renames renos of 12.1.0.

Change-Id: I725130e2a303001a891b2e0119288e0e085e2ab4
2016-09-21 01:56:39 -07:00

10 lines
400 B
YAML

---
features:
- The RestClient (in tempest.lib.common.rest_client) now supports POSTing
and PUTing data with chunked transfer encoding. Just pass an `iterable`
object as the `body` argument and set the `chunked` argument to `True`.
- A new generator called `chunkify` is added in
tempest.lib.common.utils.data_utils that yields fixed-size chunks (slices)
from a Python sequence.