Skip to content

Commit 800b9a1

Browse files
committed
Version 1.6.0
1 parent 2b47195 commit 800b9a1

File tree

3 files changed

+69
-10
lines changed

3 files changed

+69
-10
lines changed

NEWS

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
s3cmd-1.6.0 - 2015-09-18
2+
===============
3+
* Support signed URL content disposition type
4+
* Added 'ls -l' long listing including storage class
5+
* Added --limit-rate=RATE
6+
* Added --server-side-encryption-kms-id=KEY_ID
7+
* Added --storage-class=CLASS
8+
* Added --requester-pays, [payer] command
9+
* Added --[no-]check-hostname
10+
* Added --stop-on-error, removed --ignore-failed-copy
11+
* Added [setcors], [delcors] commands
12+
* Added support for cn-north-1 region hostname checks
13+
* Output strings may have changed. Scripts calling s3cmd expecting
14+
specific text may need to be updated.
15+
* HTTPS is now the default
16+
* Many unicode fixes
17+
* Many other bug fixes
18+
119
s3cmd-1.5.2 - 2015-02-08
220
===============
321
* Handle unvalidated SSL certificate. Necessary on Ubuntu 14.04 for

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 = "1.5.2"
10+
version = "1.6.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: 50 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,15 @@ Modify Bucket Policy
7676
s3cmd \fBdelpolicy\fR \fIs3://BUCKET\fR
7777
Delete Bucket Policy
7878
.TP
79+
s3cmd \fBsetcors\fR \fIFILE s3://BUCKET\fR
80+
Modify Bucket CORS
81+
.TP
82+
s3cmd \fBdelcors\fR \fIs3://BUCKET\fR
83+
Delete Bucket CORS
84+
.TP
85+
s3cmd \fBpayer\fR \fIs3://BUCKET\fR
86+
Modify Bucket Requester Pays policy
87+
.TP
7988
s3cmd \fBmultipart\fR \fIs3://BUCKET [Id]\fR
8089
Show multipart uploads
8190
.TP
@@ -100,7 +109,7 @@ Fix invalid file names in a bucket
100109
s3cmd \fBexpire\fR \fIs3://BUCKET\fR
101110
Set or delete expiration rule for the bucket
102111
.TP
103-
s3cmd \fBsetlifecycle\fR \fIs3://BUCKET\fR
112+
s3cmd \fBsetlifecycle\fR \fIFILE s3://BUCKET\fR
104113
Upload a lifecycle policy for the bucket
105114
.TP
106115
s3cmd \fBdellifecycle\fR \fIs3://BUCKET\fR
@@ -181,9 +190,10 @@ for file transfer commands)
181190
.TP
182191
\fB\-s\fR, \fB\-\-ssl\fR
183192
Use HTTPS connection when communicating with S3.
193+
(default)
184194
.TP
185195
\fB\-\-no\-ssl\fR
186-
Don't use HTTPS. (default)
196+
Don't use HTTPS.
187197
.TP
188198
\fB\-e\fR, \fB\-\-encrypt\fR
189199
Encrypt files before uploading to S3.
@@ -261,7 +271,8 @@ Don't delete remote objects.
261271
Perform deletes after new uploads [sync]
262272
.TP
263273
\fB\-\-delay\-updates\fR
264-
Put all updated files into place at end [sync]
274+
*OBSOLETE* Put all updated files into place at end
275+
[sync]
265276
.TP
266277
\fB\-\-max\-delete\fR=NUM
267278
Do not delete more than NUM files. [del] and [sync]
@@ -310,9 +321,6 @@ instead of GLOB
310321
\fB\-\-rinclude\-from\fR=FILE
311322
Read --rinclude REGEXPs from FILE
312323
.TP
313-
\fB\-\-ignore\-failed\-copy\fR
314-
Don't exit unsuccessfully because of missing keys
315-
.TP
316324
\fB\-\-files\-from\fR=FILE
317325
Read list of source-file names from FILE. Use - to
318326
read from stdin.
@@ -331,6 +339,11 @@ price. [put, cp, mv]
331339
Store object without 'Reduced redundancy'. Higher per\-
332340
GB price. [put, cp, mv]
333341
.TP
342+
\fB\-\-storage\-class\fR=CLASS
343+
Store object with specified CLASS (STANDARD,
344+
STANDARD_IA, or REDUCED_REDUNDANCY). Lower per\-GB
345+
price. [put, cp, mv]
346+
.TP
334347
\fB\-\-access\-logging\-target\-prefix\fR=LOG_TARGET_PREFIX
335348
Target prefix for access logs (S3 URI) (for [cfmodify]
336349
and [accesslog] commands)
@@ -373,6 +386,11 @@ Control' headers (or both) using this option. [modify]
373386
Specifies that server\-side encryption will be used
374387
when putting objects. [put, sync, cp, modify]
375388
.TP
389+
\fB\-\-server\-side\-encryption\-kms\-id\fR=KMS_KEY
390+
Specifies the key id used for server\-side encryption
391+
with AWS KMS\-Managed Keys (SSE\-KMS) when putting
392+
objects. [put, sync, cp, modify]
393+
.TP
376394
\fB\-\-encoding\fR=ENCODING
377395
Override autodetected terminal and filesystem encoding
378396
(character set). Autodetected: UTF\-8
@@ -477,7 +495,7 @@ Enable verbose output.
477495
Enable debug output.
478496
.TP
479497
\fB\-\-version\fR
480-
Show s3cmd version (1.5.2) and exit.
498+
Show s3cmd version (1.6.0) and exit.
481499
.TP
482500
\fB\-F\fR, \fB\-\-follow\-symlinks\fR
483501
Follow symbolic links as if they are regular files
@@ -496,7 +514,13 @@ default)
496514
Check SSL certificate validity
497515
.TP
498516
\fB\-\-no\-check\-certificate\fR
499-
Check SSL certificate validity
517+
Do not check SSL certificate validity
518+
.TP
519+
\fB\-\-check\-hostname\fR
520+
Check SSL certificate hostname validity
521+
.TP
522+
\fB\-\-no\-check\-hostname\fR
523+
Do not check SSL certificate hostname validity
500524
.TP
501525
\fB\-\-signature\-v2\fR
502526
Use AWS Signature version 2 instead of newer signature
@@ -507,6 +531,23 @@ AWS Signature v4 yet.
507531
Limit the upload or download speed to amount bytes per
508532
second. Amount may be expressed in bytes, kilobytes
509533
with the k suffix, or megabytes with the m suffix
534+
.TP
535+
\fB\-\-requester\-pays\fR
536+
Set the REQUESTER PAYS flag for operations
537+
.TP
538+
\fB\-l\fR, \fB\-\-long\-listing\fR
539+
Produce long listing [ls]
540+
.TP
541+
\fB\-\-stop\-on\-error\fR
542+
stop if error in transfer
543+
.TP
544+
\fB\-\-content\-disposition\fR=CONTENT_DISPOSITION
545+
Provide a Content\-Disposition for signed URLs, e.g.,
546+
"inline; filename=myvideo.mp4"
547+
.TP
548+
\fB\-\-content\-type\fR=CONTENT_TYPE
549+
Provide a Content\-Type for signed URLs, e.g.,
550+
"video/mp4"
510551

511552

512553
.SH EXAMPLES
@@ -614,7 +655,7 @@ or visit the project homepage:
614655
Report bugs to
615656
.I s3tools\-bugs@lists.sourceforge.net
616657
.SH COPYRIGHT
617-
Copyright \(co 2007\-2014 TGRMN Software \- http://www.tgrmn.com \- and contributors
658+
Copyright \(co 2007\-2015 TGRMN Software \- http://www.tgrmn.com \- and contributors
618659
.br
619660
.SH LICENSE
620661
This program is free software; you can redistribute it and/or modify

0 commit comments

Comments
 (0)