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
{{ message }}
This repository was archived by the owner on Jul 19, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: BreakingChanges.txt
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,22 @@
1
-
Changes in 6.0.0
1
+
Changes in 7.0.0
2
+
3
+
OTHER
4
+
* Upgraded Key Vault dependency to 1.0. Users of the IKey and IKeyResolver interfaces should note the interface changes in this version.
5
+
* The getErrorCode method of StorageExtendedErrorInformation is now deprecated. Use the corresponding methods in RequestResult and StorageException instead.
6
+
7
+
Changes in 6.0.0
2
8
3
9
FILE
4
-
* Many File service APIs can now throw a URISyntaxException.
5
-
* Changed listShares() ShareListingDetails parameter to be an enum set like what is done for listing blobs.
10
+
* Many File service APIs can now throw a URISyntaxException.
11
+
* Changed listShares() ShareListingDetails parameter to be an enum set like what is done for listing blobs.
6
12
7
13
OTHER
8
14
* DefaultEndpointsProtocol will now be explicitly included in generated connection strings.
9
15
* Connection string parsing has been substantially re-written and expanded. Please refer to current documentation about connection string formats.
10
16
11
17
Changes in 5.1.1
12
18
OTHER
13
-
* Reverted the code from 5.1.0 because it contained a regression and an accidental change.
19
+
* Reverted the code from 5.1.0 because it contained a regression and an accidental change.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ The Azure Storage development team uses Intellij. However, any preferred IDE or
20
20
21
21
### Configuration
22
22
The only step to configure testing is to setup a configuration file or connection string via environment variables. To use the connection string route, create an environment variable named "storageConnection". To use the configuration file route, create an environment variable named "storageTestConfiguration" with the path to a TestConfigurations.xml file with this [template](https://github.com/Azure/azure-storage-java/blob/master/microsoft-azure-storage-test/res/TestConfigurations.xml).
23
+
Alternatively, you can fill in microsoft-azure-storage-test/res/TestConfigurations.xml with the appropriate information.
23
24
24
25
### Running
25
26
To actually run tests, right click on the test class in the Package Explorer or the individual test in the Outline and select Run As->JUnitTest. All tests or tests grouped by service can be run using the test runners in the com.microsoft.azure.storage package TestRunners file. Running all tests from the top of the package explorer will result in each test being run multiple times as the package explorer will also run every test runner.
Copy file name to clipboardExpand all lines: ChangeLog.txt
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,14 @@
1
+
2018.02.05 Version 7.0.0
2
+
* Support for 2017-07-29 REST version. Please see our REST api documentation and blogs for information about the related added features.
3
+
* Added support for soft delete feature. If a delete retention policy is enabled through the set service properties API, then blobs or snapshots can be deleted softly and retained for a specified number of days, before being permanently removed by garbage collection.
4
+
* When a storage request fails, the error code may now be retrieved directly from the RequestResult and StorageException classes. This error code is populated even in cases where there is no StorageExtendedErrorInformation available, such as in calls to FetchAttributes.
5
+
* Queue messages may now be inserted with infinite duration by specifying -1 as the timeToLiveInSeconds parameter to addMessage.
6
+
* Improved performance of blob uploadFromFile APIs to avoid unnecessary buffering.
7
+
* Improved performance when streaming directly from a FileInputStream to avoid unnecessary buffering.
8
+
* Switched to using fixed length streaming mode in the HTTP client to avoid unnecessary buffering.
9
+
* Upgraded Key Vault dependency to 1.0.
10
+
* Fixed a bug preventing openInputStream from working on a blob snapshot.
11
+
1
12
2017.11.01 Version 6.1.0
2
13
* Added support for the last time the tier was modified.
0 commit comments