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
+
1
22
s3cmd-2.2.0 - 2021-09-27
2
23
===============
3
24
* Added support for metadata modification of files bigger than 5 GiB
Original file line number Diff line number Diff line change 7
7
## Copyright: TGRMN Software and contributors
8
8
9
9
package = "s3cmd"
10
- version = "2.2 .0"
10
+ version = "2.3 .0"
11
11
url = "http://s3tools.org"
12
12
license = "GNU GPL v2+"
13
13
short_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
117
117
.TP
118
118
s3cmd \fB dellifecycle \fR \fI s3://BUCKET \fR
119
119
Remove 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
120
129
121
130
122
131
.PP
@@ -445,6 +454,11 @@ maximum is 5GB.
445
454
Include MD5 sums in bucket listings (only for 'ls'
446
455
command).
447
456
.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
448
462
\fB \- H \fR , \fB \-\- human \- readable \- sizes \fR
449
463
Print sizes in human readable form (eg 1kB instead of
450
464
1234).
@@ -524,7 +538,7 @@ Enable verbose output.
524
538
Enable debug output.
525
539
.TP
526
540
\fB \-\- version \fR
527
- Show s3cmd version (2.2 .0) and exit.
541
+ Show s3cmd version (2.3 .0) and exit.
528
542
.TP
529
543
\fB \- F \fR , \fB \-\- follow \- symlinks \fR
530
544
Follow symbolic links as if they are regular files
You can’t perform that action at this time.
0 commit comments