Skip to content

Commit

Permalink
Merge branch 'release-0.0.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgtaylor committed Mar 24, 2015
2 parents 4d3330e + c290e56 commit 14c4859
Show file tree
Hide file tree
Showing 5 changed files with 422 additions and 2 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
Changelog
=========

0.0.11 - 2015-03-24
-------------------

* feature:Resources: Add Amazon EC2 support for ClassicLink actions
and add a delete action to EC2 ``Volume`` resources.
* feature:Resources: Add a ``load`` operation and ``user`` reference
to AWS IAM's ``CurrentUser`` resource.
(`issue 72 <https://github.com/boto/boto3/pull/72>`__,
* feature:Resources: Add resources for AWS IAM managed policies.
(`issue 71 <https://github.com/boto/boto3/pull/71>`__)
* feature:Botocore: Update to Botocore 0.97.0

* Add new Amazon EC2 waiters.
* Add support for Amazon S3 cross region replication.
* Fix an issue where empty config values could not be specified for
Amazon S3's bucket notifications.
(`botocore issue 495 <https://github.com/boto/botocore/pull/495>`__)
* Update Amazon CloudWatch Logs to the latest API.
* Update Amazon Elastic Transcoder to the latest API.
* Update AWS CloudTrail to the latest API.
* Fix bug where explicitly passed ``profile_name`` will now override
any access and secret keys set in environment variables.
(`botocore issue 486 <https://github.com/boto/botocore/pull/486>`__)
* Add ``endpoint_url`` to ``client.meta``.
* Better error messages for invalid regions.
* Fix creating clients with unicode service name.

0.0.10 - 2015-03-05
-------------------

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.10'
__version__ = '0.0.11'


# The default Boto3 session; autoloaded when needed.
Expand Down
56 changes: 56 additions & 0 deletions boto3/data/resources/ec2-2014-10-01.resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -601,6 +601,14 @@
]
}
},
"AttachClassicLinkVpc": {
"request": {
"operation": "AttachClassicLinkVpc",
"params": [
{ "target": "InstanceId", "source": "identifier", "name": "Id" }
]
}
},
"ConsoleOutput": {
"request": {
"operation": "GetConsoleOutput",
Expand Down Expand Up @@ -647,6 +655,14 @@
]
}
},
"DetachClassicLinkVpc": {
"request": {
"operation": "DetachClassicLinkVpc",
"params": [
{ "target": "InstanceId", "source": "identifier", "name": "Id" }
]
}
},
"DetachVolume": {
"request": {
"operation": "DetachVolume",
Expand Down Expand Up @@ -1769,6 +1785,14 @@
]
}
},
"Delete": {
"request": {
"operation": "DeleteVolume",
"params": [
{ "target": "VolumeId", "source": "identifier", "name": "Id" }
]
}
},
"DescribeAttribute": {
"request": {
"operation": "DescribeVolumeAttribute",
Expand Down Expand Up @@ -1855,6 +1879,14 @@
]
}
},
"AttachClassicLinkInstance": {
"request": {
"operation": "AttachClassicLinkVpc",
"params": [
{ "target": "VpcId", "source": "identifier", "name": "Id" }
]
}
},
"AttachInternetGateway": {
"request": {
"operation": "AttachInternetGateway",
Expand Down Expand Up @@ -1954,6 +1986,14 @@
]
}
},
"DetachClassicLinkInstance": {
"request": {
"operation": "DetachClassicLinkVpc",
"params": [
{ "target": "VpcId", "source": "identifier", "name": "Id" }
]
}
},
"DetachInternetGateway": {
"request": {
"operation": "DetachInternetGateway",
Expand All @@ -1962,6 +2002,22 @@
]
}
},
"DisableClassicLink": {
"request": {
"operation": "DisableVpcClassicLink",
"params": [
{ "target": "VpcId", "source": "identifier", "name": "Id" }
]
}
},
"EnableClassicLink": {
"request": {
"operation": "EnableVpcClassicLink",
"params": [
{ "target": "VpcId", "source": "identifier", "name": "Id" }
]
}
},
"ModifyAttribute": {
"request": {
"operation": "ModifyVpcAttribute",
Expand Down
Loading

0 comments on commit 14c4859

Please sign in to comment.