tempest/releasenotes/notes/12/12.1.0-support-chunked-encoding-d71f53225f68edf3.yaml
Masayuki Igawa 2bbc49212e
Tidy up releasenotes
This commit tidies up releasenotes. Originally, release note files are
in one directory. So, when I see the directory, I feel ""what a mess!".
So this commit tries to improve it.

Change-Id: I54c14a61ebcda16268cf543079c7739def5ebadb
2017-06-29 13:42:37 +09: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.