NEWS 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  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. s3cmd-2.2.0 - 2021-09-27
  21. ===============
  22. * Added support for metadata modification of files bigger than 5 GiB
  23. * Added support for remote copy of files bigger than 5 GiB using MultiPart copy (Damian Martinez, Florent Viard)
  24. * Added progress info output for multipart copy and current-total info in output for cp, mv and modify
  25. * Added support for all special/foreign character names in object names to cp/mv/modify
  26. * Added support for SSL authentication (Aleksandr Chazov)
  27. * Added the http error 429 to the list of retryable errors (#1096)
  28. * Added support for listing and resuming of multipart uploads of more than 1000 parts (#346)
  29. * Added time based expiration for idle pool connections in order to avoid random broken pipe errors (#1114)
  30. * Added support for STS webidentity authentication (ie AssumeRole and AssumeRoleWithWebIdentity) (Samskeyti, Florent Viard)
  31. * Added support for custom headers to the mb command (#1197) (Sébastien Vajda)
  32. * Improved MultiPart copy to preserve acl and metadata of objects
  33. * Improved the server errors catching and reporting for cp/mv/modify commands
  34. * Improved resiliency against servers sending garbage responses (#1088, #1090, #1093)
  35. * Improved remote copy to have consistent copy of metadata in all cases: multipart or not, aws or not
  36. * Improved security by revoking public-write acl when private acl is set (#1151) (ruanzitao)
  37. * Improved speed when running on an EC2 instance (#1117) (Patrick Allain)
  38. * Reduced connection_max_age to 5s to avoid broken pipes as AWS closes https conns after around 6s (#1114)
  39. * Ensure that KeyboardInterrupt are always properly raised (#1089)
  40. * Changed sized of multipart copy chunks to 1 GiB
  41. * Fixed ValueError when using more than one ":" inside add_header in config file (#1087)
  42. * Fixed extra label issue when stdin used as source of a MultiPart upload
  43. * Fixed remote copy to allow changing the mime-type (ie content-type) of the new object
  44. * Fixed remote_copy to ensure that meta-s3cmd-attrs will be set based on the real source and not on the copy source
  45. * Fixed deprecation warnings due to invalid escape sequences (Karthikeyan Singaravelan)
  46. * Fixed getbucketinfo that was broken when the bucket lifecycle uses the filter element (Liu Lan)
  47. * Fixed RestoreRequest XML namespace URL (#1203) (Akete)
  48. * Fixed PARTIAL exit code that was not properly set when needed for object_get (#1190)
  49. * Fixed a possible inifinite loop when a file is truncated during hashsum or upload (#1125) (Matthew Krokosz, Florent Viard)
  50. * Fixed report_exception wrong error when LANG env var was not set (#1113)
  51. * Fixed wrong wiki url in error messages (Alec Barrett)
  52. * Py3: Fixed an AttributeError when using the "files-from" option
  53. * Py3: Fixed compatibility issues due to the removal of getchildren() from ElementTree in python 3.9 (#1146, #1157, #1162, # 1182, #1210) (Ondřej Budai)
  54. * Py3: Fixed compatibility issues due to the removal of encodestring() in python 3.9 (#1161, #1174) (Kentaro Kaneki)
  55. * Fixed a crash when the AWS_ACCESS_KEY env var is set but not AWS_SECRET_KEY (#1201)
  56. * Cleanup of check_md5 (Riccardo Magliocchetti)
  57. * Removed legacy code for dreamhost that should be necessary anymore
  58. * Migrated CI tests to use github actions (Arnaud Jaffre)
  59. * Improved README with a link to INSTALL.md (Sia Karamalegos)
  60. * Improved help content (Dmitrii Korostelev, Roland Van Laar)
  61. * Improvements for setup and build configurations
  62. * Many other bug fixes
  63. s3cmd-2.1.0 - 2020-04-07
  64. ===============
  65. * Changed size reporting using k instead of K as it a multiple of 1024 (#956)
  66. * Added "public_url_use_https" config to generate public url using https (#551, #666) (Jukka Nousiainen)
  67. * Added option to make connection pooling configurable and improvements (Arto Jantunen)
  68. * Added support for path-style bucket access to signurl (Zac Medico)
  69. * Added docker configuration and help to run test cases with multiple Python versions (Doug Crozier)
  70. * Relaxed limitation on special chars for --add-header key names (#1054)
  71. * Fixed all regions that were automatically converted to lower case (Harshavardhana)
  72. * Fixed size and alignment of DU and LS output reporting (#956)
  73. * Fixes for SignatureDoesNotMatch error when host port 80 or 443 is specified, due to stupid servers (#1059)
  74. * Fixed the useless retries of requests that fail because of ssl cert checks
  75. * Fixed a possible crash when a file disappears during cache generation (#377)
  76. * Fixed unicode issues with IAM (#987)
  77. * Fixed unicode errors with bucked Policy/CORS requests (#847) (Alex Offshore)
  78. * Fixed unicode issues when loading aws_credential_file (#989)
  79. * Fixed an issue with the tenant feature of CephRGW. Url encode bucket_name for path-style requests (#1080)
  80. * Fixed signature v2 always used when bucket_name had special chars (#1081)
  81. * Allow to use signature v4 only, even for commands without buckets specified (#1082)
  82. * Fixed small open file descriptor leaks.
  83. * Py3: Fixed hash-bang in headers to not force using python2 when setup/s3cmd/run-test scripts are executed directly.
  84. * Py3: Fixed unicode issues with Cloudfront (#1006)
  85. * Py3: Fixed http.client.RemoteDisconnected errors (#1014) (Ryan Huddleston)
  86. * Py3: Fixed 'dictionary changed size during iteration' error when using a cache-file (#945) (Doug Crozier)
  87. * Py3: Fixed the display of file sizes (Vlad Presnyak)
  88. * Py3: Python 3.8 compatibility fixes (Konstantin Shalygin)
  89. * Py2: Fixed unicode errors sometimes crashing remote2remote sync (#847)
  90. * Added s3cmd.egg-info to .gitignore (Philip Dubé)
  91. * Improved run-test script to not use hard-coded bucket names(#1066) (Doug Crozier)
  92. * Renamed INSTALL to INSTALL.md and improvements (Nitro, Prabhakar Gupta)
  93. * Improved the restore command help (Hrchu)
  94. * Updated the storage-class command help with the recent aws s3 classes (#1020)
  95. * Fixed typo in the --continue-put help message (Pengyu Chen)
  96. * Fixed typo (#1062) (Tim Gates)
  97. * Improvements for setup and build configurations
  98. * Many other bug fixes
  99. s3cmd-2.0.2 - 2018-07-15
  100. ===============
  101. * Fixed unexpected timeouts encountered during requests or transfers due to AWS strange connection short timeouts (#941)
  102. * Fixed a throttle issue slowing down too much transfers in some cases (#913)
  103. * Added support for $AWS_PROFILE (#966) (Taras Postument)
  104. * Added clarification comment for the socket_timeout configuration value OS limit
  105. * Avoid distutils usage at runtime (Matthias Klose)
  106. * Python 2 compatibility: Fixed import error of which with fallback code (Gianfranco Costamagna)
  107. * Fixed Python 3 bytes string encoding when getting IAM credentials (Alexander Allakhverdiyev)
  108. * Fixed handling of config tri-state bool values (like acl_public) (Brian C. Lane)
  109. * Fixed V2 signature when restore command is used (Jan Kasiak)
  110. * Fixed setting full_control on objects with public read access (Matthew Vernon)
  111. * Fixed a bug when only one path is supplied with Cloudfront. (Mikael Svensson)
  112. * Fixed signature errors with 'modify' requests (Radek Simko)
  113. * Fixed #936 - Fix setacl command exception (Robert Moucha)
  114. * Fixed error reporting if deleting a source object failed after a move (#929)
  115. * Many other bug fixes (#525, #933, #940, #947, #957, #958, #960, #967)
  116. Important info: AWS S3 doesn't allow anymore uppercases and underscores in bucket names since march 1, 2018
  117. s3cmd-2.0.1 - 2017-10-21
  118. ===============
  119. * Support for Python 3 is now stable
  120. * Fixed signature issues due to upper cases in hostname (#920)
  121. * Improved support for Minio Azure gateway (Julien Maitrehenry, Harshavardhana)
  122. * Added signurl_use_https option to use https prefix for signurl (Julien Recurt)
  123. * Fixed a lot of remaining issues and regressions for Python 3 (#922, #921, #908)
  124. * Fixed --configure option with Python 3
  125. * Fixed non string cmdline parameters being ignored
  126. * Windows support fixes (#922)
  127. * Don't force anymore to have a / on last parameter for the "modify" command (#886)
  128. * Removed the python3 support warning
  129. * Detect and report error 403 in getpolicy for info command (#894)
  130. * Added a specific error message when getting policy by non owner (#885)
  131. * Many other bug fixes (#905, #892, #890, #888, #889, #887)
  132. s3cmd-2.0.0 - 2017-06-26
  133. ===============
  134. * Added support for Python 3 (Shaform, Florent Viard)
  135. * Added getlifecycle command (Daniel Gryniewicz)
  136. * Added --cf-inval for invalidating multiple CF distributions (Joe Mifsud)
  137. * Added --limit to "ls" and "la" commands to return the specified number of objects (Masashi Ozawa)
  138. * Added --token-refresh and --no-token-refresh and get the access token from the environment (Marco Jakob)
  139. * Added --restore-priority and --restore-days for S3 Glacier (Robert Palmer)
  140. * Fixed requester pays header with HEAD requests (Christian Rodriguez)
  141. * Don't allow mv/cp of multiple files to single file (Guy Gur-Ari)
  142. * Generalize wildcard certificate forgiveness (Mark Titorenko)
  143. * Multiple fixes for SSL connections and proxies
  144. * Added support for HTTP 100-CONTINUE
  145. * Fixes for s3-like servers
  146. * Big cleanup and many unicode fixes
  147. * Many other bug fixes
  148. s3cmd-1.6.1 - 2016-01-20
  149. ===============
  150. * Added --host and --host-bucket
  151. * Added --stats
  152. * Fix for newer python 2.7.x SSL library updates
  153. * Many other bug fixes
  154. s3cmd-1.6.0 - 2015-09-18
  155. ===============
  156. * Support signed URL content disposition type
  157. * Added 'ls -l' long listing including storage class
  158. * Added --limit-rate=RATE
  159. * Added --server-side-encryption-kms-id=KEY_ID
  160. * Added --storage-class=CLASS
  161. * Added --requester-pays, [payer] command
  162. * Added --[no-]check-hostname
  163. * Added --stop-on-error, removed --ignore-failed-copy
  164. * Added [setcors], [delcors] commands
  165. * Added support for cn-north-1 region hostname checks
  166. * Output strings may have changed. Scripts calling s3cmd expecting
  167. specific text may need to be updated.
  168. * HTTPS is now the default
  169. * Many unicode fixes
  170. * Many other bug fixes
  171. s3cmd-1.5.2 - 2015-02-08
  172. ===============
  173. * Handle unvalidated SSL certificate. Necessary on Ubuntu 14.04 for
  174. SSL to function at all.
  175. * packaging fixes (require python-magic, drop ez_setup)
  176. s3cmd-1.5.1.2 - 2015-02-04
  177. ===============
  178. * fix PyPi install
  179. s3cmd-1.5.1 - 2015-02-04
  180. ===============
  181. * Sort s3cmd ls output by bucket name (Andrew Gaul)
  182. * Support relative expiry times in signurl. (Chris Lamb)
  183. * Fixed issue with mixed path separators with s3cmd get --recursive on
  184. Windows. (Luke Winslow)
  185. * fix S3 wildcard certificate checking
  186. * Handle headers with spaces in their values properly (#460)
  187. * Fix lack of SSL certificate checking libraries on older python
  188. * set content-type header for stdin from command line or Config()
  189. * fix uploads from stdin (#464)
  190. * Fix directory exclusions (#467)
  191. * fix signurl
  192. * Don't retry in response to HTTP 405 error (#422)
  193. * Don't crash when a proxy returns an invalid XML error document
  194. s3cmd-1.5.0 - 2015-01-12
  195. ===============
  196. * add support for newer regions such as Frankfurt that
  197. require newer authorization signature v4 support
  198. (Vasileios Mitrousis, Michal Ludvig, Matt Domsch)
  199. * drop support for python 2.4 due to signature v4 code.
  200. python 2.6 is now the minimum, and python 3 is still not supported.
  201. * handle redirects to the "right" region for a bucket.
  202. * add --ca-cert=FILE for self-signed certs (Matt Domsch)
  203. * allow proxied SSL connections with python >= 2.7 (Damian Gerow)
  204. * add --remove-headers for [modify] command (Matt Domsch)
  205. * add -s/--ssl and --no-ssl options (Viktor Szakáts)
  206. * add --signature-v2 for backwards compatibility with S3 clones.
  207. * bugfixes by 17 contributors
  208. s3cmd 1.5.0-rc1 - 2014-06-29
  209. ===============
  210. * add environment variable S3CMD_CONFIG (Devon Jones),
  211. access key and secre keys (Vasileios Mitrousis)
  212. * added modify command (Francois Gaudin)
  213. * better debug messages (Matt Domsch)
  214. * faster batch deletes (Matt Domsch)
  215. * Added support for restoring files from Glacier storage (Robert Palmer)
  216. * Add and remove full lifecycle policies (Sam Rudge)
  217. * Add support for object expiration (hrchu)
  218. * bugfixes by 26 contributors
  219. s3cmd 1.5.0-beta1 - 2013-12-02
  220. =================
  221. * Brougt to you by Matt Domsch and contributors, thanks guys! :)
  222. * Multipart upload improvements (Eugene Brevdo, UENISHI Kota)
  223. * Allow --acl-grant on AWS groups (Dale Lovelace)
  224. * Added Server-Side Encryption support (Kevin Daub)
  225. * Improved MIME types detections and content encoding (radomir,
  226. Eric Drechsel, George Melika)
  227. * Various smaller changes and bugfixes from many contributors
  228. s3cmd 1.5.0-alpha3 - 2013-03-11
  229. ==================
  230. * Persistent HTTP/HTTPS connections for massive speedup (Michal Ludvig)
  231. * New switch --quiet for suppressing all output (Siddarth Prakash)
  232. * Honour "umask" on file downloads (Jason Dalton)
  233. * Various bugfixes from many contributors
  234. s3cmd 1.5.0-alpha2 - 2013-03-04
  235. ==================
  236. * IAM roles support (David Kohen, Eric Dowd)
  237. * Manage bucket policies (Kota Uenishi)
  238. * Various bugfixes from many contributors
  239. s3cmd 1.5.0-alpha1 - 2013-02-19
  240. ==================
  241. * Server-side copy for hardlinks/softlinks to improve performance
  242. (Matt Domsch)
  243. * New [signurl] command (Craig Ringer)
  244. * Improved symlink-loop detection (Michal Ludvig)
  245. * Add --delete-after option for sync (Matt Domsch)
  246. * Handle empty return bodies when processing S3 errors.
  247. (Kelly McLaughlin)
  248. * Upload from STDIN (Eric Connell)
  249. * Updated bucket locations (Stefhen Hovland)
  250. * Support custom HTTP headers (Brendan O'Connor, Karl Matthias)
  251. * Improved MIME support (Karsten Sperling, Christopher Noyes)
  252. * Added support for --acl-grant/--acl-revoke to 'sync' command
  253. (Michael Tyson)
  254. * CloudFront: Support default index and default root invalidation
  255. (Josep del Rio)
  256. * Command line options for access/secret keys (Matt Sweeney)
  257. * Support [setpolicy] for setting bucket policies (Joe Fiorini)
  258. * Respect the $TZ environment variable (James Brown)
  259. * Reduce memory consumption for [s3cmd du] (Charlie Schluting)
  260. * Rate limit progress updates (Steven Noonan)
  261. * Download from S3 to a temp file first (Sumit Kumar)
  262. * Reuse a single connection when doing a bucket list (Kelly McLaughlin)
  263. * Delete empty files if object_get() failed (Oren Held)
  264. s3cmd 1.1.0 - (never released)
  265. ===========
  266. * MultiPart upload enabled for both [put] and [sync]. Default chunk
  267. size is 15MB.
  268. * CloudFront invalidation via [sync --cf-invalidate] and [cfinvalinfo].
  269. * Increased socket_timeout from 10 secs to 5 mins.
  270. * Added "Static WebSite" support [ws-create / ws-delete / ws-info]
  271. (contributed by Jens Braeuer)
  272. * Force MIME type with --mime-type=abc/xyz, also --guess-mime-type
  273. is now on by default, -M is no longer shorthand for --guess-mime-type
  274. * Allow parameters in MIME types, for example:
  275. --mime-type="text/plain; charset=utf-8"
  276. * MIME type can be guessed by python-magic which is a lot better than
  277. relying on the extension. Contributed by Karsten Sperling.
  278. * Support for environment variables as config values. For instance
  279. in ~/.s3cmd put "access_key=$S3_ACCESS_KEY". Contributed by Ori Bar.
  280. * Support for --configure checking access to a specific bucket instead
  281. of listing all buckets.
  282. Listing buckets requires the S3 ListAllMyBuckets permission which
  283. is typically not available to delegated IAM accounts. With this change,
  284. s3cmd --configure accepts an (optional) bucket uri as a parameter
  285. and if it's provided, the access check will just verify access to this
  286. bucket individually. Contributed by Mike Repass.
  287. * Allow STDOUT as a destination even for downloading multiple files.
  288. They will be output one after another without any delimiters!
  289. Contributed by Rob Wills.
  290. s3cmd 1.0.0 - 2011-01-18
  291. ===========
  292. * [sync] now supports --no-check-md5
  293. * Network connections now have 10s timeout
  294. * [sync] now supports bucket-to-bucket synchronisation
  295. * Added [accesslog] command.
  296. * Added access logging for CloudFront distributions
  297. using [cfmodify --log]
  298. * Added --acl-grant and --acl-revoke [Timothee Groleau]
  299. * Allow s3:// URI as well as cf:// URI as a distribution
  300. name for most CloudFront related commands.
  301. * Support for Reduced Redundancy Storage (--reduced-redundancy)
  302. * Follow symlinks in [put] and [sync] with --follow-symlinks
  303. * Support for CloudFront DefaultRootObject [Luke Andrew]
  304. s3cmd 0.9.9.91 - 2009-10-08
  305. ==============
  306. * Fixed invalid reference to a variable in failed upload handling.
  307. s3cmd 0.9.9.90 - 2009-10-06
  308. ==============
  309. * New command 'sign' for signing e.g. POST upload policies.
  310. * Fixed handling of filenames that differ only in
  311. capitalisation (eg blah.txt vs Blah.TXT).
  312. * Added --verbatim mode, preventing most filenames
  313. pre-processing. Good for fixing unreadable buckets.
  314. * Added --recursive support for [cp] and [mv], including
  315. multiple-source arguments, --include/--exclude, --dry-run, etc.
  316. * Added --exclude/--include and --dry-run for [del], [setacl].
  317. * Neutralise characters that are invalid in XML to avoid ExpatErrors.
  318. http://boodebr.org/main/python/all-about-python-and-unicode
  319. * New command [fixbucket] for for fixing invalid object names
  320. in a given Bucket. For instance names with  in them
  321. (not sure how people manage to upload them but they do).
  322. s3cmd 0.9.9 - 2009-02-17
  323. ===========
  324. New commands:
  325. * Commands for copying and moving objects, within or
  326. between buckets: [cp] and [mv] (Andrew Ryan)
  327. * CloudFront support through [cfcreate], [cfdelete],
  328. [cfmodify] and [cfinfo] commands. (sponsored by Joseph Denne)
  329. * New command [setacl] for setting ACL on existing objects,
  330. use together with --acl-public/--acl-private (sponsored by
  331. Joseph Denne)
  332. Other major features:
  333. * Improved source dirname handling for [put], [get] and [sync].
  334. * Recursive and wildcard support for [put], [get] and [del].
  335. * Support for non-recursive [ls].
  336. * Enabled --dry-run for [put], [get] and [sync].
  337. * Allowed removal of non-empty buckets with [rb --force].
  338. * Implemented progress meter (--progress / --no-progress)
  339. * Added --include / --rinclude / --(r)include-from
  340. options to override --exclude exclusions.
  341. * Added --add-header option for [put], [sync], [cp] and [mv].
  342. Good for setting e.g. Expires or Cache-control headers.
  343. * Added --list-md5 option for [ls].
  344. * Continue [get] partially downloaded files with --continue
  345. * New option --skip-existing for [get] and [sync].
  346. Minor features and bugfixes:
  347. * Fixed GPG (--encrypt) compatibility with Python 2.6.
  348. * Always send Content-Length header to satisfy some http proxies.
  349. * Fixed installation on Windows and Mac OS X.
  350. * Don't print nasty backtrace on KeyboardInterrupt.
  351. * Should work fine on non-UTF8 systems, provided all
  352. the files are in current system encoding.
  353. * System encoding can be overridden using --encoding.
  354. * Improved resistance to communication errors (Connection
  355. reset by peer, etc.)
  356. s3cmd 0.9.8.4 - 2008-11-07
  357. =============
  358. * Stabilisation / bugfix release:
  359. * Restored access to upper-case named buckets.
  360. * Improved handling of filenames with Unicode characters.
  361. * Avoid ZeroDivisionError on ultrafast links (for instance
  362. on Amazon EC2)
  363. * Re-issue failed requests (e.g. connection errors, internal
  364. server errors, etc).
  365. * Sync skips over files that can't be open instead of
  366. terminating the sync completely.
  367. * Doesn't run out of open files quota on sync with lots of
  368. files.
  369. s3cmd 0.9.8.3 - 2008-07-29
  370. =============
  371. * Bugfix release. Avoid running out-of-memory in MD5'ing
  372. large files.
  373. s3cmd 0.9.8.2 - 2008-06-27
  374. =============
  375. * Bugfix release. Re-upload file if Amazon doesn't send ETag
  376. back.
  377. s3cmd 0.9.8.1 - 2008-06-27
  378. =============
  379. * Bugfix release. Fixed 'mb' and 'rb' commands again.
  380. s3cmd 0.9.8 - 2008-06-23
  381. ===========
  382. * Added --exclude / --rexclude options for sync command.
  383. * Doesn't require $HOME env variable to be set anymore.
  384. * Better checking of bucket names to Amazon S3 rules.
  385. s3cmd 0.9.7 - 2008-06-05
  386. ===========
  387. * Implemented 'sync' from S3 back to local folder, including
  388. file attribute restoration.
  389. * Failed uploads are retried on lower speed to improve error
  390. resilience.
  391. * Compare MD5 of the uploaded file, compare with checksum
  392. reported by S3 and re-upload on mismatch.
  393. s3cmd 0.9.6 - 2008-02-28
  394. ===========
  395. * Support for setting / guessing MIME-type of uploaded file
  396. * Correctly follow redirects when accessing buckets created
  397. in Europe.
  398. * Introduced 'info' command both for buckets and objects
  399. * Correctly display public URL on uploads
  400. * Updated TODO list for everyone to see where we're heading
  401. * Various small fixes. See ChangeLog for details.
  402. s3cmd 0.9.5 - 2007-11-13
  403. ===========
  404. * Support for buckets created in Europe
  405. * Initial 'sync' support, for now local to s3 direction only
  406. * Much better handling of multiple args to put, get and del
  407. * Tries to use ElementTree from any available module
  408. * Support for buckets with over 1000 objects.
  409. s3cmd 0.9.4 - 2007-08-13
  410. ===========
  411. * Support for transparent GPG encryption of uploaded files
  412. * HTTP proxy support
  413. * HTTPS protocol support
  414. * Support for non-ASCII characters in uploaded filenames
  415. s3cmd 0.9.3 - 2007-05-26
  416. ===========
  417. * New command "du" for displaying size of your data in S3.
  418. (Basil Shubin)
  419. s3cmd 0.9.2 - 2007-04-09
  420. ===========
  421. * Lots of new documentation
  422. * Allow "get" to stdout (use "-" in place of destination file
  423. to get the file contents on stdout)
  424. * Better compatibility with Python 2.4
  425. * Output public HTTP URL for objects stored with Public ACL
  426. * Various bugfixes and improvements
  427. s3cmd 0.9.1 - 2007-02-06
  428. ===========
  429. * All commands now use S3-URIs
  430. * Removed hard dependency on Python 2.5
  431. * Experimental support for Python 2.4
  432. (requires external ElementTree module)
  433. s3cmd 0.9.0 - 2007-01-18
  434. ===========
  435. * First public release brings support for all basic Amazon S3
  436. operations: Creation and Removal of buckets, Upload (put),
  437. Download (get) and Removal (del) of files/objects.