Skip to content

Commit bff5ad5

Browse files
committed
Update version to 2.3.0
1 parent d43f30d commit bff5ad5

File tree

3 files changed

+37
-2
lines changed

3 files changed

+37
-2
lines changed

NEWS

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
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+
122
s3cmd-2.2.0 - 2021-09-27
223
===============
324
* Added support for metadata modification of files bigger than 5 GiB

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.2.0"
10+
version = "2.3.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: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,15 @@ Get a lifecycle policy for the bucket
117117
.TP
118118
s3cmd \fBdellifecycle\fR \fIs3://BUCKET\fR
119119
Remove a lifecycle policy for the bucket
120+
.TP
121+
s3cmd \fBsetnotification\fR \fIFILE s3://BUCKET\fR
122+
Upload a notification policy for the bucket
123+
.TP
124+
s3cmd \fBgetnotification\fR \fIs3://BUCKET\fR
125+
Get a notification policy for the bucket
126+
.TP
127+
s3cmd \fBdelnotification\fR \fIs3://BUCKET\fR
128+
Remove a notification policy for the bucket
120129

121130

122131
.PP
@@ -445,6 +454,11 @@ maximum is 5GB.
445454
Include MD5 sums in bucket listings (only for 'ls'
446455
command).
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
449463
Print sizes in human readable form (eg 1kB instead of
450464
1234).
@@ -524,7 +538,7 @@ Enable verbose output.
524538
Enable 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
530544
Follow symbolic links as if they are regular files

0 commit comments

Comments
 (0)