authors/changelog updates for 3.5.0 release

Change-Id: I70b79c0fd6e9adbfdcc799459dc52063c7402be2
This commit is contained in:
John Dickinson 2018-01-23 11:15:26 +11:00
parent 2faea93287
commit b91651eba0
3 changed files with 38 additions and 0 deletions

View File

@ -42,6 +42,7 @@ Florent Flament (florent.flament-ext@cloudwatt.com)
Greg Holt (gholt@rackspace.com)
Greg Lange (greglange@gmail.com)
groqez (groqez@yopmail.net)
Hangdong Zhang (hdzhang@fiberhome.com)
Hemanth Makkapati (hemanth.makkapati@mailtrust.com)
hgangwx (hgangwx@cn.ibm.com)
Hirokazu Sakata (h.sakata@staff.east.ntt.co.jp)

View File

@ -1,3 +1,22 @@
3.5.0
-----
* Allow for object uploads > 5GB from stdin.
When uploading from standard input, swiftclient will turn the upload
into an SLO in the case of large objects. By default, input larger
than 10MB will be uploaded as an SLO with 10MB segment sizes. Users
can also supply the ``--segment-size`` option to alter that
threshold and the SLO segment size. One segment is buffered in
memory (which is why 10MB default was chosen).
* The ``--meta`` option can now be set on the upload command.
* Updated PyPy test dependency references to be more accurate
on different distros.
* Various other minor bug fixes and improvements.
3.4.0
-----

View File

@ -0,0 +1,18 @@
---
features:
- |
Allow for object uploads > 5GB from stdin.
When uploading from standard input, swiftclient will turn the upload
into an SLO in the case of large objects. By default, input larger
than 10MB will be uploaded as an SLO with 10MB segment sizes. Users
can also supply the ``--segment-size`` option to alter that
threshold and the SLO segment size. One segment is buffered in
memory (which is why 10MB default was chosen).
- |
The ``--meta`` option can now be set on the upload command.
- |
Updated PyPy test dependency references to be more accurate
on different distros.