Skip to content

Commit

Permalink
Made minor updates to some docs and the README
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremeamia committed Apr 18, 2013
1 parent a9fc008 commit 01a950d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ CHANGELOG
specify keys. If you are not ready to upgrade to the new API, you can configure the SDK to use the previous version of
the API by setting the `version` option to `2011-12-05` when you instantiate the client (See
[`UPGRADING.md`](https://github.com/aws/aws-sdk-php/blob/master/UPGRADING.md)).
* Added an Amazon S3 stream wrapper that PHP native file functions to be used to interact with S3 buckets and objects
* Added an Amazon S3 stream wrapper that allows PHP native file functions to be used to interact with S3 buckets and
objects
* Added support for automatically retrying *throttled* requests with exponential backoff to all service clients
* Added a new config option (`version`) to client objects to specify the API version to use if multiple are supported
* Added a new config option (`gc_operation_delay`) to the DynamoDB Session Handler to specify a delay between requests
Expand All @@ -21,7 +22,8 @@ CHANGELOG
* Fixed an issue where service clients with a global endpoint could have their region for signing set incorrectly if a
region other than `us-east-1` was specified.
* Fixed an issue where reused command objects appended duplicate content to the user agent string
* [SDK] Fixed an issue in a few operations (including `SQS::receiveMessage`) where the `curl.options` could not be modified
* [SDK] Fixed an issue in a few operations (including `SQS::receiveMessage`) where the `curl.options` could not be
modified
* [Docs] Added key information to the DynamoDB service description to provide more accurate API docs for some operations
* [Docs] Added a page about Waiters to the user guide
* [Docs] Added a page about the DynamoDB Session Handler to the user guide
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ SDK through Composer][docs-installation] or by downloading a [single phar file][
* Convenience features including [Iterators][docs-iterators], [Waiters][docs-waiters], Enums, [modelled
responses][docs-models], and [service-specific exceptions][docs-exceptions].
* Multipart uploader for Amazon S3 and Amazon Glacier that can be paused and resumed.
* DynamoDB Session Handler for easily scaling sessions.
* [DynamoDB Session Handler][docs-ddbsh] for easily scaling sessions.
* Automatically uses [IAM Instance Profile Credentials][aws-iam-credentials] on configured Amazon EC2 instances.
* And more!

Expand Down Expand Up @@ -100,11 +100,12 @@ try {
[docs-installation]: http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/installation.html
[docs-quickstart]: http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/quick-start.html
[docs-iterators]: http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/quick-start.html#iterators
[docs-waiters]: http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/quick-start.html#waiters
[docs-models]: http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/quick-start.html#response-models
[docs-waiters]: http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/feature-waiters.html
[docs-models]: http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/feature-models.html
[docs-exceptions]: http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/quick-start.html#error-handling
[docs-wire-logging]: http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/faq.html#how-can-i-see-what-data-is-sent-over-the-wire
[docs-services]: http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/index.html#supported-services
[docs-ddbsh]: http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/feature-dynamodb-session-handler.html

[aws]: http://aws.amazon.com/
[aws-iam-credentials]: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UsingIAM.html#UsingIAMrolesWithAmazonEC2Instances
Expand Down
2 changes: 1 addition & 1 deletion docs/feature-models.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ values.
// If needed, you can search for a key in a case-insensitive manner
echo $result->keySearch('body');
//> Body
$echo $result->keySearch('Body');
echo $result->keySearch('Body');
//> Body
// You can also list all of the keys in the result
Expand Down

0 comments on commit 01a950d

Please sign in to comment.