forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.txt
257 lines (217 loc) · 10.8 KB
/
ChangeLog.txt
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
2015-05-13 Version 0.11.0
IMPORTANT CHANGE THAT AFFECTS STORAGE:
The API for creating shared access signatures has changed. The new API enables
easy production AND consumption of SAS for blob, queue and table storage.
* To produce a SAS, use generate_shared_access_signature on
BlobService/QueueService/TableService
* To consume a SAS, init BlobService/QueueService/TableService with
account_name & sas_token (no account_key)
* For blob storage, you can now pass a sas_token to make_blob_url
* For blob storage, you can now consume public containers/blobs, init
BlobService/QueueService/TableService with account_name only
(no account_key or sas_token)
See http://azure-sdk-for-python.readthedocs.org/en/latest/storage.html for
more details on using SAS with Azure Storage.
Other changes:
* Create/list/delete job functionality added to SchedulerManagementService
* update_site added to WebsiteManagementService to start/stop web sites
* Target x-ms-version 2014-10-01 for service management
* Add virtual IP fields in Deployment
* Make cloud service create/delete async
* Delete cloud service now supports deleting blobs from storage
* Support for specifying SourceMediaLink for DataVirtualHardDisks
* Fixes for bugs:
#350 wait_for_operation needs to flush as it prints
Thank you to lmazuel, antonydenyer, zlike-msft, melor and amegianeg for their
contributions.
2015-04-28 Version 0.10.2
* Fixes for bugs:
#338 Version 0.10.0 fails with 'SocketReader' object has no attribute 'tell'
2015-03-13 Version 0.10.0
IMPORTANT CHANGE THAT AFFECTS STORAGE USERS (BLOB, QUEUE, TABLE):
The library now targets x-ms-version '2014-02-14' of the storage REST API.
Previous version of the library targeted '2012-02-12'.
The upgrade to this new version causes some breaking changes for Python SDK users:
* Metrics for blob, queue, table service properties, which used to be accessed
with the 'metrics' field are now accessed via 'hour_metrics' and 'minute_metrics'.
Note that a backwards compatible 'metrics' property was added to redirect access
to 'hour_metrics'.
* Url is no longer returned from list_containers, list_blobs, list_queues.
For blob, you can use the utility function make_blob_url as an alternate
way to get a URL.
See MSDN documentation for details on REST API changes
in '2013-08-15': https://msdn.microsoft.com/en-us/library/azure/dn592124.aspx
in '2014-02-14': https://msdn.microsoft.com/en-us/library/azure/dd894041.aspx
The other changes in this release are:
* Performance improvements in xml deserialization of storage and service bus
Table storage query_entities is ~25X faster for the maximum of 1000 entities
* Ability to upload and download blobs using multiple connections, along with
retries when a chunk upload/download failure occurs
Controlled via the max_connections, max_retries, retry_wait parameters
* Use get_certificate_from_publish_settings to get a .pem certificate from
your azure publish settings file
* Ability to adjust the global http timeout
* Service bus event hub support (create/update/delete hubs + send events)
* Documentation for API Reference is now available at
http://azure-sdk-for-python.readthedocs.org/en/documentation/index.html
* Fixes for bugs:
#237 Ability to use multiple connections to upload blob chunks in parallel
#254 Improve performance of table storage (and more?)
#258 Support authenticating with azureProfile like in CLI tools
#259 Unicode error is raised instead of actual error
#263 Change description name
#268 delete_deployment does not pass comp=media to delete disks
#271 Update current_name so that multiple parameters with the same name...
#270 Documentation for capture_vm_image is incorrect
#273 Unicode error with utf-8 encoding value
#276 Service Mgmt - Reserved IP create/delete are async
#280 add support for setting IdleTimeoutInMinutes on load balanced endpoint
#288 InvalidHeaderValue on BlobService example
#294 Upload of large files is too slow
#304 Unable to upload large size files to Azure Page Blob
Thank you to lmazuel, rhaps0dy, timfpark, gaellbn, moutai, edevil, rjschwei and
okaram for their contributions.
2014-11-21 Version 0.9.0
IMPORTANT CHANGE IN BEHAVIOR THAT AFFECTS TABLE STORAGE USERS:
The library now converts any datetime object in an entity to UTC before writing
the value to Azure, and it sets the timezone (tzinfo) to UTC on the entities
it reads from Azure. On a related note, python-dateutil is now an external
dependency.
The other changes in this release are:
* Ability to pass in to management APIs a Session object from the requests
library (or any compatible). This allows more flexibility for authentication,
including oauth.
* New service management APIs
- list_role_sizes
- list_subscriptions (oauth only)
- rebuild_role_instance
- delete_role_instances
- create_reserved_ip_address
- delete_reserved_ip_address
- get_reserved_ip_address
- list_reserved_ip_addresses
- add_dns_server
- update_dns_server
- delete_dns_server
- list_resource_extensions
- list_resource_extension_versions
- capture_vm_image
- delete_vm_image
- list_vm_images
- create_vm_image
- update_vm_image
* Enhanced service management APIs
- create_virtual_machine_deployment / add_role
- custom data
- additional windows unattend content
- create from a vm image
- public ips
- resource extensions
- create from remote os image
- provision guest agent
- dns servers
- reserved ip
- update_role
- resource extensions
- provision guest agent
- create_storage_service
- account_type replaces geo_replication_enabled (preserved for backwards compat)
* Preliminary Scheduler management API
* Add metrics to Service Bus management API
* Delete Blob - support for x-ms-delete-snapshots header
* Fixes for bugs:
#221 Topic names containing slash
#234 AttributeError on Timestamp property
#212 Storage: Timstamp's microseconds value out of range
#116 def _from_entity_datetime(value) in __init__.py returns 7 for seconds
#114 Timezone information 'Z' is ignored during parsing of datetime of table entity
Thank you to Costeijn, lmazuel, pneumee, nicbon, bndw, troyanov for their contributions.
2014-09-19 Version 0.8.4
* Add ability to get website publish data as an object (thanks lmazuel)
* Fixes for bugs:
#216 Daylight saving problem in ServiceBusSASAuthentication
#218 Content type incorrect on blob
2014-09-09 Version 0.8.3
* Add Shared Access Signature support to Service Bus
2014-08-26 Version 0.8.2
* Add functionality to Service Bus Management API
- list queues/topics/notification hubs/relays
* Add CreationTime to StorageAccountProperties
* Preliminary SQL Database Management API
* Preliminary Website Management API
- list/get webspaces
- list/get/create/delete/restart website
- get historical usage metrics and metric definitions
- get publish profile xml
* Fixes for bugs:
#192 Fix deserialization of broker properties for service bus.
#173 Fix some incompatibilities with Python 2.6
Thank you to lmazuel for the contributions to SQL Database, Service Bus and
Website management.
2014-06-26 Version 0.8.1
* Fixes for bugs:
#149 Table storage batch client doesn't validate etag
#129 Inconsistent WindowsAzure Errors
Thank you to kaptajnen, matlockx for their fixes for the redirection issue (#129).
2014-03-31 Version 0.8.0
* Existing service management API now targets x-ms-version 2013-06-01
* Fixes for bugs:
#145 Missing DataVirtualHardDisks in Cloud Service Properties
#144 Added configuration sets for role and added list virtual network function
#139 How to start "Deallocated" role
#127 Add WinRM options to create_virtual_machine_deployment()
#131 Missing role instance endpoint in get_deployment_by_X
#128 Update __init__.py for missing host_name attribute on RoleInstance
#140 Table Service deletes empty strings
#40 Edm.Binary and null support in table storage entities
2014-02-10 Version 0.8.0pr1
* Migrate to using httplib on Windows. This is now the default, unless a
Windows Certificate Store management certificate is used. Make sure to use
CPython 2.7.4 or later when using OpenSSL .pem certificates on Windows.
* Added high-level functions to upload/download blobs with chunking and progress notifications
* Added support for Python 3.3
* Updated storage API to 2012-02-12
- Adds more lease functionality
- Adds cross-storage account copy
- Adds a helper function make_blob_url to pass to copy_blob for x_ms_copy_source
* Fixes WindowsAzureConflictError and WindowsAzureMissingResourceError to properly set the error message, and use the additional info returned by the server
* Fixes for bugs:
#125 Label for VM Deployment should not be b64 encoded (thanks to jeffmendoza).
#121 In blob storage, put_page, x-ms-if-sequence-number-lte header should be x-ms-if-sequence-number-le
2013-11-06 Version 0.7.1
* Fixes for bugs:
#118 Proxy doesn't support specifying credentials
#117 Service bus authorization code doesn't go through the proxy server
#108 Create VM, Administrator Password Base-64 Encoding
#106 Why isn't setup.py in the root of the project?
#96 Change default connection protocol to https
2013-07-08 Version 0.7.0
* Added service bus management API
* Added support for list blobs delimiter (for easier hierarchical listings)
* Fixes for bugs:
#90 get_blob_metadata returns more than the metadata (also get_container_metadata and get_queue_metadata)
#87 Proxy support for *NIX systems
#86 Fix capitalization in the 'Fingerprint' tag for XML of serialization of SSH keys configuration
#83 Fixed an issue that prevented the creation of endpoints for a VM
#80 Error deserializing datetime value from Table Store
#79 Specify VirtualNetworkName when creating Virtual Machine
* Cleanup of imports
* Renamed some private functions that weren't starting with an underscore
* Removed code generator (it's now obsolete, we make changes directly in the Python sources)
Thank you to timanovsky, sebhomengo, pneumee, ogrisel, 0xc0decafe and apatard for their bug reports and fixes.
2013-03-20 Version 0.6.2
* Fixes for bugs:
#75 crash on python 2.7 x64 windows
#73 _convert_query_string return a wrong query string parameter
2012-12-17 Version 0.6.1
* Fixes for bugs:
#69 _get_readable_id doesn't support queues with slashes in their names
#68 Service bus cache of tokens doesn't support multiple creds in same app
#66 Need to change the default timeout for httprequest on windows
* Improved support for unicode data
2012-10-16 Version 0.6.0
* Added service management API
* Added ability to specify custom hosts
* Added proxy server support (HTTP CONNECT tunneling)
2012-06-06 Version 0.5.0
* Initial Release