From 39ff8341e67a68220beb45e74a866531bc8efff1 Mon Sep 17 00:00:00 2001 From: Daniel Lindsley Date: Tue, 14 May 2013 09:27:20 -0700 Subject: [PATCH] Added release notes for 2.9.3. --- docs/source/index.rst | 1 + docs/source/releasenotes/v2.9.3.rst | 53 +++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 docs/source/releasenotes/v2.9.3.rst diff --git a/docs/source/index.rst b/docs/source/index.rst index 6c241c24e5..f9facc9744 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -111,6 +111,7 @@ Release Notes .. toctree:: :titlesonly: + releasenotes/v2.9.3 releasenotes/v2.9.2 releasenotes/v2.9.1 diff --git a/docs/source/releasenotes/v2.9.3.rst b/docs/source/releasenotes/v2.9.3.rst new file mode 100644 index 0000000000..a832337169 --- /dev/null +++ b/docs/source/releasenotes/v2.9.3.rst @@ -0,0 +1,53 @@ +boto v2.9.3 +=========== + +:date: 2013/05/15 + +This release adds ELB support to Opsworks, optimized EBS support in EC2 +AutoScale, Parallel Scan support to DynamoDB v2, a higher-level interface to +DynamoDB v2 and API updates to DataPipeline. + + +Features +-------- + +* ELB support in Opsworks - You can now attach & describe the Elastic Load + Balancers within the Opsworks client. (SHA: ecda87) +* Optimized EBS support in EC2 AutoScale - You can now specify whether an + AutoScale instance should be optimized for EBS I/O. (SHA: f8acaa) +* Parallel Scan support in DynamoDB v2 - If you have extra read capacity & + a large amount of data, you can scan over the records in parallel by + telling DynamoDB to split the table into segments, then spinning up + threads/processes to each run over their own segment. (SHA: db7f7b & 7ed73c) +* Higher-level interface to DynamoDB v2 - A more convenient API for using + DynamoDB v2. The :ref:`DynamoDB v2 Tutorial ` has more + information on how to use the new API. (SHA: 0f7c8b) + + +Backward-Incompatible Changes +----------------------------- + +* API Update for DataPipeline - The ``error_code`` (integer) argument to + ``set_task_status`` changed to ``error_id`` (string). Many documentation + updates were also added. (SHA: a78572) + + +Bugfixes +-------- + +* Bumped the AWS Support API version. (SHA: 0323f4) +* Fixed the S3 ``ResumableDownloadHandler`` so that it no longer tries to use + a hashing algorithm when used outside of GCS. (SHA: 29b046) +* Fixed a bug where Sig V4 URIs were improperly canonicalized. (SHA: 5269d8) +* Fixed a bug where Sig V4 ports were not included. (SHA: cfaba3) +* Fixed a bug in CloudWatch's ``build_put_params`` that would overwrite + existing/necessary variables. (SHA: 550e00) +* Several documentation improvements/fixes: + + * Added docs for RDS ``modify/modify_dbinstance``. (SHA: 777d73) + * Fixed a typo in the ``README.rst``. (SHA: 181e0f) + * Documentation fallout from the previous release. (SHA: 14a111) + * Fixed a typo in the EC2 ``Image.run`` docs. (SHA: 5edd6a) + * Added/improved docs for EC2 ``Image.run``. (SHA: 773ce5) + * Added a CONTRIBUTING doc. (SHA: cecbe8) + * Fixed S3 ``create_bucket`` docs to specify "European Union". (SHA: ddddfd)