Skip to content

Commit

Permalink
Merge branch 'release-0.0.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgtaylor committed Feb 5, 2015
2 parents ff7f782 + 85c5317 commit d7cddec
Show file tree
Hide file tree
Showing 28 changed files with 2,741 additions and 1,514 deletions.
36 changes: 35 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,40 @@
Changelog
=========

0.0.7 - 2015-02-05
------------------

* feature:Resources: Enable support for Amazon Glacier.
* feature:Resources: Support plural references and nested JMESPath
queries for data members when building parameters and identifiers.
(`issue 52 <https://github.com/boto/boto3/pull/52>`__)
* feature:Resources: Update to the latest resource JSON format.
(`issue 51 <https://github.com/boto/boto3/pull/51>`__)
* feature:Resources: Make ``resource.meta`` a proper object. This allows
you to do things like ``resource.meta.client``. This is a **backward-
incompatible** change.
(`issue 45 <https://github.com/boto/boto3/pull/45>`__)
* feature:Dependency: Update to JMESPath 0.6.1
* feature:Botocore: Update to Botocore 0.86.0

* Add support for AWS CloudHSM
* Add support for Amazon EC2 and Autoscaling ClassicLink
* Add support for Amazon EC2 Container Service (ECS)
* Add support for encryption at rest and CloudHSM to Amazon RDS
* Add support for Amazon DynamoDB online indexing.
* Add support for AWS ImportExport ``get_shipping_label``.
* Add support for Amazon Glacier.
* Add waiters for AWS ElastiCache.
(`botocore issue 443 <https://github.com/boto/botocore/pull/443>`__)
* Fix an issue with Amazon CloudFront waiters.
(`botocore issue 426 <https://github.com/boto/botocore/pull/426>`_)
* Allow binary data to be passed to ``UserData``.
(`botocore issue 416 <https://github.com/boto/botocore/pull/416>`_)
* Fix Amazon EMR endpoints for ``eu-central-1`` and ``cn-north-1``.
(`botocore issue 423 <https://github.com/boto/botocore/pull/423>`__)
* Fix issue with base64 encoding of blob types for Amazon EMR.
(`botocore issue 413 <https://github.com/boto/botocore/pull/413>`__)

0.0.6 - 2014-12-18
------------------

Expand All @@ -15,7 +49,7 @@ Changelog

* Update Amazon Simple Workflow Service (SWF) to the latest version
* Update AWS Storage Gateway to the latest version
* Update AWS Elastic MapReduce (EMR) to the latest version
* Update Amazon Elastic MapReduce (EMR) to the latest version
* Update AWS Elastic Transcoder to the latest version
* Enable use of ``page_size`` for clients
(`botocore issue 408 <https://github.com/boto/botocore/pull/408>`__)
Expand Down
2 changes: 1 addition & 1 deletion boto3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


__author__ = 'Amazon Web Services'
__version__ = '0.0.6'
__version__ = '0.0.7'


