Skip to content

Commit e8ce694

Browse files
Prepare for release (Azure#34788)
* Prepare for release * Remove project reference
1 parent 9f92f54 commit e8ce694

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

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

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,26 @@
11
# Release History
22

3-
## 7.13.0-beta.1 (Unreleased)
3+
## 7.13.0 (2023-03-08)
4+
5+
### Acknowledgments
6+
Thank you to our developer community members who helped to make the Service Bus client library better with their contributions to this release:
7+
8+
- Daniel Marbach _([GitHub](https://github.com/danielmarbach))_
49

510
### Features Added
611

7-
### Breaking Changes
12+
- `ActivitySource` activities that are used when using the [experimental OpenTelemetry support](https://devblogs.microsoft.com/azure-sdk/introducing-experimental-opentelemetry-support-in-the-azure-sdk-for-net/) will include the `az.schema_url` tag indicating the OpenTelemetry schema version. They will also include the messaging attribute specified [here](https://github.com/Azure/azure-sdk/blob/main/docs/tracing/distributed-tracing-conventions.yml#L98).
813

914
### Bugs Fixed
1015

16+
- Fixed deserialization of the lock token to take into account endianness. _(A community contribution, courtesy of [danielmarbach](https://github.com/danielmarbach))_
17+
1118
### Other Changes
1219

1320
- Some checks for cancellation that were occurring after a service operation had been completed have been removed. Because the service operation was already complete, cancellation was not actually performed and the results of the operation should be returned.
1421

22+
- Exceptions related to the cancellation token being signaled on a receive operation will now be logged as Verbose rather than Error.
23+
1524
## 7.12.0 (2023-01-12)
1625

1726
### Acknowledgments

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

Lines changed: 1 addition & 4 deletions
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.13.0-beta.1</Version>
4+
<Version>7.13.0</Version>
55
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
66
<ApiCompatVersion>7.12.0</ApiCompatVersion>
77
<PackageTags>Azure;Service Bus;ServiceBus;.NET;AMQP;$(PackageCommonTags)</PackageTags>
@@ -63,7 +63,4 @@
6363
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
6464
</EmbeddedResource>
6565
</ItemGroup>
66-
<ItemGroup>
67-
<ProjectReference Include="..\..\..\core\Azure.Core.Amqp\src\Azure.Core.Amqp.csproj" />
68-
</ItemGroup>
6966
</Project>

sdk/servicebus/Azure.Messaging.ServiceBus/tests/Diagnostics/DiagnosticScopeActivitySourceLiveTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,7 @@ private ActivityLink[] AssertSendActivities(ServiceBusSender sender, IList<Servi
366366
private void AssertCommonTags(Activity activity, string entityName, string fullyQualifiedNamespace, MessagingDiagnosticOperation operation, int messageCount)
367367
{
368368
var tags = activity.TagObjects.ToList();
369+
CollectionAssert.Contains(tags, new KeyValuePair<string, string>(DiagnosticScope.OpenTelemetrySchemaAttribute, DiagnosticScope.OpenTelemetrySchemaVersion));
369370
CollectionAssert.Contains(tags, new KeyValuePair<string, string>(MessagingClientDiagnostics.NetPeerName, fullyQualifiedNamespace));
370371

371372
CollectionAssert.Contains(tags, new KeyValuePair<string, string>(MessagingClientDiagnostics.MessagingSystem, DiagnosticProperty.ServiceBusServiceContext));

0 commit comments

Comments
 (0)