summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Lindsley <daniel@toastdriven.com>2013-09-16 14:42:28 -0700
committerDaniel Lindsley <daniel@toastdriven.com>2013-09-16 14:42:28 -0700
commit1ab0270cceca3ff30f5abb23951a6fb991ed3da4 (patch)
tree0e42cde76bf94470744355e8489722469f0fa738
parentd7fa338a2fea84d1479fb916da3c579e3fbc1c61 (diff)
parent2cd9c475dbb9910471d0eaf21a4585f72e780b15 (diff)
downloadboto-1ab0270cceca3ff30f5abb23951a6fb991ed3da4.tar.gz
Merge branch 'release-v2.13.2'v2.13.2
* release-v2.13.2: Bumping version to v2.13.2 Finalized the release notes. Corrected erroneous test failures in Cloudsearch post-move to SigV4.
-rw-r--r--boto/__init__.py2
-rw-r--r--docs/source/releasenotes/v2.13.2.rst (renamed from docs/source/releasenotes/dev.rst)20
-rw-r--r--tests/unit/cloudsearch/test_connection.py15
3 files changed, 18 insertions, 19 deletions
diff --git a/boto/__init__.py b/boto/__init__.py
index 99c59af2..fb5982b4 100644
--- a/boto/__init__.py
+++ b/boto/__init__.py
@@ -36,7 +36,7 @@ import logging.config
import urlparse
from boto.exception import InvalidUriError
-__version__ = 'v2.13.1'
+__version__ = 'v2.13.2'
Version = __version__ # for backware compatibility
UserAgent = 'Boto/%s Python/%s %s/%s' % (
diff --git a/docs/source/releasenotes/dev.rst b/docs/source/releasenotes/v2.13.2.rst
index 1036ef36..4e3d6842 100644
--- a/docs/source/releasenotes/dev.rst
+++ b/docs/source/releasenotes/v2.13.2.rst
@@ -1,15 +1,18 @@
-boto v2.xx.x
+boto v2.13.2
============
-:date: 2013/xx/xx
+:date: 2013/09/16
-This release adds ____.
+This release is a bugfix-only release, correcting several problems in EC2 as
+well as S3, DynamoDB v2 & SWF.
+.. note::
-Features
---------
+ There was no v2.13.1 release made public. There was a packaging error that
+ was discovered before it was published to PyPI.
-* . (:issue:``, :sha:``)
+ We apologise for the fault in the releases. Those responsible have been
+ sacked.
Bugfixes
@@ -26,6 +29,11 @@ Bugfixes
:sha:`0a52c82`)
* Fixed ``run_instances`` with a block device mapping. (:issue:`1723`,
:sha:`974743f`, :sha:`9049f05`, :sha:`d7edafc`)
+* Fixed ``s3put`` to accept headers with a ``=`` in them. (:issue:`1700`,
+ :sha:`7958c70`)
+* Fixed a bug in DynamoDB v2 where scans with filters over large sets may not
+ return all values. (:issue:`1713`, :sha:`02893e1`)
+* Cloudsearch now uses SigV4. (:sha:`b2bdbf5`)
* Several documentation improvements/fixes:
* Added the "Apps Built On Boto" doc. (:sha:`3bd628c`)
diff --git a/tests/unit/cloudsearch/test_connection.py b/tests/unit/cloudsearch/test_connection.py
index d2f67526..d77c1a73 100644
--- a/tests/unit/cloudsearch/test_connection.py
+++ b/tests/unit/cloudsearch/test_connection.py
@@ -47,11 +47,8 @@ class TestCloudSearchCreateDomain(AWSMockServiceTestCase):
self.assert_request_parameters({
'Action': 'CreateDomain',
'DomainName': 'demo',
- 'AWSAccessKeyId': 'aws_access_key_id',
- 'SignatureMethod': 'HmacSHA256',
- 'SignatureVersion': 2,
'Version': '2011-02-01',
- }, ignore_params_values=['Timestamp'])
+ })
def test_cloudsearch_connect_result_endpoints(self):
"""Check that endpoints & ARNs are correctly returned from AWS"""
@@ -158,11 +155,8 @@ class CloudSearchConnectionDeletionTest(AWSMockServiceTestCase):
self.assert_request_parameters({
'Action': 'DeleteDomain',
'DomainName': 'demo',
- 'AWSAccessKeyId': 'aws_access_key_id',
- 'SignatureMethod': 'HmacSHA256',
- 'SignatureVersion': 2,
'Version': '2011-02-01',
- }, ignore_params_values=['Timestamp'])
+ })
class CloudSearchConnectionIndexDocumentTest(AWSMockServiceTestCase):
@@ -215,11 +209,8 @@ class CloudSearchConnectionIndexDocumentTest(AWSMockServiceTestCase):
self.assert_request_parameters({
'Action': 'IndexDocuments',
'DomainName': 'demo',
- 'AWSAccessKeyId': 'aws_access_key_id',
- 'SignatureMethod': 'HmacSHA256',
- 'SignatureVersion': 2,
'Version': '2011-02-01',
- }, ignore_params_values=['Timestamp'])
+ })
def test_cloudsearch_index_documents_resp(self):
"""