Skip to content

Commit 9596aeb

Browse files
Prepare for extension release (Azure#28806)
1 parent 3deccd0 commit 9596aeb

File tree

3 files changed

+6
-13
lines changed

3 files changed

+6
-13
lines changed

eng/Packages.Data.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
<PackageReference Update="Azure.Data.Tables" Version="12.5.0" />
9090
<PackageReference Update="Azure.Messaging.EventHubs" Version="5.7.0" />
9191
<PackageReference Update="Azure.Messaging.EventGrid" Version="4.10.0" />
92-
<PackageReference Update="Azure.Messaging.ServiceBus" Version="7.8.0" />
92+
<PackageReference Update="Azure.Messaging.ServiceBus" Version="7.8.1" />
9393
<PackageReference Update="Azure.Messaging.WebPubSub" Version="1.0.0" />
9494
<PackageReference Update="Azure.Identity" Version="1.6.0" />
9595
<PackageReference Update="Azure.Security.KeyVault.Secrets" Version="4.2.0" />

sdk/servicebus/Microsoft.Azure.WebJobs.Extensions.ServiceBus/CHANGELOG.md

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

3-
## 5.5.0-beta.1 (Unreleased)
4-
5-
### Features Added
6-
7-
### Breaking Changes
3+
## 5.5.0 (2022-05-16)
84

95
### Bugs Fixed
106

11-
### Other Changes
7+
- Updated dependency on `Azure.Messaging.ServiceBus` to benefit from bug fix.
8+
- Messages will now be abandoned if the function invocation throws for multiple dispatch functions. This was already the behavior for single dispatch functions.
129

1310
## 5.4.0 (2022-05-10)
1411

sdk/servicebus/Microsoft.Azure.WebJobs.Extensions.ServiceBus/src/Microsoft.Azure.WebJobs.Extensions.ServiceBus.csproj

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0</TargetFrameworks>
55
<Description>Microsoft Azure WebJobs SDK ServiceBus Extension</Description>
6-
<Version>5.5.0-beta.1</Version>
6+
<Version>5.5.0</Version>
77
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
88
<ApiCompatVersion>5.4.0</ApiCompatVersion>
99
<NoWarn>$(NoWarn);AZC0001;CS1591;SA1636</NoWarn>
@@ -16,7 +16,7 @@
1616
<PackageReference Include="Microsoft.Azure.WebJobs.Sources" PrivateAssets="All" />
1717
<PackageReference Include="Microsoft.Azure.WebJobs" />
1818
<PackageReference Include="Microsoft.Extensions.Azure" />
19-
<!-- <PackageReference Include="Azure.Messaging.ServiceBus" />-->
19+
<PackageReference Include="Azure.Messaging.ServiceBus" />
2020
</ItemGroup>
2121

2222
<ItemGroup>
@@ -30,8 +30,4 @@
3030
<Compile Include="..\..\..\extensions\Microsoft.Azure.WebJobs.Extensions.Clients\src\Shared\WebJobsConfigurationExtensions.cs" LinkBase="Shared" />
3131
</ItemGroup>
3232

33-
<ItemGroup>
34-
<ProjectReference Include="..\..\Azure.Messaging.ServiceBus\src\Azure.Messaging.ServiceBus.csproj" />
35-
</ItemGroup>
36-
3733
</Project>

0 commit comments

Comments
 (0)