Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend EventData with AmqpAnnotatedMessage #22314

Merged
merged 39 commits into from
Jul 9, 2021
Merged
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
0efe342
Fix issue#21717 Extend EventData with AmqpAnnotatedMessage by lihong …
v-hongli1 Jun 16, 2021
8d33358
Fixed issue#21717 Extend EventData with AmqpAnnotatedMessage by lihon…
v-hongli1 Jun 16, 2021
837ed79
Fixed ci exception (build) for issue#21717 Extend EventData with Amqp…
v-hongli1 Jun 16, 2021
070e4a7
Fixed ci exception (Test case) for issue#21717 Extend EventData with …
v-hongli1 Jun 16, 2021
56a6f9b
Fixed ci exception (Run SpotBugs, Checkstyle, RevApi, and Javadoc) fo…
v-hongli1 Jun 16, 2021
b5bf879
Fixed ci exception (Run SpotBugs, Checkstyle, RevApi, and Javadoc) fo…
v-hongli1 Jun 16, 2021
a77eae0
Fixed ci exception (Run SpotBugs, Checkstyle, RevApi, and Javadoc) fo…
v-hongli1 Jun 16, 2021
fe37756
Fixed comment exception (Run SpotBugs, Checkstyle, RevApi, and Javado…
v-hongli1 Jun 30, 2021
d96cf39
Fixed comment exception (Run SpotBugs, Checkstyle, RevApi, and Javado…
v-hongli1 Jun 30, 2021
a3f0137
Revert change in migration-guide.
conniey Jul 1, 2021
609a4dd
Revert EventData
conniey Jul 2, 2021
16c6e1c
Revert EventHubMessageSerializer
conniey Jul 2, 2021
6d7e080
Adds MessageUtils class.
conniey Jul 2, 2021
4eb1cfd
Adding overload to take AmqpAnnotatedMessage.
conniey Jul 2, 2021
1493566
Update EventData to take AmqpAnnotatedMessage as a body.
conniey Jul 3, 2021
61a92c0
Adds contentType, correlationId, messageId to EventData
conniey Jul 3, 2021
aa2c29a
Fixing build break in EventHubMessageSerializer
conniey Jul 3, 2021
757f168
Fixing test breaks.
conniey Jul 3, 2021
3c14bf6
Update MessageSerializer to add in systemProperties.
conniey Jul 4, 2021
9cb5dd8
Make EventData more permissive when adding items to the map.
conniey Jul 4, 2021
4e2c819
(WIP)
conniey Jul 5, 2021
7587e91
Unifying logic for AMQP message conversion.
conniey Jul 6, 2021
e28aa67
Revert changes in tests.
conniey Jul 6, 2021
847562b
Only add logic to serialize when properties set.
conniey Jul 6, 2021
7f180bf
Aggregate data for checking if objects are the same.
conniey Jul 7, 2021
b71441c
Update serializer test to also check AmqpRawMessage
conniey Jul 7, 2021
456d0ba
Fix assertion in SystemProperties test.
conniey Jul 7, 2021
a3ddaa9
Revert changes to InteropAmqpPropertiesTest.
conniey Jul 7, 2021
ff884b0
Adding comment to EventData.
conniey Jul 7, 2021
660ce3c
Add extra assertions for RawAmqpMessage.
conniey Jul 7, 2021
65dfd58
Add additional tests for message conversions.
conniey Jul 7, 2021
31a1e45
Fixing spacing.
conniey Jul 7, 2021
dd8b114
Update changelog.
conniey Jul 7, 2021
f914cea
Fixing checkstyle issues.
conniey Jul 7, 2021
ff78517
Fixing issues where we poll the convenience method rather than the pr…
conniey Jul 8, 2021
02e4f01
Fixing bugs in system properties.
conniey Jul 8, 2021
0c2bdb9
Fixing interop tests.
conniey Jul 9, 2021
66239d5
Fix test error.
conniey Jul 9, 2021
def4eb0
Adding extra assertions for properties.
conniey Jul 9, 2021
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
4 changes: 4 additions & 0 deletions sdk/eventhubs/azure-messaging-eventhubs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## 5.9.0-beta.1 (Unreleased)

### Features Added

- Add additional fields to `EventData`. `getContentType()`, `getCorrelationId()`, `getMessageId()` and the corresponding setters were added.
- Add `EventData.getRawAmqpMessage()`.

## 5.8.0 (2021-06-14)

Expand Down
Loading