2bbc49212e
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
10 lines
400 B
YAML
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.
|
|
|