From 46c37e4a34b878e8bc5aabf3beed494213448b4e Mon Sep 17 00:00:00 2001 From: Guang Yang Date: Wed, 8 May 2013 19:16:05 -0700 Subject: [PATCH 1/4] update for 0.4.3 --- README.md | 51 +++++++++++++++++++++++++++++---------------------- 1 file changed, 29 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index a8805eb2e326..36c1db701232 100644 --- a/README.md +++ b/README.md @@ -1,30 +1,37 @@ #Windows Azure SDK for Java -This SDK allows you to build Windows Azure applications in Java that allow -you to take advantage of Azure scalable cloud computing resources: table and blob -storage, messaging through Service Bus. - -For documentation please see the [Windows Azure Java Developer Center](http://www.windowsazure.com/en-us/develop/java/) +This project provides a client library in Java that makes it easy to consume Windows Azure services. For documentation please see the [Windows Azure Java Developer Center](http://www.windowsazure.com/en-us/develop/java/). #Features -* Blob - * Create/Read/Update/Delete Blobs -* Queue - * Create/Delete Queues - * Insert/Peek Queue Messages - * Advanced Queue Operations -* Media Services - * Upload Media Files to Media Services - * Change the encoding on uploaded Media Services - * Provide streaming or download access to uploaded/transformed Media Files + +* Storage + * Blob + * Create/Read/Update/Delete containers + * Create/Read/Update/Delete blobs + * Queue + * Create/Delete Queues + * Insert/Peek Queue Messages + * Advanced Queue Operations + * Table + * Create/Read/Update/Delete tables + * Create/Read/Update/Delete entities + * Batch operation * Service Bus - * Use either the Queue or Topic/Subscription Model + * Queues + * Create/Read/Update/Delete queues + * Send/Receive/Unlock/Delete messages + * Topics + * Create/Read/Update/Delete topics + * Create/Read/Update/Delete subscriptions + * Create/Read/Update/Delete rules + * Send/Receive/Unlock/Delete messages +* Media Services + * Upload Media Files to Media Services + * Change the encoding on uploaded Media Services + * Provide streaming or download access to uploaded/transformed Media Files * Service Runtime - * Retrieve information about the state of your Azure Compute instances -* Table - * Manage Tables - * Table Entity Operations - * Entity Group Transactions (Batch) + * Retrieve information about the state of your Azure Compute instances + #Getting Started @@ -45,7 +52,7 @@ within your project you can also have them installed by the Java package manager com.microsoft.windowsazure microsoft-windowsazure-api - 0.4.2 + 0.4.3 ##Minimum Requirements From 24b88f127f206812c3e1dc5fc4d5eae3990b6b4b Mon Sep 17 00:00:00 2001 From: Guang Yang Date: Wed, 22 May 2013 10:59:53 -0700 Subject: [PATCH 2/4] update pom.xml to 0.4.3 --- microsoft-azure-api/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsoft-azure-api/pom.xml b/microsoft-azure-api/pom.xml index 9c0bb981d0a7..b5663e1e6f6a 100644 --- a/microsoft-azure-api/pom.xml +++ b/microsoft-azure-api/pom.xml @@ -17,7 +17,7 @@ 4.0.0 com.microsoft.windowsazure microsoft-windowsazure-api - 0.4.2 + 0.4.3 jar Microsoft Windows Azure Client API From 7f4c8e5a3020b728e5c362764d4ad838f958daf3 Mon Sep 17 00:00:00 2001 From: Guang Yang Date: Wed, 22 May 2013 11:30:00 -0700 Subject: [PATCH 3/4] update changelog for 0.4.2 and 0.4.3 --- ChangeLog.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ChangeLog.txt b/ChangeLog.txt index 2c15b781280a..bfa94c50772d 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,13 @@ +2013.05.27 Version 0.4.3 +* Added support for updating existing Queue/Topic/Subscription for Service Bus +* Added support for message lock renewal to support long running message processing for Service Bus +* Added new properties to Queue/Topic/Subscription/Rule for Service Bus +* Added support for rebinding content key for Media Services + +2013.04.16 Version 0.4.2 +* Fixed a bunch of GB18030 encoding issues +* Fixed a service bus issue when the locale is not UTC + 2013.03.12 Version 0.4.1 * Added "Azure-SDK-For-Java/" To User-Agent HTTP header * Added connection string support for Service Bus From abd2999febe8491f33980f32d7b90eda7362ea6b Mon Sep 17 00:00:00 2001 From: Guang Yang Date: Wed, 22 May 2013 12:18:55 -0700 Subject: [PATCH 4/4] update based on code review feedback --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 36c1db701232..6c2ed9bf0343 100644 --- a/README.md +++ b/README.md @@ -20,15 +20,19 @@ This project provides a client library in Java that makes it easy to consume Win * Queues * Create/Read/Update/Delete queues * Send/Receive/Unlock/Delete messages + * Renew message lock * Topics * Create/Read/Update/Delete topics * Create/Read/Update/Delete subscriptions * Create/Read/Update/Delete rules * Send/Receive/Unlock/Delete messages + * Renew message lock * Media Services - * Upload Media Files to Media Services - * Change the encoding on uploaded Media Services - * Provide streaming or download access to uploaded/transformed Media Files + * Create/Read/Update/Delete access policies + * Create/Read/Update/Delete asset files + * Create/Read/Update/Delete assets + * Create/Read/Update/Delete/Rebind content keys + * Create/Read/Update/Cancel/Delete jobs * Service Runtime * Retrieve information about the state of your Azure Compute instances