Skip to content

Commit

Permalink
Prepping the 2.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdowling committed Oct 16, 2014
1 parent a9c432f commit 937a39c
Show file tree
Hide file tree
Showing 5 changed files with 784 additions and 251 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
CHANGELOG
=========

2.7.1 (2014-10-16)
------------------

* Updated the Amazon RDS client to the 2014-09-01 API version.
* Added support for advanced Japanese language processing to the Amazon
CloudSearch client.

2.7.0 (2014-10-08)
------------------

Expand Down
45 changes: 45 additions & 0 deletions src/Aws/CloudSearch/Resources/cloudsearch-2013-01-01.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@
'StemmingDictionary' => array(
'type' => 'string',
),
'JapaneseTokenizationDictionary' => array(
'type' => 'string',
),
'AlgorithmicStemming' => array(
'type' => 'string',
),
Expand Down Expand Up @@ -1689,6 +1692,17 @@
'SearchInstanceCount' => array(
'type' => 'numeric',
),
'Limits' => array(
'type' => 'object',
'properties' => array(
'MaximumReplicationCount' => array(
'type' => 'numeric',
),
'MaximumPartitionCount' => array(
'type' => 'numeric',
),
),
),
),
),
),
Expand Down Expand Up @@ -1722,6 +1736,9 @@
'StemmingDictionary' => array(
'type' => 'string',
),
'JapaneseTokenizationDictionary' => array(
'type' => 'string',
),
'AlgorithmicStemming' => array(
'type' => 'string',
),
Expand Down Expand Up @@ -2160,6 +2177,9 @@
'StemmingDictionary' => array(
'type' => 'string',
),
'JapaneseTokenizationDictionary' => array(
'type' => 'string',
),
'AlgorithmicStemming' => array(
'type' => 'string',
),
Expand Down Expand Up @@ -2245,6 +2265,17 @@
'SearchInstanceCount' => array(
'type' => 'numeric',
),
'Limits' => array(
'type' => 'object',
'properties' => array(
'MaximumReplicationCount' => array(
'type' => 'numeric',
),
'MaximumPartitionCount' => array(
'type' => 'numeric',
),
),
),
),
),
),
Expand Down Expand Up @@ -2660,6 +2691,9 @@
'StemmingDictionary' => array(
'type' => 'string',
),
'JapaneseTokenizationDictionary' => array(
'type' => 'string',
),
'AlgorithmicStemming' => array(
'type' => 'string',
),
Expand Down Expand Up @@ -2785,6 +2819,17 @@
'SearchInstanceCount' => array(
'type' => 'numeric',
),
'Limits' => array(
'type' => 'object',
'properties' => array(
'MaximumReplicationCount' => array(
'type' => 'numeric',
),
'MaximumPartitionCount' => array(
'type' => 'numeric',
),
),
),
),
),
),
Expand Down
2 changes: 1 addition & 1 deletion src/Aws/Common/Aws.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Aws extends ServiceBuilder
/**
* @var string Current version of the SDK
*/
const VERSION = '2.7.0';
const VERSION = '2.7.1';

/**
* Create a new service locator for the AWS SDK
Expand Down
4 changes: 3 additions & 1 deletion src/Aws/Rds/RdsClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
* @method Model addSourceIdentifierToSubscription(array $args = array()) {@command Rds AddSourceIdentifierToSubscription}
* @method Model addTagsToResource(array $args = array()) {@command Rds AddTagsToResource}
* @method Model authorizeDBSecurityGroupIngress(array $args = array()) {@command Rds AuthorizeDBSecurityGroupIngress}
* @method Model copyDBParameterGroup(array $args = array()) {@command Rds CopyDBParameterGroup}
* @method Model copyDBSnapshot(array $args = array()) {@command Rds CopyDBSnapshot}
* @method Model copyOptionGroup(array $args = array()) {@command Rds CopyOptionGroup}
* @method Model createDBInstance(array $args = array()) {@command Rds CreateDBInstance}
* @method Model createDBInstanceReadReplica(array $args = array()) {@command Rds CreateDBInstanceReadReplica}
* @method Model createDBParameterGroup(array $args = array()) {@command Rds CreateDBParameterGroup}
Expand Down Expand Up @@ -103,7 +105,7 @@
*/
class RdsClient extends AbstractClient
{
const LATEST_API_VERSION = '2013-09-09';
const LATEST_API_VERSION = '2014-09-01';

/**
* Factory method to create a new Amazon Relational Database Service client using an array of configuration options.
Expand Down
Loading

0 comments on commit 937a39c

Please sign in to comment.