You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: BreakingChanges.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,25 @@
2
2
3
3
> See the [Change Log](ChangeLog.md) for a summary of storage library changes.
4
4
5
+
**Note: This changelog is deprecated starting with version XX.XX.XX, please refer to the ChangeLog.md in each package for future change logs.**
6
+
7
+
## Version 0.37.0:
8
+
9
+
### All:
10
+
- The library has been split into 5 different packages:
11
+
- azure-storage-common
12
+
- azure-storage-blob
13
+
- azure-storage-file
14
+
- azure-storage-queue
15
+
- azure-storage-nspkg
16
+
- azure.storage.table is now releasing under a different namespace: azure-cosmosdb-table. Please refer to github.com/Azure/azure-cosmosdb-python for more info.
17
+
- The package `azure-storage` is now deprecated.
18
+
- The classes that were directly under azure.storage, not under azure.storage.*(blob, file, queue), are now under azure.storage.common.
- The methods on the class SharedAccessSignature were moved into corresponding new subclasses in each service package.
21
+
- Example: the methods generate_blob and generate_container were moved to BlobSharedAccessSignature in the blob package. BlobSharedAccessSignature inherits generate_account from SharedAccessSignature in common.
22
+
- Please refer to the reference documentation for more info.
Copy file name to clipboardExpand all lines: ChangeLog.md
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,32 @@
2
2
3
3
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
4
4
5
+
**Note: This changelog is deprecated starting with version 0.37.0, please refer to the ChangeLog.md in each package for future change logs.**
6
+
7
+
## Version 0.37.0:
8
+
9
+
### All:
10
+
- Added logging to the library, the name of the logger is 'azure.storage'. User must add handlers to the logger to output logs. Please refer to readme for more info.
11
+
- Secondary endpoints may now be specified in connection strings, provided the corresponding primary endpoint is specified. See the connection string documentation for details.
12
+
- Fixed an off-by-1 bug in exponential retry interval calculation.
13
+
- The library has been split into 5 different packages:
14
+
- azure-storage-common
15
+
- azure-storage-blob
16
+
- azure-storage-file
17
+
- azure-storage-queue
18
+
- azure-storage-nspkg
19
+
- azure.storage.table is now releasing under a different namespace: azure-cosmosdb-table. Please refer to github.com/Azure/azure-cosmosdb-python for more info.
20
+
- The package `azure-storage` is now deprecated.
21
+
- The classes that were directly under azure.storage, not under azure.storage.*(blob, file, queue), are now under azure.storage.common.
- The methods on the class SharedAccessSignature were moved into corresponding new subclasses in each service package.
24
+
- Example: the methods generate_blob and generate_container were moved to BlobSharedAccessSignature in the blob package. BlobSharedAccessSignature inherits generate_account from SharedAccessSignature in common.
25
+
- Please refer to the reference documentation for more info.
26
+
27
+
### File:
28
+
- Added support for creating and deleting share snapshots. See the new 'snapshot_share' method on FileService.
29
+
- Most read operations (such as getting properties and metadata) now include an additional snapshot parameter.
0 commit comments