Update versions for Event Hubs. (#850)
* Remove receive all bullet point. * Update versions. * Update notes.
This commit is contained in:
Родитель
9f33a3c170
Коммит
57438c0288
|
@ -1,6 +1,7 @@
|
|||
"Service","Package","Version","RepoPath","MissingDocs"
|
||||
"App Configuration","azure-data-appconfiguration","1.0.0-preview.6","appconfiguration","False"
|
||||
"EventHubs","azure-messaging-eventhubs","5.0.0-preview.5","eventhubs","False"
|
||||
"Event Hubs","azure-messaging-eventhubs","5.0.0-beta.6","eventhubs","False"
|
||||
"Event Hubs - Azure Storage CheckpointStore","azure-messaging-eventhubs-checkpointstore-blob","1.0.0-beta.4","eventhubs","False"
|
||||
"Identity","azure-identity","1.0.1","identity","False"
|
||||
"Key Vault - Certificates","azure-security-keyvault-certificates","4.0.0-preview.5","keyvault","False"
|
||||
"Key Vault - Keys","azure-security-keyvault-keys","4.0.0","keyvault","False"
|
||||
|
|
|
|
@ -79,7 +79,7 @@ To use the GA and preview libraries, refer to the Maven dependency information b
|
|||
<artifactId>azure-storage-file-datalake</artifactId>
|
||||
<version>12.0.0-beta.7</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
<dependency>
|
||||
<groupId>com.azure</groupId>
|
||||
<artifactId>azure-storage-file-share</artifactId>
|
||||
|
@ -97,7 +97,7 @@ To use the GA and preview libraries, refer to the Maven dependency information b
|
|||
<artifactId>azure-core-tracing-opencensus</artifactId>
|
||||
<version>1.0.0-beta.5</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
<dependency>
|
||||
<groupId>com.azure</groupId>
|
||||
<artifactId>azure-core-tracing-opentelemetry</artifactId>
|
||||
|
@ -119,54 +119,55 @@ If you have a bug or feature request for one of the libraries, please post an is
|
|||
Detailed changelogs are linked from the [Quick Links](#quick-links) below. Here are some of the highlights:
|
||||
|
||||
### App Configuration
|
||||
- Added support for Azure Activity Directory authentication. For more details, please see the [App Configuration](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/appconfiguration/azure-data-appconfiguration/CHANGELOG.md#version-100-preview7-2019-11-26)
|
||||
- Added support for Azure Activity Directory authentication. For more details, please see the [App Configuration](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/appconfiguration/azure-data-appconfiguration/CHANGELOG.md#version-100-preview7-2019-11-26)
|
||||
change log.
|
||||
- Added service API version support.
|
||||
- Removed clearReadOnly API, updated setReadOnly API to support setting and clearing read only based on the flag passed.
|
||||
- Removed Range class, SettingSelector no longer supports Range.
|
||||
|
||||
### Event Hubs
|
||||
|
||||
- A large portion of the public API surface, including members and parameters, have had adjustments to their naming and
|
||||
organization to improve discoverability, provide better context to developers. For more details, please see the [Event
|
||||
Hubs](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/eventhubs/azure-messaging-eventhubs/CHANGELOG.md#500-beta6-2019-12-02)
|
||||
changelog.
|
||||
- `EventHubAsyncClient` and `EventHubClient` are no longer exposed. Partition information and Event Hub properties may
|
||||
be queried using any of the producer or consumer clients.
|
||||
- `EventHubsConsumerAsyncClient`, `EventHubProducerAsyncClient`, `EventHubsConsumerClient`, and `EventHubProducerClient`
|
||||
are no longer bound to a partition.
|
||||
- Events may now be read across all partitions of an Event Hub using the `receive` method of the consumer client. This
|
||||
is intended for exploring Event Hubs and not recommended for production use; for production scenarios, please use the
|
||||
`EventProcessorClient` as a more robust alternative.
|
||||
- `EventProcessorClient` is created and configured through `EventProcessorClientBuilder` with simpler functional
|
||||
callbacks.
|
||||
- `EventHubClient` (and its async counterpart) have been replaced by separate clients for consumer and producer, named
|
||||
`EventHubsConsumerAsyncClient`, `EventHubProducerAsyncClient`, `EventHubsConsumerClient`, and
|
||||
`EventHubProducerClient`.
|
||||
- Consumer and producer clients are no longer bound to a single partition.
|
||||
- `EventProcessorClient` is created and configured through `EventProcessorClientBuilder`.
|
||||
|
||||
### Storage Blob
|
||||
- Optimized downloadToFile to avoid an unnecessary getProperties call and to lock on an etag once the operation has started. For more details, please see the [Storage Blob](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-blob/CHANGELOG.md#version-1210-2019-12-04)
|
||||
- Optimized `downloadToFile` to avoid an unnecessary `getProperties` call and to lock on an ETag once the operation has
|
||||
started. For more details, please see the [Storage
|
||||
Blob](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-blob/CHANGELOG.md#version-1210-2019-12-04)
|
||||
change log.
|
||||
|
||||
### Storage Blob Batch
|
||||
- Changed exception throwing to throw StorageBlobException on invalid request and BlobBatchStorageException when batch operations fail. For more details, please see the [Storage Blob Batch](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-blob-batch/CHANGELOG.md#version-1210-2019-12-04)
|
||||
- Changed exception throwing to throw `StorageBlobException` on invalid request and `BlobBatchStorageException` when
|
||||
batch operations fail. For more details, please see the [Storage Blob
|
||||
Batch](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-blob-batch/CHANGELOG.md#version-1210-2019-12-04)
|
||||
change log.
|
||||
|
||||
|
||||
### Storage Blob Cryptography
|
||||
- Added a check in EncryptedBlobClientBuilder to enforce HTTPS for bearer token authentication. For more details, please see the [Storage Blob Cryptography](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-blob-cryptography/CHANGELOG.md#version-1210-2019-12-04)
|
||||
- Added a check in `EncryptedBlobClientBuilder` to enforce HTTPS for bearer token authentication. For more details,
|
||||
please see the [Storage Blob
|
||||
Cryptography](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-blob-cryptography/CHANGELOG.md#version-1210-2019-12-04)
|
||||
change log.
|
||||
|
||||
|
||||
### Storage File Datalake
|
||||
- Fixed bug in ClientBuilders that prevented OAuth from functioning. For more details, please see the [Storage File Datalake](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-file-datalake/CHANGELOG.md#version-1200-beta7-2019-12-04)
|
||||
- Fixed bug in ClientBuilders that prevented OAuth from functioning. For more details, please see the [Storage File Datalake](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-file-datalake/CHANGELOG.md#version-1200-beta7-2019-12-04)
|
||||
change log.
|
||||
|
||||
|
||||
### Storage File Share
|
||||
- Renamed FileReference to StorageFileItem. For more details, please see the [Storage File Share](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-file-share/CHANGELOG.md#version-1200-preview5-2019-10-31)
|
||||
- Renamed FileReference to StorageFileItem. For more details, please see the [Storage File Share](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-file-share/CHANGELOG.md#version-1200-preview5-2019-10-31)
|
||||
change log.
|
||||
|
||||
|
||||
### Storage Queue
|
||||
- Added a check in ClientBuilders to enforce HTTPS for bearer token authentication. For more details, please see the [Storage Queue](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-queue/CHANGELOG.md#version-1210-2019-12-04)
|
||||
- Added a check in ClientBuilders to enforce HTTPS for bearer token authentication. For more details, please see the [Storage Queue](https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/storage/azure-storage-queue/CHANGELOG.md#version-1210-2019-12-04)
|
||||
change log.
|
||||
|
||||
|
||||
### Tracing
|
||||
- Added tracing instrumentation for AMQP and HTTP Java SDK client libraries using OpenTelemetry implementation of the interface. Detailed [changelog](https://github.com/Azure/azure-sdk-for-java/blob/azure-core-tracing-opentelemetry_1.0.0-beta.1/sdk/core/azure-core-tracing-opentelemetry/CHANGELOG.md) for `azure-core-tracing-opentelemetry`.
|
||||
- Added tracing instrumentation for AMQP and HTTP Java SDK client libraries using OpenTelemetry implementation of the interface. Detailed [changelog](https://github.com/Azure/azure-sdk-for-java/blob/azure-core-tracing-opentelemetry_1.0.0-beta.1/sdk/core/azure-core-tracing-opentelemetry/CHANGELOG.md) for `azure-core-tracing-opentelemetry`.
|
||||
|
||||
## Need help?
|
||||
* For reference documentation visit the [Azure SDK for Java documentation](https://azure.github.io/azure-sdk-for-java/).
|
||||
|
|
Загрузка…
Ссылка в новой задаче