-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Storage blob track2 (#5894) * Blob storage track 2 * Started pylint fixes * Clean pylint * Started blob walk * Started docstrings * Support walk blob * Pylint * Refactored upload * Pylint * Packaging update of azure-storage-blob * Fixes to storage dependencies in CI (#5900) * Revert "Packaging update of azure-storage-blob" This reverts commit aeeb3ce. * Fix Storage CI * Fixed imports * updating ccount_key_arg -> account_key_arg * updating ordering * Packaging update of azure-storage-blob * Revert "Packaging update of azure-storage-blob" This reverts commit 66d6877. * reverting 66d6877. adding sdk_packaging.toml file * docstrings for blobs (#5954) * [storage-blob] Refactor shared code (#5960) * Fix Storage CI * Fixed imports * Refactor shared storage code * Fixed XML error * Reverted change to models * Merged models docstrings * Fix setup.py version * Missing recordings * Fix storage SDK conflict * Packaging update of azure-eventhubs * Revert "Packaging update of azure-eventhubs" This reverts commit df844f7. * Fix EH packaging * Updated shared code * Review feedback * [azure-storage-blob] Policy updates + simple upload/download (#6162) * Last blob updates * Azure core dependency version * Update to user-agent policy * Review feedback * Removed old python tags * Code samples for blobs (#6093) * adds code samples for blobs * fixes blob code samples and adds literalincludes for docs * Storage Blobs Readme [wip] (#6011) * blobs readme wip * adding some samples and fixes for readme * fix settings import * moving code samples to a different PR * small fixes to readme * fill links for pypi and identity * populating TODO links * Fix CI * [Storage Blob] pylint + mypy passs (#6175) * pylint + mypy passs * comments * [storage-blob] Docs updates (#6184) * Docs updates * Some docstring fixes * [storage-blob] Test rename (#6197) * Test rename * Removed test init files * More renames * Try flattening tests * Blob test imports * Flattened queue tests * Renamed queue test case
- Loading branch information
Showing
555 changed files
with
490,198 additions
and
450 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
-e ../../../tools/azure-sdk-tools | ||
-e ../../storage/azure-storage-blob |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# Change Log azure-storage-blob | ||
|
||
## Version 12.0.0b1: | ||
|
||
For release notes and more information please visit | ||
https://aka.ms/azure-sdk-preview1-python | ||
|
||
## Version 2.0.1: | ||
|
||
- Updated dependency on azure-storage-common. | ||
|
||
## Version 2.0.0: | ||
|
||
- Support for 2018-11-09 REST version. Please see our REST API documentation and blog for information about the related added features. | ||
- Added support for append block from URL(synchronously) for append blobs. | ||
- Added support for update page from URL(synchronously) for page blobs. | ||
- Added support for generating and using blob snapshot SAS tokens. | ||
- Added support for generating user delegation SAS tokens. | ||
|
||
## Version 1.5.0: | ||
|
||
- Added new method list_blob_names to efficiently list only blob names in an efficient way. | ||
|
||
## Version 1.4.0: | ||
|
||
- azure-storage-nspkg is not installed anymore on Python 3 (PEP420-based namespace package) | ||
- copy_blob method added to BlockBlobService to enable support for deep sync copy. | ||
|
||
## Version 1.3.1: | ||
|
||
- Fixed design flaw where get_blob_to_* methods buffer entire blob when max_connections is set to 1. | ||
- Added support for access conditions on append_blob_from_* methods. | ||
|
||
## Version 1.3.0: | ||
|
||
- Support for 2018-03-28 REST version. Please see our REST API documentation and blog for information about the related added features. | ||
- Added support for setting static website service properties. | ||
- Added support for getting account information, such as SKU name and account kind. | ||
- Added support for put block from URL(synchronously). | ||
|
||
## Version 1.2.0rc1: | ||
|
||
- Support for 2017-11-09 REST version. Please see our REST API documentation and blog for information about the related added features. | ||
- Support for write-once read-many containers. | ||
- Added support for OAuth authentication for HTTPS requests(Please note that this feature is available in preview). | ||
|
||
## Version 1.1.0: | ||
|
||
- Support for 2017-07-29 REST version. Please see our REST API documentation and blogs for information about the related added features. | ||
- 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. | ||
- Error message now contains the ErrorCode from the x-ms-error-code header value. | ||
|
||
## Version 1.0.0: | ||
|
||
- The package has switched from Apache 2.0 to the MIT license. | ||
- Fixed bug where get_blob_to_* cannot get a single byte when start_range and end_range are both equal to 0. | ||
- Optimized page blob upload for create_blob_from_* methods, by skipping the empty chunks. | ||
- Added convenient method to generate container url (make_container_url). | ||
- Metadata keys are now case-preserving when fetched from the service. Previously they were made lower-case by the library. | ||
|
||
## Version 0.37.1: | ||
|
||
- 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. | ||
- 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. | ||
- Support for AccessTierChangeTime to get the last time a tier was modified on an individual blob. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2017 Microsoft | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
include *.md | ||
include azure/__init__.py | ||
include azure/storage/__init__.py | ||
include LICENSE.txt |
Oops, something went wrong.