File size: 11,457 Bytes
065fee7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
Changelog
=========

0.0.14 - 2015-04-02
-------------------

* feature:Resources: Update to the latest resource models for:

  * AWS CloudFormation
  * Amazon EC2
  * AWS IAM

* feature:Amazon S3:  Add an ``upload_file`` and ``download_file``
  to S3 clients that transparently handle parallel multipart transfers.
* feature:Botocore: Update to Botocore 0.102.0.

  * Add support for Amazon Machine Learning.
  * Add support for Amazon Workspaces.
  * Update ``requests`` to 2.6.0.
  * Update AWS Lambda to the latest API.
  * Update Amazon EC2 Container Service to the latest API.
  * Update Amazon S3 to the latest API.
  * Add ``DBSnapshotCompleted`` support to Amazon RDS waiters.
  * Fixes for the REST-JSON protocol.

0.0.13 - 2015-04-02
-------------------

* feature:Botocore: Update to Botocore 0.100.0.

  * Update AWS CodeDeploy to the latest service API.
  * Update Amazon RDS to support the ``describe_certificates``
    service operation.
  * Update Amazon Elastic Transcoder to support PlayReady DRM.
  * Update Amazon EC2 to support D2 instance types.

0.0.12 - 2015-03-26
-------------------

* feature:Resources: Add the ability to load resource data from a
  ``has`` relationship. This saves a call to ``load`` when available,
  and otherwise fixes a problem where there was no way to get at
  certain resource data.
  (`issue 74 <https://github.com/boto/boto3/pull/72>`__,
* feature:Botocore: Update to Botocore 0.99.0

  * Update service models for amazon Elastic Transcoder, AWS IAM
    and AWS OpsWorks to the latest versions.
  * Add deprecation warnings for old interface.

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
-------------------

* bugfix:Documentation: Name collisions are now handled at the resource
  model layer instead of the factory, meaning that the documentation
  now uses the correct names.
  (`issue 67 <https://github.com/boto/boto3/pull/67>`__)
* feature:Session: Add a ``region_name`` option when creating a session.
  (`issue 69 <https://github.com/boto/boto3/pull/69>`__,
  `issue 21 <https://github.com/boto/boto3/issues/21>`__)
* feature:Botocore: Update to Botocore 0.94.0

  * Update to the latest Amazon CloudeSearch API.
  * Add support for near-realtime data updates and exporting historical
    data from Amazon Cognito Sync.
  * **Removed** the ability to clone a low-level client. Instead, create
    a new client with the same parameters.
  * Add support for URL paths in an endpoint URL.
  * Multithreading signature fixes.
  * Add support for listing hosted zones by name and getting hosted zone
    counts from Amazon Route53.
  * Add support for tagging to AWS Data Pipeline.

0.0.9 - 2015-02-19
------------------

* feature:Botocore: Update to Botocore 0.92.0

  * Add support for the latest Amazon EC2 Container Service API.
  * Allow calling AWS STS ``assume_role_with_saml`` without credentials.
  * Update to latest Amazon CloudFront API
  * Add support for AWS STS regionalized calls by passing both a region
    name and an endpoint URL.
    (`botocore issue 464 <https://github.com/boto/botocore/pull/464>`__)
  * Add support for Amazon Simple Systems Management Service (SSM)
  * Fix Amazon S3 auth errors when uploading large files
    to the ``eu-central-1`` and ``cn-north-1`` regions.
    (`botocore issue 462 <https://github.com/boto/botocore/pull/462>`__)
  * Add support for AWS IAM managed policies
  * Add support for Amazon ElastiCache tagging
  * Add support for Amazon Route53 Domains tagging of domains

0.0.8 - 2015-02-10
------------------

* bugfix:Resources: Fix Amazon S3 resource identifier order.
  (`issue 62 <https://github.com/boto/boto3/pull/62>`__)
* bugfix:Resources: Fix collection resource hydration path.
  (`issue 61 <https://github.com/boto/boto3/pull/61>`__)
* bugfix:Resources: Re-enable service-level access to all resources,
  allowing e.g. ``obj = s3.Object('bucket', 'key')``.
  (`issue 60 <https://github.com/boto/boto3/pull/60>`__)
* feature:Botocore: Update to Botocore 0.87.0

  * Add support for Amazon DynamoDB secondary index scanning.
  * Upgrade to ``requests`` 2.5.1.
  * Add support for anonymous (unsigned) clients.
    (`botocore issue 448 <https://github.com/boto/botocore/pull/448>`__)

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. This is
  a **backward-incompatible** change as not all resources are exposed
  at the service level anymore. For example, ``s3.Object('bucket', 'key')``
  is now ``s3.Bucket('bucket').Object('key')``.
  (`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
------------------

* feature:Amazon SQS: Add ``purge`` action to queue resources
* feature:Waiters: Add documentation for client and resource waiters
  (`issue 44 <https://github.com/boto/boto3/pull/44>`__)
* feature:Waiters: Add support for resource waiters
  (`issue 43 <https://github.com/boto/boto3/pull/43>`__)
* bugfix:Installation: Remove dependency on the unused ``six`` module
  (`issue 42 <https://github.com/boto/boto3/pull/42>`__)
* feature:Botocore: Update to Botocore 0.80.0

  * Update Amazon Simple Workflow Service (SWF) to the latest version
  * Update AWS Storage Gateway 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>`__)

0.0.5 - 2014-12-09
------------------

* feature: Add support for batch actions on collections.
  (`issue 32 <https://github.com/boto/boto3/pull/32>`__)
* feature: Update to Botocore 0.78.0

  * Add support for Amazon Simple Queue Service purge queue which allows
    users to delete the messages in their queue.
  * Add AWS OpsWorks support for registering and assigning existing Amazon
    EC2 instances and on-premises servers.
  * Fix issue with expired signatures when retrying failed requests
    (`botocore issue 399 <https://github.com/boto/botocore/pull/399>`__)
  * Port Route53 resource ID customizations from AWS CLI to Botocore.
    (`botocore issue 398 <https://github.com/boto/botocore/pull/398>`__)
  * Fix handling of blob type serialization for JSON services.
    (`botocore issue 397 <https://github.com/boto/botocore/pull/397>`__)

0.0.4 - 2014-12-04
------------------

* feature: Update to Botocore 0.77.0

  * Add support for Kinesis PutRecords operation. It writes multiple
    data records from a producer into an Amazon Kinesis stream in a
    single call.
  * Add support for IAM GetAccountAuthorizationDetails operation. It
    retrieves information about all IAM users, groups, and roles in
    your account, including their relationships to one another and
    their attached policies.
  * Add support for updating the comment of a Route53 hosted zone.
  * Fix base64 serialization for JSON protocol services.
  * Fix issue where certain timestamps were not being accepted as valid input
    (`botocore issue 389 <https://github.com/boto/botocore/pull/389>`__)

* feature: Update `Amazon EC2 <http://aws.amazon.com/ec2/>`_ resource model.
* feature: Support `belongsTo` resource reference as well as `path`
  specified in an action's resource definition.
* bugfix: Fix an issue accessing SQS message bodies
  (`issue 33 <https://github.com/boto/boto3/issues/33>`__)

0.0.3 - 2014-11-26
------------------

* feature: Update to Botocore 0.76.0.

  * Add support for using AWS Data Pipeline templates to create
    pipelines and bind values to parameters in the pipeline
  * Add support to Amazon Elastic Transcoder client for encryption of files
    in Amazon S3.
  * Fix issue where Amazon S3 requests were not being
    resigned correctly when using Signature Version 4.
    (`botocore issue 388 <https://github.com/boto/botocore/pull/388>`__)
  * Add support for custom response parsing in Botocore clients.
    (`botocore issue 387 <https://github.com/boto/botocore/pull/387>`__)

0.0.2 - 2014-11-20
------------------

* Adds resources for
  `AWS CloudFormation <http://aws.amazon.com/cloudformation/>`_ and
  `AWS OpsWorks <http://aws.amazon.com/opsworks/>`_.
* Update to Botocore 0.73.0 and JMESPath 0.5.0
* Adds support for
  `AWS CodeDeploy <http://aws.amazon.com/codedeploy/>`_,
  `AWS Config <http://aws.amazon.com/config/>`_,
  `AWS KMS <http://aws.amazon.com/kms/>`_,
  `AWS Lambda <http://aws.amazon.com/lambda/>`_.
* Make requests with a customized HTTP user-agent

0.0.1 - 2014-11-11
------------------

* Initial developer preview refresh of Boto 3
* Supports S3, EC2, SQS, SNS, and IAM resources
* Supports low-level clients for most services