Skip to content

Commit 2520326

Browse files
Prepare for release (#25253)
* Prepare for release * indent
1 parent fc15245 commit 2520326

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

sdk/servicebus/Azure.Messaging.ServiceBus/CHANGELOG.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
11
# Release History
22

3-
## 7.5.0-beta.2 (Unreleased)
4-
5-
### Features Added
3+
## 7.5.0 (2021-11-10)
64

75
### Breaking Changes
86

7+
- Default `To`, `ReplyTo`, and `CorrelationId` properties of `ServiceBusMessage` to null, rather than empty string.
8+
To retain the old behavior, you can set the properties to empty string when constructing your message:
9+
```c#
10+
var message = new ServiceBusMessage
11+
{
12+
ReplyTo = "",
13+
To = "",
14+
CorrelationId = ""
15+
};
16+
```
17+
918
### Bugs Fixed
1019

11-
### Other Changes
20+
- Fixed memory leak in ServiceBusSessionProcessor.
21+
- Fixed bug where AMQP sequence/value messages could not be created from a received message.
22+
- Fixed bug where a named session of empty string could not be accepted.
1223

1324
## 7.5.0-beta.1 (2021-10-05)
1425

sdk/servicebus/Azure.Messaging.ServiceBus/src/Azure.Messaging.ServiceBus.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>Azure Service Bus is a fully managed enterprise integration message broker. Service Bus can decouple applications and services. Service Bus offers a reliable and secure platform for asynchronous transfer of data and state. This client library allows for both sending and receiving messages using Azure Service Bus. For more information about Service Bus, see https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-messaging-overview</Description>
4-
<Version>7.5.0-beta.2</Version>
4+
<Version>7.5.0</Version>
55
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
66
<ApiCompatVersion>7.3.0</ApiCompatVersion>
77
<PackageTags>Azure;Service Bus;ServiceBus;.NET;AMQP;$(PackageCommonTags)</PackageTags>

0 commit comments

Comments
 (0)