File tree Expand file tree Collapse file tree 3 files changed +37
-2
lines changed
Expand file tree Collapse file tree 3 files changed +37
-2
lines changed Original file line number Diff line number Diff line change 1+ s3cmd-2.3.0 - 2022-10-03
2+ ===============
3+ * Added "getnotification", "setnotification", and "delnotification" commands for notification policies (hrchu)
4+ * Added support for AWS_STS_REGIONAL_ENDPOINTS (#1218, #1228) (Johan Lanzrein)
5+ * Added ConnectionRefused [111] exit code to handle connection errors (Salar Nosrati-Ershad)
6+ * Added support for IMDSv2. Should work automatically on ec2 (Anthony Foiani)
7+ * Added --list-allow-unordered to list objects unordered. Only supported by Ceph based s3-compatible services (#1269) (Salar Nosrati-Ershad)
8+ * Fixed --exclude dir behavior for python >= 3.6 (Daniil Tararukhin)
9+ * Fixed Cloudfront invalidate retry issue (Yuan-Hsiang Lee)
10+ * Fixed 0 byte cache files crashing s3cmd (#1234) (Carlos Laviola)
11+ * Fixed --continue behavior for the "get" command (#1009) (Anton Ustyugov)
12+ * Fixed unicode issue with fixbucket (#1259)
13+ * Fixed CannotSendRequest and ConnectionRefusedError errors at startup (#1261)
14+ * Fixed error reporting for object info when the object does not exist
15+ * Fixed "setup.py test" to do nothing to avoid failure that could be problematic for distribution packaging (#996)
16+ * Improved expire command to use Rule/Filter/Prefix for LifecycleConfiguration (#1247)
17+ * Improved PASS/CHECK/INCLUDE/EXCLUDE debug log messages
18+ * Improved setup.py with python 3.9 and 3.10 support info(Ori Avtalion)
19+ * Many other bug fixes
20+
21+
122s3cmd-2.2.0 - 2021-09-27
223===============
324* Added support for metadata modification of files bigger than 5 GiB
Original file line number Diff line number Diff line change 77## Copyright: TGRMN Software and contributors
88
99package = "s3cmd"
10- version = "2.2 .0"
10+ version = "2.3 .0"
1111url = "http://s3tools.org"
1212license = "GNU GPL v2+"
1313short_description = "Command line tool for managing Amazon S3 and CloudFront services"
Original file line number Diff line number Diff line change @@ -117,6 +117,15 @@ Get a lifecycle policy for the bucket
117117.TP
118118s3cmd \fB dellifecycle \fR \fI s3://BUCKET \fR
119119Remove a lifecycle policy for the bucket
120+ .TP
121+ s3cmd \fB setnotification \fR \fI FILE s3://BUCKET \fR
122+ Upload a notification policy for the bucket
123+ .TP
124+ s3cmd \fB getnotification \fR \fI s3://BUCKET \fR
125+ Get a notification policy for the bucket
126+ .TP
127+ s3cmd \fB delnotification \fR \fI s3://BUCKET \fR
128+ Remove a notification policy for the bucket
120129
121130
122131.PP
@@ -445,6 +454,11 @@ maximum is 5GB.
445454Include MD5 sums in bucket listings (only for 'ls'
446455command).
447456.TP
457+ \fB \-\- list \- allow \- unordered \fR
458+ Not an AWS standard. Allow the listing results to be
459+ returned in unsorted order. This may be faster when
460+ listing very large buckets.
461+ .TP
448462\fB \- H \fR , \fB \-\- human \- readable \- sizes \fR
449463Print sizes in human readable form (eg 1kB instead of
4504641234).
@@ -524,7 +538,7 @@ Enable verbose output.
524538Enable debug output.
525539.TP
526540\fB \-\- version \fR
527- Show s3cmd version (2.2 .0) and exit.
541+ Show s3cmd version (2.3 .0) and exit.
528542.TP
529543\fB \- F \fR , \fB \-\- follow \- symlinks \fR
530544Follow symbolic links as if they are regular files
You can’t perform that action at this time.
0 commit comments