Skip to content

Commit d90042d

Browse files
Prepare for release (Azure#38163)
* Prepare for release * add note about checkpointing
1 parent 698d7f7 commit d90042d

File tree

5 files changed

+15
-19
lines changed

5 files changed

+15
-19
lines changed

eng/Packages.Data.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@
9090
<PackageReference Update="Azure.Data.SchemaRegistry" Version="1.2.0" />
9191
<PackageReference Update="Azure.Data.Tables" Version="12.8.0" />
9292
<PackageReference Update="Azure.Messaging.EventHubs" Version="5.9.2" />
93-
<PackageReference Update="Azure.Messaging.EventGrid" Version="4.14.1" />
94-
<PackageReference Update="Azure.Messaging.ServiceBus" Version="7.15.0" />
93+
<PackageReference Update="Azure.Messaging.EventGrid" Version="4.17.0" />
94+
<PackageReference Update="Azure.Messaging.ServiceBus" Version="7.16.0" />
9595
<PackageReference Update="Azure.Messaging.WebPubSub" Version="1.2.0" />
9696
<PackageReference Update="Azure.Monitor.Query" Version="1.1.0" />
9797
<PackageReference Update="Azure.Identity" Version="1.9.0" />
@@ -195,8 +195,8 @@
195195
<PackageReference Update="ApprovalTests" Version="3.0.22" />
196196
<PackageReference Update="ApprovalUtilities" Version="3.0.22" />
197197
<PackageReference Update="Azure.Identity" Version="1.9.0" />
198-
<PackageReference Update="Azure.Messaging.EventGrid" Version="4.14.1" />
199-
<PackageReference Update="Azure.Messaging.ServiceBus" Version="7.15.0" />
198+
<PackageReference Update="Azure.Messaging.EventGrid" Version="4.17.0" />
199+
<PackageReference Update="Azure.Messaging.ServiceBus" Version="7.16.0" />
200200
<PackageReference Update="Azure.ResourceManager.Compute" Version="1.0.0" />
201201
<PackageReference Update="Azure.ResourceManager.CognitiveServices" Version="1.1.0" />
202202
<PackageReference Update="Azure.ResourceManager.KeyVault" Version="1.0.0" />

sdk/eventhub/Microsoft.Azure.WebJobs.Extensions.EventHubs/CHANGELOG.md

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

3-
## 5.5.0-beta.1 (Unreleased)
4-
5-
### Features Added
6-
7-
### Breaking Changes
3+
## 5.5.0 (2023-08-11)
84

95
### Bugs Fixed
106

11-
### Other Changes
7+
- When binding to a `CancellationToken`, the token will no longer be signaled when in Drain Mode.
8+
To detect if the function app is in Drain Mode, use dependency injection to inject the
9+
`IDrainModeManager`, and check the `IsDrainModeEnabled` property. Additionally, checkpointing
10+
will now occur when the function app is in Drain Mode.
1211

1312
## 5.4.0 (2023-06-06)
1413

sdk/eventhub/Microsoft.Azure.WebJobs.Extensions.EventHubs/src/Microsoft.Azure.WebJobs.Extensions.EventHubs.csproj

Lines changed: 1 addition & 1 deletion
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 EventHubs 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>

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

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

3-
## 5.12.0-beta.1 (Unreleased)
4-
5-
### Features Added
6-
7-
### Breaking Changes
3+
## 5.12.0 (2023-08-11)
84

95
### Bugs Fixed
106

11-
### Other Changes
7+
- When binding to a `CancellationToken`, the token will no longer be signaled when in Drain Mode.
8+
To detect if the function app is in Drain Mode, use dependency injection to inject the
9+
`IDrainModeManager`, and check the `IsDrainModeEnabled` property.
1210

1311
## 5.11.0 (2023-06-06)
1412

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

Lines changed: 1 addition & 2 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.12.0-beta.1</Version>
6+
<Version>5.12.0</Version>
77
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
88
<ApiCompatVersion>5.11.0</ApiCompatVersion>
99
<NoWarn>$(NoWarn);AZC0001;CS1591;SA1636</NoWarn>
@@ -17,7 +17,6 @@
1717
<PackageReference Include="Microsoft.Azure.WebJobs" />
1818
<PackageReference Include="Microsoft.Extensions.Azure" />
1919
<PackageReference Include="Azure.Messaging.ServiceBus" />
20-
<PackageReference Include ="Azure.Core" />
2120
</ItemGroup>
2221

2322
<ItemGroup>

0 commit comments

Comments
 (0)