Skip to content

Commit 6c37030

Browse files
committed
Merge pull request #19 from emgerner-msft/master
Android Storage Client Library 0.7.0
2 parents e5e2431 + 40bd772 commit 6c37030

File tree

87 files changed

+4966
-3057
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+4966
-3057
lines changed

ChangeLog.txt

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
2015.XX.XX Version 0.6.0
1+
2015.10.05 Version 0.7.0
2+
* Fixed a bug in table where a select on a non-existent field resulted in a null reference exception if the corresponding field in the TableEntity was not nullable.
3+
* Fixed a bug in table where JsonParser was automatically closing the response stream before it was completely drained causing socket exhaustion.
4+
* Fixed a bug in StorageCredentialsAccountAndKey.updateKey(String) which prevented valid keys from being set.
5+
* Added CloudBlobContainer.listBlobs(final String, final boolean) method.
6+
* Fixed a bug in blob where using AccessConditions on block blob uploads larger than 64MB done with the upload* methods or block blob uploads done openOutputStream with would fail if the blob did not already exist.
7+
* Added support for setting a proxy per request. Proxy can be set on an OperationContext instance and will be used when that instance is passed to the request method.
8+
* Removed deprecated constructors which take service clients in favor of constructors which take credentials.
9+
* Added support for "Add" permissions on Blob SAS.
10+
* Added support for "Create" permissions on Blob and File SAS.
11+
* Added support for IP Restricted SAS and Protocol SAS.
12+
* Added support for Account SAS to all services.
13+
* Added support for Minute and Hour Metrics to FileServiceProperties and added support for File Metrics to CloudAnalyticsClient.
14+
* Removed deprecated startCopyFromBlob() on CloudBlob. Use startCopy() instead.
15+
* Removed deprecated Credentials and StorageKey classes. Please use the appropriate methods on StorageCredentialsAccountAndKey instead.
16+
17+
2015.08.15 Version 0.6.0
218
* Added support for SAS to the Azure File service.
319
* Added support for Append Blob.
420
* Added support for Access Control Lists (ACL) to File Shares.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ First, add mavenCentral to your repositories by adding the following to your gra
4646
Then, add a dependency by adding the following to your gradle build file:
4747

4848
dependencies {
49-
compile 'com.microsoft.azure.android:azure-storage-android:0.6.0@aar'
49+
compile 'com.microsoft.azure.android:azure-storage-android:0.7.0@aar'
5050
}
5151

5252
###Option 4: aar via Maven
@@ -57,7 +57,7 @@ To get the binaries of this library as distributed by Microsoft, ready for use w
5757
<dependency>
5858
<groupId>com.microsoft.azure.android</groupId>
5959
<artifactId>azure-storage-android</artifactId>
60-
<version>0.6.0</version>
60+
<version>0.7.0</version>
6161
<type>aar</type>
6262
</dependency>
6363
```

microsoft-azure-storage-samples/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.microsoft.azure.storage.samples"
44
android:versionCode="0"
5-
android:versionName="0.6.0" >
5+
android:versionName="0.7.0" >
66

77
<uses-sdk
88
android:minSdkVersion="15"

microsoft-azure-storage-test/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1212
package="com.microsoft.azure.android.test"
1313
android:versionCode="0"
14-
android:versionName="0.6.0" >
14+
android:versionName="0.7.0" >
1515

1616
<uses-sdk
1717
android:minSdkVersion="15"

0 commit comments

Comments
 (0)