Skip to content

Commit 5db139e

Browse files
committed
Update version to 2.2.0
1 parent 3017dfc commit 5db139e

File tree

3 files changed

+48
-3
lines changed

3 files changed

+48
-3
lines changed

NEWS

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
s3cmd-2.2.0 - 2021-09-27
2+
===============
3+
* Added support for metadata modification of files bigger than 5 GiB
4+
* Added support for remote copy of files bigger than 5 GiB using MultiPart copy (Damian Martinez, Florent Viard)
5+
* Added progress info output for multipart copy and current-total info in output for cp, mv and modify
6+
* Added support for all special/foreign character names in object names to cp/mv/modify
7+
* Added support for SSL authentication (Aleksandr Chazov)
8+
* Added the http error 429 to the list of retryable errors (#1096)
9+
* Added support for listing and resuming of multipart uploads of more than 1000 parts (#346)
10+
* Added time based expiration for idle pool connections in order to avoid random broken pipe errors (#1114)
11+
* Added support for STS webidentity authentication (ie AssumeRole and AssumeRoleWithWebIdentity) (Samskeyti, Florent Viard)
12+
* Added support for custom headers to the mb command (#1197) (Sébastien Vajda)
13+
* Improved MultiPart copy to preserve acl and metadata of objects
14+
* Improved the server errors catching and reporting for cp/mv/modify commands
15+
* Improved resiliency against servers sending garbage responses (#1088, #1090, #1093)
16+
* Improved remote copy to have consistent copy of metadata in all cases: multipart or not, aws or not
17+
* Improved security by revoking public-write acl when private acl is set (#1151) (ruanzitao)
18+
* Improved speed when running on an EC2 instance (#1117) (Patrick Allain)
19+
* Reduced connection_max_age to 5s to avoid broken pipes as AWS closes https conns after around 6s (#1114)
20+
* Ensure that KeyboardInterrupt are always properly raised (#1089)
21+
* Changed sized of multipart copy chunks to 1 GiB
22+
* Fixed ValueError when using more than one ":" inside add_header in config file (#1087)
23+
* Fixed extra label issue when stdin used as source of a MultiPart upload
24+
* Fixed remote copy to allow changing the mime-type (ie content-type) of the new object
25+
* Fixed remote_copy to ensure that meta-s3cmd-attrs will be set based on the real source and not on the copy source
26+
* Fixed deprecation warnings due to invalid escape sequences (Karthikeyan Singaravelan)
27+
* Fixed getbucketinfo that was broken when the bucket lifecycle uses the filter element (Liu Lan)
28+
* Fixed RestoreRequest XML namespace URL (#1203) (Akete)
29+
* Fixed PARTIAL exit code that was not properly set when needed for object_get (#1190)
30+
* Fixed a possible inifinite loop when a file is truncated during hashsum or upload (#1125) (Matthew Krokosz, Florent Viard)
31+
* Fixed report_exception wrong error when LANG env var was not set (#1113)
32+
* Fixed wrong wiki url in error messages (Alec Barrett)
33+
* Py3: Fixed an AttributeError when using the "files-from" option
34+
* Py3: Fixed compatibility issues due to the removal of getchildren() from ElementTree in python 3.9 (#1146, #1157, #1162, # 1182, #1210) (Ondřej Budai)
35+
* Py3: Fixed compatibility issues due to the removal of encodestring() in python 3.9 (#1161, #1174) (Kentaro Kaneki)
36+
* Fixed a crash when the AWS_ACCESS_KEY env var is set but not AWS_SECRET_KEY (#1201)
37+
* Cleanup of check_md5 (Riccardo Magliocchetti)
38+
* Removed legacy code for dreamhost that should be necessary anymore
39+
* Migrated CI tests to use github actions (Arnaud Jaffre)
40+
* Improved README with a link to INSTALL.md (Sia Karamalegos)
41+
* Improved help content (Dmitrii Korostelev, Roland Van Laar)
42+
* Improvements for setup and build configurations
43+
* Many other bug fixes
44+
45+
146
s3cmd-2.1.0 - 2020-04-07
247
===============
348
* Changed size reporting using k instead of K as it a multiple of 1024 (#956)

S3/PkgInfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
## Copyright: TGRMN Software and contributors
88

99
package = "s3cmd"
10-
version = "2.1.0-dev"
10+
version = "2.2.0"
1111
url = "http://s3tools.org"
1212
license = "GNU GPL v2+"
1313
short_description = "Command line tool for managing Amazon S3 and CloudFront services"

s3cmd.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ s3cmd \fBrestore\fR \fIs3://BUCKET/OBJECT\fR
5050
Restore file from Glacier storage
5151
.TP
5252
s3cmd \fBsync\fR \fILOCAL_DIR s3://BUCKET[/PREFIX] or s3://BUCKET[/PREFIX] LOCAL_DIR or s3://BUCKET[/PREFIX] s3://BUCKET[/PREFIX]\fR
53-
Synchronize a directory tree to S3 (checks files freshness using size and md5 checksum, unless overridden by options, see below) by default it preserves filesysem attributes. See --[no-]preserve for more information.
53+
Synchronize a directory tree to S3 (checks files freshness using size and md5 checksum, unless overridden by options, see below)
5454
.TP
5555
s3cmd \fBdu\fR \fI[s3://BUCKET[/PREFIX]]\fR
5656
Disk usage by buckets
@@ -524,7 +524,7 @@ Enable verbose output.
524524
Enable debug output.
525525
.TP
526526
\fB\-\-version\fR
527-
Show s3cmd version (2.1.0+) and exit.
527+
Show s3cmd version (2.2.0) and exit.
528528
.TP
529529
\fB\-F\fR, \fB\-\-follow\-symlinks\fR
530530
Follow symbolic links as if they are regular files

0 commit comments

Comments
 (0)