diff --git a/sdk/storage/azure-storage-blob-batch/CHANGELOG.md b/sdk/storage/azure-storage-blob-batch/CHANGELOG.md index 450eed0d2ab1..2aa7e631edc0 100644 --- a/sdk/storage/azure-storage-blob-batch/CHANGELOG.md +++ b/sdk/storage/azure-storage-blob-batch/CHANGELOG.md @@ -1,6 +1,7 @@ # Release History -## 12.6.0-beta.1 (Unreleased) +## 12.6.0-beta.1 (2020-07-07) +- Updated azure-storage-common and azure-storage-blob dependencies to add support for the 2019-12-12 service version. ## 12.5.2 (2020-06-12) - Updated azure-storage-common and azure-core dependencies. diff --git a/sdk/storage/azure-storage-blob-batch/README.md b/sdk/storage/azure-storage-blob-batch/README.md index e36e5cd185f9..862214cfb0de 100644 --- a/sdk/storage/azure-storage-blob-batch/README.md +++ b/sdk/storage/azure-storage-blob-batch/README.md @@ -22,7 +22,7 @@ definition, such as text or binary data. com.azure azure-storage-blob-batch - 12.5.2 + 12.6.0-beta.1 ``` [//]: # ({x-version-update-end}) diff --git a/sdk/storage/azure-storage-blob-changefeed/CHANGELOG.md b/sdk/storage/azure-storage-blob-changefeed/CHANGELOG.md index db455f5b1307..f7ec20868880 100644 --- a/sdk/storage/azure-storage-blob-changefeed/CHANGELOG.md +++ b/sdk/storage/azure-storage-blob-changefeed/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 12.0.0-beta.1 (Unreleased) +## 12.0.0-beta.1 (2020-07-07) - Initial release. - Added support to get changefeed events for an account. diff --git a/sdk/storage/azure-storage-blob-cryptography/CHANGELOG.md b/sdk/storage/azure-storage-blob-cryptography/CHANGELOG.md index 76fa6226f866..d6c9130b2241 100644 --- a/sdk/storage/azure-storage-blob-cryptography/CHANGELOG.md +++ b/sdk/storage/azure-storage-blob-cryptography/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 12.8.0-beta.1 (Unreleased) +## 12.8.0-beta.1 (2020-07-07) - Added support for setting blob tags on upload. ## 12.7.0 (2020-06-12) diff --git a/sdk/storage/azure-storage-blob-cryptography/README.md b/sdk/storage/azure-storage-blob-cryptography/README.md index 2faa193ce2cf..efab887e6280 100644 --- a/sdk/storage/azure-storage-blob-cryptography/README.md +++ b/sdk/storage/azure-storage-blob-cryptography/README.md @@ -21,7 +21,7 @@ This package supports client side encryption for blob storage. com.azure azure-storage-blob-cryptography - 12.7.0 + 12.8.0-beta.1 ``` [//]: # ({x-version-update-end}) diff --git a/sdk/storage/azure-storage-blob/CHANGELOG.md b/sdk/storage/azure-storage-blob/CHANGELOG.md index 5391c541489b..96a2a9fa0226 100644 --- a/sdk/storage/azure-storage-blob/CHANGELOG.md +++ b/sdk/storage/azure-storage-blob/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 12.8.0-beta.1 (Unreleased) +## 12.8.0-beta.1 (2020-07-07) - Added support for the 2019-12-12 service version. - Added support for blob tags. Added get/setTags method to Blob(Async)ClientBase. Added filterTags api to BlobServiceClient. Added ability to specify tags on all methods that create a blob. Tag count returned on getProperties/getBlob. Option to include returning tags on listing. - Added support to query a blob. Added query and opernQueryInputStream methods to Blob(Async)ClientBase. diff --git a/sdk/storage/azure-storage-blob/README.md b/sdk/storage/azure-storage-blob/README.md index 30c9e6152136..4747ec49284c 100644 --- a/sdk/storage/azure-storage-blob/README.md +++ b/sdk/storage/azure-storage-blob/README.md @@ -22,7 +22,7 @@ definition, such as text or binary data. com.azure azure-storage-blob - 12.7.0 + 12.8.0-beta.1 ``` [//]: # ({x-version-update-end}) diff --git a/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/BlobServiceAsyncClient.java b/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/BlobServiceAsyncClient.java index a0ea19070301..8e412393564c 100644 --- a/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/BlobServiceAsyncClient.java +++ b/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/BlobServiceAsyncClient.java @@ -343,11 +343,9 @@ private Mono listBlobContainersSegmen null, null, Context.NONE), timeout); } - - // TODO: (rickle-msft) doc links /** * Returns a reactive Publisher emitting the blobs in this account whose tags match the query expression. For more - * information, including information on the query syntax, see the Azure Docs. + * information, including information on the query syntax, see the Azure Docs. * *

