summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Dickinson <me@not.mn>2018-01-23 11:15:26 +1100
committerJohn Dickinson <me@not.mn>2018-01-24 08:36:58 +1100
commitb91651eba09ed43903c55f24e3a1a52aefeea75f (patch)
treec610e3a576310c483039a1a6ec2f075f3a993bff
parent2faea932870956583f83226886d33304ee1eee46 (diff)
downloadpython-swiftclient-3.5.0.tar.gz
authors/changelog updates for 3.5.0 release3.5.0
Change-Id: I70b79c0fd6e9adbfdcc799459dc52063c7402be2
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog19
-rw-r--r--releasenotes/notes/350_notes-ad0ae19704b2eb88.yaml18
3 files changed, 38 insertions, 0 deletions
diff --git a/AUTHORS b/AUTHORS
index bf69dba..388d870 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -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)
diff --git a/ChangeLog b/ChangeLog
index 967d7e2..efa7e8a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
-----
diff --git a/releasenotes/notes/350_notes-ad0ae19704b2eb88.yaml b/releasenotes/notes/350_notes-ad0ae19704b2eb88.yaml
new file mode 100644
index 0000000..2e6b4ea
--- /dev/null
+++ b/releasenotes/notes/350_notes-ad0ae19704b2eb88.yaml
@@ -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.