@azure/event-hubs 5.7.0-alpha.20211111.1 → 5.7.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,16 +1,12 @@
1
1
  # Release History
2
2
 
3
- ## 5.7.0-beta.1 (Unreleased)
3
+ ## 5.7.0-beta.1 (2021-11-12)
4
4
 
5
5
  ### Features Added
6
6
 
7
7
  - Added `EventHubBufferedProducerClient` with functionality to manage batching, concurrency, and sending of events implicitly. This abstracts the complexity away from applications regarding publishing events in an optimal fashion. See issue [#17699](https://github.com/Azure/azure-sdk-for-js/issues/17699) for more details.
8
8
  - Added `skipParsingBodyAsJson` optional parameter to `EventHubConsumerClient.subscribe` method. When set to `true` it will disable the client from running `JSON.parse()` on the message body when receiving the message. Not applicable if the message was sent with AMQP body type `value` or `sequence`.
9
9
 
10
- ### Breaking Changes
11
-
12
- ### Bugs Fixed
13
-
14
10
  ### Other Changes
15
11
 
16
12
  - Prevent empty spans from being created when tracing is disabled. Fixes issue [#14063](https://github.com/Azure/azure-sdk-for-js/issues/14063)