Code Samples

* @@ -362,7 +360,7 @@ public PagedFlux findBlobsByTags(String query) { /** * Returns a reactive Publisher emitting the blobs in this account whose tags match the query expression. For more - * information, including information on the query syntax, see the Azure Docs. + * information, including information on the query syntax, see the Azure Docs. * *

Code Samples

* diff --git a/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/BlobServiceClient.java b/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/BlobServiceClient.java index 6e50941a7a2a..2088971f76c5 100644 --- a/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/BlobServiceClient.java +++ b/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/BlobServiceClient.java @@ -195,11 +195,10 @@ public PagedIterable listBlobContainers(ListBlobContainersOpt return new PagedIterable<>(blobServiceAsyncClient.listBlobContainersWithOptionalTimeout(options, timeout)); } - // TODO: (rickle-msft) doc links /** * Returns a lazy loaded list of blobs in this account whose tags match the query expression. The returned * {@link PagedIterable} can be consumed while new items are automatically retrieved as needed. For more - * information, including information on the query syntax, see the Azure Docs. + * information, including information on the query syntax, see the Azure Docs. * *

Code Samples

* @@ -215,7 +214,7 @@ public PagedIterable findBlobsByTags(String query) { /** * Returns a lazy loaded list of blobs in this account whose tags match the query expression. The returned * {@link PagedIterable} can be consumed while new items are automatically retrieved as needed. For more - * information, including information on the query syntax, see the Azure Docs. + * information, including information on the query syntax, see the Azure Docs. * *

Code Samples

* diff --git a/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/specialized/BlobAsyncClientBase.java b/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/specialized/BlobAsyncClientBase.java index b9dbda523c82..031786dc772e 100644 --- a/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/specialized/BlobAsyncClientBase.java +++ b/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/specialized/BlobAsyncClientBase.java @@ -1338,7 +1338,6 @@ Mono> setMetadataWithResponse(Map metadata, BlobR .map(response -> new SimpleResponse<>(response, null)); } - // TODO: (rickle-msft) docs link /** * Returns the blob's tags. * @@ -1347,7 +1346,7 @@ Mono> setMetadataWithResponse(Map metadata, BlobR * {@codesnippet com.azure.storage.blob.specialized.BlobAsyncClientBase.getTags} * *

For more information, see the - * Azure Docs

+ * Azure Docs

* * @return A reactive response containing the blob's tags. */ @@ -1363,7 +1362,7 @@ public Mono> getTags() { * {@codesnippet com.azure.storage.blob.specialized.BlobAsyncClientBase.getTagsWithResponse} * *

For more information, see the - * Azure Docs

+ * Azure Docs

* * @return A reactive response containing the blob's tags. */ @@ -1396,7 +1395,7 @@ Mono>> getTagsWithResponse(Context context) { * {@codesnippet com.azure.storage.blob.specialized.BlobAsyncClientBase.setTags#Map} * *

For more information, see the - * Azure Docs

+ * Azure Docs

* * @param tags Tags to associate with the blob. * @return A reactive response signaling completion. @@ -1414,7 +1413,7 @@ public Mono setTags(Map tags) { * {@codesnippet com.azure.storage.blob.specialized.BlobAsyncClientBase.setTagsWithResponse#Map} * *

For more information, see the - * Azure Docs

+ * Azure Docs

* * @param tags Tags to associate with the blob. * @return A reactive response signaling completion. @@ -1694,12 +1693,11 @@ public String generateSas(BlobServiceSasSignatureValues blobServiceSasSignatureV .generateSas(SasImplUtils.extractSharedKeyCredential(getHttpPipeline())); } - /* TODO (gapra): Quick Query service docs. */ /** * Queries the entire blob. * *

For more information, see the - * Azure Docs

+ * Azure Docs

* *

Code Samples

* @@ -1717,7 +1715,7 @@ public Flux query(String expression) { * Queries the entire blob. * *

For more information, see the - * Azure Docs

+ * Azure Docs

* *

Code Samples

* diff --git a/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/specialized/BlobClientBase.java b/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/specialized/BlobClientBase.java index 3adaee92bd34..093220f8b91c 100644 --- a/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/specialized/BlobClientBase.java +++ b/sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/specialized/BlobClientBase.java @@ -785,7 +785,6 @@ public Response setMetadataWithResponse(Map metadata, Blob return blockWithOptionalTimeout(response, timeout); } - // TODO: (rickle-msft) docs link /** * Returns the blob's tags. * @@ -794,7 +793,7 @@ public Response setMetadataWithResponse(Map metadata, Blob * {@codesnippet com.azure.storage.blob.specialized.BlobClientBase.getTags} * *

For more information, see the - * Azure Docs

+ * Azure Docs

* * @return The blob's tags. */ @@ -810,7 +809,7 @@ public Map getTags() { * {@codesnippet com.azure.storage.blob.specialized.BlobClientBase.getTagsWithResponse#Duration-Context} * *

For more information, see the - * Azure Docs

+ * Azure Docs

* * @param timeout An optional timeout value beyond which a {@link RuntimeException} will be raised. * @param context Additional context that is passed through the Http pipeline during the service call. @@ -831,7 +830,7 @@ public Response> getTagsWithResponse(Duration timeout, Conte * {@codesnippet com.azure.storage.blob.specialized.BlobClientBase.setTags#Map} * *

For more information, see the - * Azure Docs

+ * Azure Docs

* * @param tags Tags to associate with the blob. */ @@ -848,7 +847,7 @@ public void setTags(Map tags) { * {@codesnippet com.azure.storage.blob.specialized.BlobClientBase.setTagsWithResponse#Map-Duration-Context} * *

For more information, see the - * Azure Docs

+ * Azure Docs

* * @param tags Tags to associate with the blob. * @param timeout An optional timeout value beyond which a {@link RuntimeException} will be raised. @@ -1055,12 +1054,11 @@ public String generateSas(BlobServiceSasSignatureValues blobServiceSasSignatureV return this.client.generateSas(blobServiceSasSignatureValues); } - /* TODO (gapra): Populate Rest Api docs for quick query. */ /** * Opens a blob input stream to query the blob. * *

For more information, see the - * Azure Docs

+ * Azure Docs

* *

Code Samples

* @@ -1077,7 +1075,7 @@ public InputStream openQueryInputStream(String expression) { * Opens a blob input stream to query the blob. * *

For more information, see the - * Azure Docs

+ * Azure Docs

* *

Code Samples

* @@ -1102,7 +1100,7 @@ public InputStream openQueryInputStream(BlobQueryOptions queryOptions) { * Queries an entire blob into an output stream. * *

For more information, see the - * Azure Docs

+ * Azure Docs

* *

Code Samples

* @@ -1121,7 +1119,7 @@ public void query(OutputStream stream, String expression) { * Queries an entire blob into an output stream. * *

For more information, see the - * Azure Docs

+ * Azure Docs

* *

Code Samples

* diff --git a/sdk/storage/azure-storage-common/CHANGELOG.md b/sdk/storage/azure-storage-common/CHANGELOG.md index d8786f7f65a4..f969e02d842d 100644 --- a/sdk/storage/azure-storage-common/CHANGELOG.md +++ b/sdk/storage/azure-storage-common/CHANGELOG.md @@ -1,6 +1,8 @@ # Release History -## 12.8.0-beta.1 (Unreleased) +## 12.8.0-beta.1 (2020-07-07) +- Added support for the 2019-12-12 service version. +- Buffered UploadUtils now supports uploading data of long sized length. ## 12.7.0 (2020-06-12) - Updated azure-core dependency. diff --git a/sdk/storage/azure-storage-common/README.md b/sdk/storage/azure-storage-common/README.md index 85bed911da47..cbe4d7e5a151 100644 --- a/sdk/storage/azure-storage-common/README.md +++ b/sdk/storage/azure-storage-common/README.md @@ -18,7 +18,7 @@ Azure Storage Common is a library that has common dependencies for all Azure Sto com.azure azure-storage-common - 12.7.0 + 12.8.0-beta.1 ``` [//]: # ({x-version-update-end}) diff --git a/sdk/storage/azure-storage-file-datalake/CHANGELOG.md b/sdk/storage/azure-storage-file-datalake/CHANGELOG.md index 881d9af7cbdc..04b7bbcd7543 100644 --- a/sdk/storage/azure-storage-file-datalake/CHANGELOG.md +++ b/sdk/storage/azure-storage-file-datalake/CHANGELOG.md @@ -1,7 +1,9 @@ # Release History -## 12.2.0-beta.1 (Unreleased) +## 12.2.0-beta.1 (2019-07-07) +- Added support for the 2019-12-12 service version. - Added support to query a file. +- Added support to increase the maximum size of data that can be sent via an append. ## 12.1.2 (2020-06-12) - Updated azure-storage-common and azure-core dependencies. diff --git a/sdk/storage/azure-storage-file-datalake/README.md b/sdk/storage/azure-storage-file-datalake/README.md index c9323487b20f..dab5875941e1 100644 --- a/sdk/storage/azure-storage-file-datalake/README.md +++ b/sdk/storage/azure-storage-file-datalake/README.md @@ -25,7 +25,7 @@ Add a dependency on Azure Storage File Datalake com.azure azure-storage-file-datalake - 12.1.2 + 12.2.0-beta.1 ``` [//]: # ({x-version-update-end}) diff --git a/sdk/storage/azure-storage-file-datalake/src/main/java/com/azure/storage/file/datalake/DataLakeFileAsyncClient.java b/sdk/storage/azure-storage-file-datalake/src/main/java/com/azure/storage/file/datalake/DataLakeFileAsyncClient.java index 431d5b006eb0..0139c0e2fdf8 100644 --- a/sdk/storage/azure-storage-file-datalake/src/main/java/com/azure/storage/file/datalake/DataLakeFileAsyncClient.java +++ b/sdk/storage/azure-storage-file-datalake/src/main/java/com/azure/storage/file/datalake/DataLakeFileAsyncClient.java @@ -885,12 +885,11 @@ public Mono> renameWithResponse(String destina } } - /* TODO (gapra): Service docs*/ /** * Queries the entire file. * *

For more information, see the - * Azure Docs

+ * Azure Docs

* *

Code Samples

* @@ -908,7 +907,7 @@ public Flux query(String expression) { * Queries the entire file. * *

For more information, see the - * Azure Docs

+ * Azure Docs

* *

Code Samples

* diff --git a/sdk/storage/azure-storage-file-datalake/src/main/java/com/azure/storage/file/datalake/DataLakeFileClient.java b/sdk/storage/azure-storage-file-datalake/src/main/java/com/azure/storage/file/datalake/DataLakeFileClient.java index 41e0fa269764..9a70956e97bd 100644 --- a/sdk/storage/azure-storage-file-datalake/src/main/java/com/azure/storage/file/datalake/DataLakeFileClient.java +++ b/sdk/storage/azure-storage-file-datalake/src/main/java/com/azure/storage/file/datalake/DataLakeFileClient.java @@ -554,12 +554,11 @@ public Response renameWithResponse(String destinationFileSys return new SimpleResponse<>(resp, new DataLakeFileClient(resp.getValue())); } - /* TODO (gapra): Populate Rest Api docs for quick query. */ /** * Opens an input stream to query the file. * *

For more information, see the - * Azure Docs

+ * Azure Docs

* *

Code Samples

* @@ -576,7 +575,7 @@ public InputStream openQueryInputStream(String expression) { * Opens an input stream to query the file. * *

For more information, see the - * Azure Docs

+ * Azure Docs

* *

Code Samples

* @@ -602,7 +601,7 @@ public InputStream openQueryInputStream(FileQueryOptions queryOptions) { * Queries an entire file into an output stream. * *

For more information, see the - * Azure Docs

+ * Azure Docs

* *

Code Samples

* @@ -621,7 +620,7 @@ public void query(OutputStream stream, String expression) { * Queries an entire file into an output stream. * *

For more information, see the - * Azure Docs

+ * Azure Docs

* *

Code Samples

* diff --git a/sdk/storage/azure-storage-file-share/CHANGELOG.md b/sdk/storage/azure-storage-file-share/CHANGELOG.md index ef5467fc518b..348c5394ad49 100644 --- a/sdk/storage/azure-storage-file-share/CHANGELOG.md +++ b/sdk/storage/azure-storage-file-share/CHANGELOG.md @@ -1,6 +1,7 @@ # Release History -## 12.6.0-beta.1 (Unreleased) +## 12.6.0-beta.1 (2019-07-07) +- Added support for the 2019-12-12 service version. - Added support for restoring file share. ## 12.5.0 (2020-06-12) diff --git a/sdk/storage/azure-storage-file-share/README.md b/sdk/storage/azure-storage-file-share/README.md index 5579a22bd0d5..92123fc2b244 100644 --- a/sdk/storage/azure-storage-file-share/README.md +++ b/sdk/storage/azure-storage-file-share/README.md @@ -24,7 +24,7 @@ Shares provide a way to organize sets of files and also can be mounted as an SMB com.azure azure-storage-file-share - 12.5.0 + 12.6.0-beta.1 ``` [//]: # ({x-version-update-end}) diff --git a/sdk/storage/azure-storage-internal-avro/CHANGELOG.md b/sdk/storage/azure-storage-internal-avro/CHANGELOG.md index bd3cd9cf81b5..cc636ba30c98 100644 --- a/sdk/storage/azure-storage-internal-avro/CHANGELOG.md +++ b/sdk/storage/azure-storage-internal-avro/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 12.0.0-beta.1 (Unreleased) +## 12.0.0-beta.1 (2019-07-07) - Initial release. ### Features included in `azure-storage-internal-avro` diff --git a/sdk/storage/azure-storage-queue/CHANGELOG.md b/sdk/storage/azure-storage-queue/CHANGELOG.md index 35f02e370099..4aab944f6f30 100644 --- a/sdk/storage/azure-storage-queue/CHANGELOG.md +++ b/sdk/storage/azure-storage-queue/CHANGELOG.md @@ -1,6 +1,7 @@ # Release History -## 12.6.0-beta.1 (Unreleased) +## 12.6.0-beta.1 (2019-07-07) +- Added support for the 2019-12-12 service version. ## 12.5.2 (2020-06-12) - Updated azure-storage-common and azure-core dependencies. diff --git a/sdk/storage/azure-storage-queue/README.md b/sdk/storage/azure-storage-queue/README.md index 77c5e64a4162..71027ce19a2e 100644 --- a/sdk/storage/azure-storage-queue/README.md +++ b/sdk/storage/azure-storage-queue/README.md @@ -20,7 +20,7 @@ A single queue message can be up to 64 KB in size, and a queue can contain milli com.azure azure-storage-queue - 12.5.2 + 12.6.0-beta.1 ``` [//]: # ({x-version-update-end})