Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions sdk/eventhub/azure-eventhubs/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
# Release History

## 5.0.0b4 (2019-XX-XX)
## 5.0.0b4 (2019-10-08)

**New features**

- Support for tracing #7153
- Added support for tracing (issue #7153).
- Added the capability of `EventHubConsumer` to track last enqueued event properties of the partition.
- Added new boolean type parameter`track_last_enqueued_event_properties` in method `EventHubClient.create_consumer()`.
- Added new property `last_enqueued_event_properties` of on `EventHubConsumer` which contains sequence_number, offset, enqueued_time and retrieval_time information.
- By default the capability is disabled as it will cost extra band width for transferring more information if turned on.

**Breaking changes**

- Removed support for IoThHub direct connection.
- [EventHubs compatible connection string](https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-messages-read-builtin) of an IotHub can be used to create EventHubClient.
Comment thread
yunhaoling marked this conversation as resolved.
Outdated
- Removed parameter `exception` in method `close()` of `EventHubConsumer` and `EventHubProcuer`.
- Updated uAMQP dependency to 1.2.3

## 5.0.0b3 (2019-09-10)

Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/azure-eventhubs/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
packages=find_packages(exclude=exclude_packages),
install_requires=[
"azure-core<2.0.0,>=1.0.0b4",
'uamqp~=1.2.0',
'uamqp>=1.2.3',
'azure-common~=1.1',
],
extras_require={
Expand Down