diff --git a/sdk/eventhubs/azure-messaging-eventhubs-checkpointstore-blob/CHANGELOG.md b/sdk/eventhubs/azure-messaging-eventhubs-checkpointstore-blob/CHANGELOG.md index 63efa6508e7e..fcc0d9fb4abd 100644 --- a/sdk/eventhubs/azure-messaging-eventhubs-checkpointstore-blob/CHANGELOG.md +++ b/sdk/eventhubs/azure-messaging-eventhubs-checkpointstore-blob/CHANGELOG.md @@ -1,4 +1,8 @@ # Release History +## 1.0.0-beta.4 (2019-12-02) +- Artifact name changed from `preview` to `beta`. +- `BlobCheckpointStore` implementation updated to match changes in `CheckpointStore` interface. + ## 1.0.0-preview.3 (2019-11-01) - Renamed `BlobPartitionManager` to `BlobEventProcessorStore` - Added fully qualified namespace to list ownership API. diff --git a/sdk/eventhubs/azure-messaging-eventhubs/CHANGELOG.md b/sdk/eventhubs/azure-messaging-eventhubs/CHANGELOG.md index 12f6e20fdcc0..bbaa76fca87b 100644 --- a/sdk/eventhubs/azure-messaging-eventhubs/CHANGELOG.md +++ b/sdk/eventhubs/azure-messaging-eventhubs/CHANGELOG.md @@ -1,4 +1,20 @@ # Release History +## 5.0.0-beta.6 (2019-12-02) +- Artifact name changed from `preview` to `beta`. +- Producer clients (both sync and async) support sending events only using `EventDataBatch`. All other send overloads are removed. +- Async consumer now supports receiving events from all partitions to help getting started scenarios. +- Sync consumer will only support receiving from a single partition. +- `BatchOptions` is renamed to `CreateBatchOptions`. +- `receive()` methods now return `PartitionEvent` which includes `PartitionContext` and `EventData`. +- Producer and consumer clients now support sharing same amqp connection. +- Removed support for user-provided schedulers. +- Configuration for owner level and ability to track last enqueued event properties are now in `ReceiveOptions` and will +be declared at the time of receiving events and not when the client is created. +- `EventProcessorStore` renamed to `CheckpointStore` and method signatures are updated. +- `EventProcessor` renamed to `EventProcessorClient` and `EventProcessorBuilder` renamed to `EventProcessorClientBuilder`. +- New types introduced to simplify functional callbacks used in `EventProcessorClient`. +- `EventProcessorClient` now supports tracking last enqueued event properties. + ## 5.0.0-preview.5 (2019-11-01) - Separate clients for sending and receiving events. - `EventHubProducerAsyncClient` and `EventHubProduderClient` for sending events.