Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 6 additions & 1 deletion sdk/eventhub/azure-eventhub/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 5.6.0 (Unreleased)
## 5.6.0 (2021-07-07)

### Features Added

Expand All @@ -15,6 +15,11 @@
- Added new property `body_type` on `azure.eventhub.EventData` which returns `azure.eventhub.amqp.AmqpMessageBodyType`.
- Added new read-only property `raw_amqp_message` on `azure.eventhub.EventData` which returns `azure.eventhub.amqp.AmqpAnnotatedMessage`.

### Fixed

- Updated uAMQP dependency to 1.4.1.
- Fixed a bug that attributes creation_time, absolute_expiry_time and group_sequence on MessageProperties should be compatible with integer types on Python 2.7.

## 5.5.0 (2021-05-13)

**New Features**
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/azure-eventhub/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
packages=find_packages(exclude=exclude_packages),
install_requires=[
"azure-core<2.0.0,>=1.14.0",
"uamqp>=1.4.0,<2.0.0",
"uamqp>=1.4.1,<2.0.0",
],
extras_require={
":python_version<'3.0'": ['azure-nspkg'],
Expand Down
2 changes: 1 addition & 1 deletion shared_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ opentelemetry-sdk<2.0.0,>=1.0.0
#override azure-eventhub-checkpointstoreblob azure-core<2.0.0,>=1.10.0
#override azure-eventhub-checkpointstoreblob-aio azure-core<2.0.0,>=1.10.0
#override azure-eventhub-checkpointstoreblob-aio aiohttp<4.0,>=3.0
#override azure-eventhub uamqp>=1.4.0,<2.0.0
#override azure-eventhub uamqp>=1.4.1,<2.0.0
#override azure-appconfiguration msrest>=0.6.10
#override azure-mgmt-appconfiguration msrest>=0.6.21
#override azure-servicebus uamqp>=1.4.1,<2.0.0
Expand Down