# The default Boto3 session; autoloaded when needed.
Expand Down
75 changes: 55 additions & 20 deletions boto3/data/resources/cloudformation-2010-05-15.resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,25 @@
"resource": {
"type": "Stack",
"identifiers": [
{ "target": "Name", "sourceType": "requestParameter", "source": "StackName" }
{ "target": "Name", "source": "requestParameter", "path": "StackName" }
]
}
}
},
"has": {
"Event": {
"resource": {
"type": "Event",
"identifiers": [
{ "target": "Id", "source": "input" }
]
}
},
"Stack": {
"resource": {
"type": "Stack",
"identifiers": [
{ "target": "Name", "source": "input" }
]
}
}
Expand All @@ -17,7 +35,7 @@
"resource": {
"type": "Stack",
"identifiers": [
{ "target": "Name", "sourceType": "responsePath", "source": "Stacks[].StackName" }
{ "target": "Name", "source": "response", "path": "Stacks[].StackName" }
]
}
}
Expand All @@ -39,7 +57,7 @@
"request": {
"operation": "DescribeStacks",
"params": [
{ "target": "StackName", "sourceType": "identifier", "source": "Name" }
{ "target": "StackName", "source": "identifier", "name": "Name" }
]
},
"path": "Stacks[0]"
Expand All @@ -49,23 +67,34 @@
"request": {
"operation": "CancelUpdateStack",
"params": [
{ "target": "StackName", "sourceType": "identifier", "source": "Name" }
{ "target": "StackName", "source": "identifier", "name": "Name" }
]
}
},
"Delete": {
"request": {
"operation": "DeleteStack",
"params": [
{ "target": "StackName", "sourceType": "identifier", "source": "Name" }
{ "target": "StackName", "source": "identifier", "name": "Name" }
]
}
},
"Update": {
"request": {
"operation": "UpdateStack",
"params": [
{ "target": "StackName", "sourceType": "identifier", "source": "Name" }
{ "target": "StackName", "source": "identifier", "name": "Name" }
]
}
}
},
"has": {
"Resource": {
"resource": {
"type": "StackResource",
"identifiers": [
{ "target": "StackName", "source": "identifier", "name": "Name" },
{ "target": "StackName", "source": "input" }
]
}
}
Expand All @@ -75,13 +104,13 @@
"request": {
"operation": "DescribeStackEvents",
"params": [
{ "target": "StackName", "sourceType": "identifier", "source": "Name" }
{ "target": "StackName", "source": "identifier", "name": "Name" }
]
},
"resource": {
"type": "Event",
"identifiers": [
{ "target": "Id", "sourceType": "responsePath", "source": "StackEvents[].EventId" }
{ "target": "Id", "source": "response", "path": "StackEvents[].EventId" }
],
"path": "StackEvents[]"
}
Expand All @@ -90,22 +119,18 @@
"request": {
"operation": "ListStackResources",
"params": [
{ "target": "StackName", "sourceType": "identifier", "source": "Name" }
{ "target": "StackName", "source": "identifier", "name": "Name" }
]
},
"resource": {
"type": "StackResourceSummary",
"identifiers": [
{ "target": "LogicalId", "sourceType": "responsePath", "source": "StackResourceSummaries[].LogicalResourceId" },
{ "target": "StackName", "sourceType": "requestParameter", "source": "StackName" }
{ "target": "LogicalId", "source": "response", "path": "StackResourceSummaries[].LogicalResourceId" },
{ "target": "StackName", "source": "requestParameter", "path": "StackName" }
],
"path": "StackResourceSummaries[]"
}
}
},
"subResources": {
"resources": [ "StackResource" ],
"identifiers": { "Name": "StackName" }
}
},
"StackResource": {
Expand All @@ -118,11 +143,21 @@
"request": {
"operation": "DescribeStackResource",
"params": [
{ "target": "LogicalResourceId", "sourceType": "identifier", "source": "LogicalId" },
{ "target": "StackName", "sourceType": "identifier", "source": "StackName" }
{ "target": "LogicalResourceId", "source": "identifier", "name": "LogicalId" },
{ "target": "StackName", "source": "identifier", "name": "StackName" }
]
},
"path": "StackResourceDetail"
},
"has": {
"Stack": {
"resource": {
"type": "Stack",
"identifiers": [
{ "target": "Name", "source": "identifier", "name": "StackName" }
]
}
}
}
},
"StackResourceSummary": {
Expand All @@ -131,13 +166,13 @@
{ "name": "StackName" }
],
"shape": "StackResourceSummary",
"belongsTo": {
"has": {
"Resource": {
"resource": {
"type": "StackResource",
"identifiers": [
{ "target": "LogicalId", "sourceType": "identifier", "source": "LogicalId" },
{ "target": "StackName", "sourceType": "identifier", "source": "StackName" }
{ "target": "LogicalId", "source": "identifier", "name": "LogicalId" },
{ "target": "StackName", "source": "identifier", "name": "StackName" }
]
}
}
Expand Down
Loading

0 comments on commit d7cddec

Please sign in to comment.