Skip to content

Commit d784000

Browse files
authored
Increment version for storage releases (Azure#16152)
* Increment package version after release of azure_storage_file_share * Increment package version after release of azure_storage_blob * Increment package version after release of azure_storage_queue
1 parent b4815d1 commit d784000

File tree

6 files changed

+48
-39
lines changed

6 files changed

+48
-39
lines changed

sdk/storage/azure-storage-blob/CHANGELOG.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release History
22

3+
## 12.7.1 (Unreleased)
4+
5+
36
## 12.7.0 (2021-01-13)
47
**Stable release of preview features**
58
- Added `upload_blob_from_url` api on `BlobClient`.
@@ -69,7 +72,7 @@
6972
- Block size is increased to 4GB at maximum, max single put size is increased to 5GB.
7073
- For replication enabled account, users can get replication policies when get blob properties.
7174

72-
## 12.3.2 (2020-6-12)
75+
## 12.3.2
7376
**Fixes**
7477
- Fixed issue where batch requests could not be combined with SAS (#9534)
7578
- Batch requests now support applying parameters to individual blobs within the request via passing in a dictionary.
@@ -100,7 +103,7 @@ of using the existing one in the `ContainerClient`.
100103
- The `StorageUserAgentPolicy` is now replaced with the `UserAgentPolicy` from azure-core. With this, the custom user agents are now added as a prefix instead of being appended.
101104

102105

103-
## 12.2.0
106+
## 12.2.0
104107

105108
**New features**
106109
- Added support for the 2019-07-07 service version, and added `api_version` parameter to clients.
@@ -310,60 +313,60 @@ https://aka.ms/azure-sdk-preview1-python.
310313
- Operation `update_page` has been renamed to `upload_page`.
311314
- Operation `get_page_ranges_diff` has been replaced by an optional str flag in the `get_page_ranges` operation.
312315

313-
## 2.0.1
316+
## 2.0.1
314317

315318
- Updated dependency on azure-storage-common.
316319

317-
## 2.0.0
320+
## 2.0.0
318321

319322
- Support for 2018-11-09 REST version. Please see our REST API documentation and blog for information about the related added features.
320323
- Added support for append block from URL(synchronously) for append blobs.
321324
- Added support for update page from URL(synchronously) for page blobs.
322325
- Added support for generating and using blob snapshot SAS tokens.
323326
- Added support for generating user delegation SAS tokens.
324327

325-
## 1.5.0
328+
## 1.5.0
326329

327330
- Added new method list_blob_names to efficiently list only blob names in an efficient way.
328331

329-
## 1.4.0
332+
## 1.4.0
330333

331334
- azure-storage-nspkg is not installed anymore on Python 3 (PEP420-based namespace package)
332335
- copy_blob method added to BlockBlobService to enable support for deep sync copy.
333336

334-
## 1.3.1
337+
## 1.3.1
335338

336339
- Fixed design flaw where get_blob_to_* methods buffer entire blob when max_connections is set to 1.
337340
- Added support for access conditions on append_blob_from_* methods.
338341

339-
## 1.3.0
342+
## 1.3.0
340343

341344
- Support for 2018-03-28 REST version. Please see our REST API documentation and blog for information about the related added features.
342345
- Added support for setting static website service properties.
343346
- Added support for getting account information, such as SKU name and account kind.
344347
- Added support for put block from URL(synchronously).
345348

346-
## 1.2.0rc1
349+
## 1.2.0rc1
347350

348351
- Support for 2017-11-09 REST version. Please see our REST API documentation and blog for information about the related added features.
349352
- Support for write-once read-many containers.
350353
- Added support for OAuth authentication for HTTPS requests(Please note that this feature is available in preview).
351354

352-
## 1.1.0
355+
## 1.1.0
353356

354357
- Support for 2017-07-29 REST version. Please see our REST API documentation and blogs for information about the related added features.
355358
- Added support for soft delete feature. If a delete retention policy is enabled through the set service properties API, then blobs or snapshots could be deleted softly and retained for a specified number of days, before being permanently removed by garbage collection.
356359
- Error message now contains the ErrorCode from the x-ms-error-code header value.
357360

358-
## 1.0.0
361+
## 1.0.0
359362

360363
- The package has switched from Apache 2.0 to the MIT license.
361364
- Fixed bug where get_blob_to_* cannot get a single byte when start_range and end_range are both equal to 0.
362365
- Optimized page blob upload for create_blob_from_* methods, by skipping the empty chunks.
363366
- Added convenient method to generate container url (make_container_url).
364367
- Metadata keys are now case-preserving when fetched from the service. Previously they were made lower-case by the library.
365368

366-
## 0.37.1
369+
## 0.37.1
367370

368371
- Enabling MD5 validation no longer uses the memory-efficient algorithm for large block blobs, since computing the MD5 hash requires reading the entire block into memory.
369372
- Fixed a bug in the _SubStream class which was at risk of causing data corruption when using the memory-efficient algorithm for large block blobs.

sdk/storage/azure-storage-blob/azure/storage/blob/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7-
VERSION = "12.7.0"
7+
VERSION = "12.7.1"

sdk/storage/azure-storage-file-share/CHANGELOG.md

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release History
22

3+
## 12.4.1 (Unreleased)
4+
5+
36
## 12.4.0 (2021-01-13)
47
**Stable release of preview features**
58
- Added support for enabling root squash and share protocols for file share.
@@ -36,7 +39,7 @@
3639
**New features**
3740
- Added `undelete_share` on FileShareServiceClient so that users can restore deleted share on share soft delete enabled account. Users can also list deleted shares when `list_shares` by specifying `include_deleted=True`.
3841

39-
## 12.1.2 (2020-6-12)
42+
## 12.1.2
4043
**Fixes**
4144
- Improve the performance of upload when using max_concurrency
4245

@@ -45,7 +48,7 @@
4548
**Notes**
4649
- The `StorageUserAgentPolicy` is now replaced with the `UserAgentPolicy` from azure-core. With this, the custom user agents are now added as a prefix instead of being appended.
4750

48-
## 12.1.0
51+
## 12.1.0
4952

5053
**New features**
5154
- Added support for the 2019-07-07 service version, and added `api_version` parameter to clients.
@@ -60,7 +63,7 @@
6063
**Fixes**
6164
- Responses are always decoded as UTF8
6265

63-
## 12.0.0
66+
## 12.0.0
6467

6568
**New features**
6669
- Added `delete_directory` method to the `share_client`.
@@ -72,7 +75,7 @@
7275
**Breaking changes**
7376
- `close_handle(handle)` and `close_all_handles()` no longer return int. These functions return a dictionary which has the number of handles closed and number of handles failed to be closed.
7477

75-
## 12.0.0b5
78+
## 12.0.0b5
7679

7780
**Important: This package was previously named azure-storage-file**
7881

@@ -127,7 +130,7 @@ the following APIs:
127130
- `ResourceTypes`, `NTFSAttributes`, and `Services` now have method `from_string` which takes parameters as a string.
128131

129132

130-
## 12.0.0b4
133+
## 12.0.0b4
131134

132135
**Breaking changes**
133136

@@ -143,7 +146,7 @@ the following APIs:
143146
- `AccountSasPermissions`, `FileSasPermissions`, `ShareSasPermissions` now have method `from_string` which
144147
takes parameters as a string.
145148

146-
## 12.0.0b3
149+
## 12.0.0b3
147150

148151
**New features**
149152
- Added upload_range_from_url API to write the bytes from one Azure File endpoint into the specified range of another Azure File endpoint.
@@ -163,7 +166,7 @@ takes parameters as a string.
163166
- Fix where content-type was being added in the request when not mentioned explicitly.
164167

165168

166-
## 12.0.0b2
169+
## 12.0.0b2
167170

168171
**Breaking changes**
169172
- Renamed `copy_file_from_url` to `start_copy_from_url` and changed behaviour to return a dictionary of copy properties rather than a polling object. Status of the copy operation can be retrieved with the `get_file_properties` operation.
@@ -192,7 +195,7 @@ takes parameters as a string.
192195
- General refactor of duplicate and shared code.
193196

194197

195-
## 12.0.0b1
198+
## 12.0.0b1
196199

197200
Version 12.0.0b1 is the first preview of our efforts to create a user-friendly and Pythonic client library for Azure Storage Files. For more information about this, and preview releases of other Azure SDK libraries, please visit
198201
https://aka.ms/azure-sdk-preview1-python.
@@ -233,36 +236,36 @@ https://aka.ms/azure-sdk-preview1-python.
233236
- No longer have specific operations for `exists` - use `get_properties` instead.
234237
- Operation `update_range` has been renamed to `upload_range`.
235238

236-
## 2.0.1
239+
## 2.0.1
237240
- Updated dependency on azure-storage-common.
238241

239-
## 2.0.0
242+
## 2.0.0
240243
- Support for 2018-11-09 REST version. Please see our REST API documentation and blogs for information about the related added features.
241244
- Added an option to get share stats in bytes.
242245
- Added support for listing and closing file handles.
243246

244-
## 1.4.0
247+
## 1.4.0
245248

246249
- azure-storage-nspkg is not installed anymore on Python 3 (PEP420-based namespace package)
247250

248-
## 1.3.1
251+
## 1.3.1
249252

250253
- Fixed design flaw where get_file_to_* methods buffer entire file when max_connections is set to 1.
251254

252-
## 1.3.0
255+
## 1.3.0
253256

254257
- Support for 2018-03-28 REST version. Please see our REST API documentation and blog for information about the related added features.
255258

256-
## 1.2.0rc1
259+
## 1.2.0rc1
257260

258261
- Support for 2017-11-09 REST version. Please see our REST API documentation and blog for information about the related added features.
259262

260-
## 1.1.0
263+
## 1.1.0
261264

262265
- Support for 2017-07-29 REST version. Please see our REST API documentation and blogs for information about the related added features.
263266
- Error message now contains the ErrorCode from the x-ms-error-code header value.
264267

265-
## 1.0.0
268+
## 1.0.0
266269

267270
- The package has switched from Apache 2.0 to the MIT license.
268271
- Fixed bug where get_file_to_* cannot get a single byte when start_range and end_range are both equal to 0.

sdk/storage/azure-storage-file-share/azure/storage/fileshare/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7-
VERSION = "12.4.0"
7+
VERSION = "12.4.1"

sdk/storage/azure-storage-queue/CHANGELOG.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release History
22

3+
## 12.1.6 (Unreleased)
4+
5+
36
## 12.1.5 (2021-01-13)
47
**New features**
58
- Added support for `AzureSasCredential` to allow SAS rotation in long living clients.
@@ -16,7 +19,7 @@
1619
**Fixes**
1720
- Fixed QueueClient type declaration (#11392).
1821

19-
## 12.1.2 (2020-6-12)
22+
## 12.1.2
2023
**Notes**
2124
- Updated dependency from azure-core<2.0.0,>=1.2.2 to azure-core<2.0.0,>=1.6.0
2225

@@ -150,26 +153,26 @@ https://aka.ms/azure-sdk-preview1-python.
150153
- Operation `put_message` has been renamed to `enqueue_message`.
151154
- Operation `get_messages` has been renamed to `receive_messages`.
152155

153-
## 2.0.1
156+
## 2.0.1
154157
- Updated dependency on azure-storage-common.
155158

156-
## 2.0.0
159+
## 2.0.0
157160
- Support for 2018-11-09 REST version.
158161

159-
## 1.4.0
162+
## 1.4.0
160163
- azure-storage-nspkg is not installed anymore on Python 3 (PEP420-based namespace package)
161164

162-
## 1.3.0
165+
## 1.3.0
163166
- Support for 2018-03-28 REST version. Please see our REST API documentation and blog for information about the related added features.
164167

165-
## 1.2.0rc1
168+
## 1.2.0rc1
166169
- Support for 2017-11-09 REST version. Please see our REST API documentation and blog for information about the related added features.
167170
- Added support for OAuth authentication for HTTPS requests(Please note that this feature is available in preview).
168171

169-
## 1.1.0
172+
## 1.1.0
170173
- Support for 2017-07-29 REST version. Please see our REST API documentation and blogs for information about the related added features.
171174
- Queue messages can now have an arbitrarily large or infinite time to live.
172175
- Error message now contains the ErrorCode from the x-ms-error-code header value.
173176

174-
## 1.0.0
177+
## 1.0.0
175178
- The package has switched from Apache 2.0 to the MIT license.

sdk/storage/azure-storage-queue/azure/storage/queue/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "12.1.5"
12+
VERSION = "12.1.6"

0 commit comments

Comments
 (0)