From a0e14ee49987c4f3331cf61e232ea5709cf1d111 Mon Sep 17 00:00:00 2001 From: Ramya Achutha Rao Date: Wed, 2 Sep 2020 15:08:11 -0700 Subject: [PATCH 1/2] [Event Hubs] Prep for 5.3.0 release --- sdk/eventhub/event-hubs/CHANGELOG.md | 16 ++++++++++++---- sdk/eventhub/event-hubs/package.json | 2 +- sdk/eventhub/event-hubs/src/util/constants.ts | 2 +- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/sdk/eventhub/event-hubs/CHANGELOG.md b/sdk/eventhub/event-hubs/CHANGELOG.md index b4a2ca1414dd..8c79e85d0073 100644 --- a/sdk/eventhub/event-hubs/CHANGELOG.md +++ b/sdk/eventhub/event-hubs/CHANGELOG.md @@ -1,16 +1,24 @@ # Release History -## 5.3.0-preview.2 (Unreleased) +## 5.3.0 (Unreleased) + +### New features: + +- Adds `loadBalancingOptions` to the `EventHubConsumerClient` to add control around + how aggressively the client claims partitions while load balancing. + ([PR 9706](https://github.com/Azure/azure-sdk-for-js/pull/9706)) + +### Bug fixes: - Fixes issue [#9704](https://github.com/Azure/azure-sdk-for-js/issues/9704) where events could be _skipped_ while receiving messages. Previously this could occur when a retryable error was encountered and retries were exhausted while receiving a batch of events. -- Fixes issue [#10298](https://github.com/Azure/azure-sdk-for-js/issues/10298) - where spans had inconsistent `peer.address` attributes by removing the scheme - (i.e. `sb://`) from EventHub `peer.address` span attributes ### Tracing updates: +- Fixes issue [#10298](https://github.com/Azure/azure-sdk-for-js/issues/10298) + where spans had inconsistent `peer.address` attributes by removing the scheme + (i.e. `sb://`) from EventHub `peer.address` span attributes - Addresses [#10276](https://github.com/Azure/azure-sdk-for-js/issues/10276): adds `message_bus.destination` and `peer.address` attributes to `Azure.EventHubs.message` spans. ([PR 10389](https://github.com/Azure/azure-sdk-for-js/pull/10389)) diff --git a/sdk/eventhub/event-hubs/package.json b/sdk/eventhub/event-hubs/package.json index d435233444d8..77661fa5c7c5 100644 --- a/sdk/eventhub/event-hubs/package.json +++ b/sdk/eventhub/event-hubs/package.json @@ -1,7 +1,7 @@ { "name": "@azure/event-hubs", "sdk-type": "client", - "version": "5.3.0-preview.2", + "version": "5.3.0", "description": "Azure Event Hubs SDK for JS.", "author": "Microsoft Corporation", "license": "MIT", diff --git a/sdk/eventhub/event-hubs/src/util/constants.ts b/sdk/eventhub/event-hubs/src/util/constants.ts index 4ac317d17d37..3d5028c64a1e 100644 --- a/sdk/eventhub/event-hubs/src/util/constants.ts +++ b/sdk/eventhub/event-hubs/src/util/constants.ts @@ -6,5 +6,5 @@ */ export const packageJsonInfo = { name: "@azure/event-hubs", - version: "5.3.0-preview.2" + version: "5.3.0" }; From 700c3448645cb3e3d737b7fc7b77a6ef89362ef8 Mon Sep 17 00:00:00 2001 From: Ramya Achutha Rao Date: Thu, 3 Sep 2020 12:27:23 -0700 Subject: [PATCH 2/2] Add changelog update for SAS in connection string --- sdk/eventhub/event-hubs/CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sdk/eventhub/event-hubs/CHANGELOG.md b/sdk/eventhub/event-hubs/CHANGELOG.md index 8c79e85d0073..a9dc6236d438 100644 --- a/sdk/eventhub/event-hubs/CHANGELOG.md +++ b/sdk/eventhub/event-hubs/CHANGELOG.md @@ -6,7 +6,9 @@ - Adds `loadBalancingOptions` to the `EventHubConsumerClient` to add control around how aggressively the client claims partitions while load balancing. - ([PR 9706](https://github.com/Azure/azure-sdk-for-js/pull/9706)) + ([PR 9706](https://github.com/Azure/azure-sdk-for-js/pull/9706)). +- Support using the SharedAccessSignature from the connection string. + ([PR 10951](https://github.com/Azure/azure-sdk-for-js/pull/10951)). ### Bug fixes: