@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 +1 -5
- package/dist/index.js +693 -0
- package/dist/index.js.map +1 -1
- package/dist-esm/src/batchingPartitionChannel.js +241 -0
- package/dist-esm/src/batchingPartitionChannel.js.map +1 -0
- package/dist-esm/src/eventHubBufferedProducerClient.js +242 -0
- package/dist-esm/src/eventHubBufferedProducerClient.js.map +1 -0
- package/dist-esm/src/impl/awaitableQueue.js +46 -0
- package/dist-esm/src/impl/awaitableQueue.js.map +1 -0
- package/dist-esm/src/impl/partitionAssigner.js +54 -0
- package/dist-esm/src/impl/partitionAssigner.js.map +1 -0
- package/dist-esm/src/impl/patitionKeyToIdMapper.js +106 -0
- package/dist-esm/src/impl/patitionKeyToIdMapper.js.map +1 -0
- package/dist-esm/src/index.js +1 -0
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/util/getPromiseParts.js +20 -0
- package/dist-esm/src/util/getPromiseParts.js.map +1 -0
- package/package.json +6 -6
- package/types/3.1/event-hubs.d.ts +284 -0
- package/types/latest/event-hubs.d.ts +300 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
-
## 5.7.0-beta.1 (
|
|
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)
|