Skip to content

Commit

Permalink
[Event Hubs] Prep for 5.3.0 release (#10996)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramya-rao-a authored Sep 3, 2020
1 parent 5d98de8 commit 6890af0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
18 changes: 14 additions & 4 deletions sdk/eventhub/event-hubs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
# 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)).
- Support using the SharedAccessSignature from the connection string.
([PR 10951](https://github.com/Azure/azure-sdk-for-js/pull/10951)).

### 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))
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/event-hubs/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/event-hubs/src/util/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
*/
export const packageJsonInfo = {
name: "@azure/event-hubs",
version: "5.3.0-preview.2"
version: "5.3.0"
};

0 comments on commit 6890af0

Please sign in to comment.