diff options
-rw-r--r-- | .mailmap | 3 | ||||
-rw-r--r-- | AUTHORS | 13 | ||||
-rw-r--r-- | ChangeLog | 43 |
3 files changed, 57 insertions, 2 deletions
@@ -86,3 +86,6 @@ Stanislaw Pitucha <stanislaw.pitucha@hpe.com> <stanislaw.pitucha@hp.com> Mahati Chamarthy <mahati.chamarthy@gmail.com> Peter Lisak <peter.lisak@firma.seznam.cz> Doug Hellmann <doug@doughellmann.com> <doug.hellmann@dreamhost.com> +Ondrej Novy <ondrej.novy@firma.seznam.cz> +James Nzomo <james@tdt.rocks> <kazikubwa@gmail.com> +Alessandro Pilotti <ap@pilotti.it> <apilotti@cloudbasesolutions.com> @@ -10,11 +10,14 @@ Clint Byrum (clint@fewbar.com) Tristan Cacqueray (tristan.cacqueray@enovance.com) Sergio Cazzolato (sergio.j.cazzolato@intel.com) Mahati Chamarthy (mahati.chamarthy@gmail.com) +Chaozhe.Chen (chaozhe.chen@easystack.cn) Ray Chen (oldsharp@163.com) +Li Cheng (shcli@cn.ibm.com) Taurus Cheung (Taurus.Cheung@harmonicinc.com) Alistair Coles (alistair.coles@hpe.com) Ian Cordasco (ian.cordasco@rackspace.com) Nick Craig-Wood (nick@craig-wood.com) +Thiago da Silva (thiago@redhat.com) Sean Dague (sean@dague.net) Zack M. Davis (zdavis@swiftstack.com) John Dickinson (me@not.mn) @@ -38,7 +41,7 @@ Charles Hsu (charles0126@gmail.com) Kun Huang (gareth@unitedstack.com) Matthieu Huin (mhu@enovance.com) Andreas Jaeger (aj@suse.de) -OpenStack Jenkins (jenkins@openstack.org) +Jude Job (judeopenstack@gmail.com) Vasyl Khomenko (vasiliyk@yahoo-inc.com) Leah Klearman (lklrmn@gmail.com) Jaivish Kothari (jaivish.kothari@nectechnologies.in) @@ -52,6 +55,7 @@ Peter Lisak (peter.lisak@firma.seznam.cz) Feng Liu (mefengliu23@gmail.com) Jing Liuqing (jing.liuqing@99cloud.net) Hemanth Makkapati (hemanth.makkapati@mailtrust.com) +Pratik Mallya (pratik.mallya@gmail.com) Steve Martinelli (stevemar@ca.ibm.com) Juan J. Martinez (juan@memset.com) Donagh McCabe (donagh.mccabe@hpe.com) @@ -59,13 +63,14 @@ Ben McCann (ben@benmccann.com) Andy McCrae (andy.mccrae@gmail.com) Stuart McLaren (stuart.mclaren@hpe.com) Samuel Merritt (sam@swiftstack.com) +Min Min Ren (rminmin@cn.ibm.com) Jola Mirecka (jola.mirecka@hp.com) Hiroshi Miura (miurahr@nttdata.co.jp) Sam Morrison (sorrison@gmail.com) Dirk Mueller (dirk@dmllr.de) Zhenguo Niu (zhenguo@unitedstack.com) Ondrej Novy (ondrej.novy@firma.seznam.cz) -Alessandro Pilotti (apilotti@cloudbasesolutions.com) +James Nzomo (james@tdt.rocks) Alessandro Pilotti (ap@pilotti.it) Stanislaw Pitucha (stanislaw.pitucha@hpe.com) Dan Prince (dprince@redhat.com) @@ -77,6 +82,7 @@ Mark Seger (mark.seger@hpe.com) Chuck Short (chuck.short@canonical.com) David Shrewsbury (shrewsbury.dave@gmail.com) Pradeep Kumar Singh (pradeep.singh@nectechnologies.in) +Alexandra Settle (alexandra.settle@rackspace.com) Jeremy Stanley (fungi@yuggoth.org) Victor Stinner (victor.stinner@enovance.com) Jiří Suchomel (jsuchome@suse.cz) @@ -103,3 +109,6 @@ tanlin (lin.tan@intel.com) yangxurong (yangxurong@huawei.com) yuxcer (yuxcer@126.com) zhang-jinnan (ben.os@99cloud.net) +hgangwx (hgangwx@cn.ibm.com) +shu-mutou (shu-mutou@rf.jp.nec.com) +SaiKiran (saikiranveeravarapu@gmail.com) @@ -1,3 +1,46 @@ +2.8.0 +----- + +* Python 2.6 support has been removed. Also, Python 3.3 gate testing has + been removed. Support for Python 3.3 is only best-effort. Currently + supported and tested versions of Python are Python 2.7 and Python 3.4. + +* Do not reveal sensitive headers in swiftclient log messages by default. + This is controlled by the client.logger_settings dictionary. Setting the + `redact_sensitive_headers` key to False prevents the information hiding. If + the value is True (the default), the `reveal_sensitive_prefix` controls + the maximum length of any sensitive header value logged. The default is + 16 to match the default in Swift. + +* Object downloads that fail partway through will now retry with a Range + request to read the rest of the object. + +* Object uploads will be retried if the source supports seek/tell or has a + reset() method. + +* Delete requests will use the cluster's bulk delete feature, if available, + for requests that would require a lot of individual deletes. + +* The delete CLI option now accepts a --prefix option to delete objects that + start with the given prefix (similar to the same-named option for list). + +* Add support for the auth-version to be specified using + --os-identity-api-version or OS_IDENTITY_API_VERSION + for compatibility with other openstack client command + line options. + +* --debug and --info command-line options now work anywhere in the command. + +* Objects can now be uploaded to pseudo-directories with the CLI. + +* Fixed an issue with uploading a large object that includes a unicode path. + +* swiftclient can now auth against Keystone using only a project (tenant) + and a token. This is useful when the client doesn't have access to the + password for a user but otherwise has been granted access. + +* Various other minor bug fixes and improvements. + 2.7.0 ----- |