Skip to content

Commit

Permalink
Prepare for release (#38163)
Browse files Browse the repository at this point in the history
* Prepare for release

* add note about checkpointing
  • Loading branch information
JoshLove-msft authored Aug 11, 2023
1 parent 698d7f7 commit d90042d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 19 deletions.
8 changes: 4 additions & 4 deletions eng/Packages.Data.props
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@
<PackageReference Update="Azure.Data.SchemaRegistry" Version="1.2.0" />
<PackageReference Update="Azure.Data.Tables" Version="12.8.0" />
<PackageReference Update="Azure.Messaging.EventHubs" Version="5.9.2" />
<PackageReference Update="Azure.Messaging.EventGrid" Version="4.14.1" />
<PackageReference Update="Azure.Messaging.ServiceBus" Version="7.15.0" />
<PackageReference Update="Azure.Messaging.EventGrid" Version="4.17.0" />
<PackageReference Update="Azure.Messaging.ServiceBus" Version="7.16.0" />
<PackageReference Update="Azure.Messaging.WebPubSub" Version="1.2.0" />
<PackageReference Update="Azure.Monitor.Query" Version="1.1.0" />
<PackageReference Update="Azure.Identity" Version="1.9.0" />
Expand Down Expand Up @@ -195,8 +195,8 @@
<PackageReference Update="ApprovalTests" Version="3.0.22" />
<PackageReference Update="ApprovalUtilities" Version="3.0.22" />
<PackageReference Update="Azure.Identity" Version="1.9.0" />
<PackageReference Update="Azure.Messaging.EventGrid" Version="4.14.1" />
<PackageReference Update="Azure.Messaging.ServiceBus" Version="7.15.0" />
<PackageReference Update="Azure.Messaging.EventGrid" Version="4.17.0" />
<PackageReference Update="Azure.Messaging.ServiceBus" Version="7.16.0" />
<PackageReference Update="Azure.ResourceManager.Compute" Version="1.0.0" />
<PackageReference Update="Azure.ResourceManager.CognitiveServices" Version="1.1.0" />
<PackageReference Update="Azure.ResourceManager.KeyVault" Version="1.0.0" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# Release History

## 5.5.0-beta.1 (Unreleased)

### Features Added

### Breaking Changes
## 5.5.0 (2023-08-11)

### Bugs Fixed

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

## 5.4.0 (2023-06-06)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<Description>Microsoft Azure WebJobs SDK EventHubs Extension</Description>
<Version>5.5.0-beta.1</Version>
<Version>5.5.0</Version>
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
<ApiCompatVersion>5.4.0</ApiCompatVersion>
<NoWarn>$(NoWarn);AZC0001;CS1591;SA1636</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# Release History

## 5.12.0-beta.1 (Unreleased)

### Features Added

### Breaking Changes
## 5.12.0 (2023-08-11)

### Bugs Fixed

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

## 5.11.0 (2023-06-06)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<Description>Microsoft Azure WebJobs SDK ServiceBus Extension</Description>
<Version>5.12.0-beta.1</Version>
<Version>5.12.0</Version>
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
<ApiCompatVersion>5.11.0</ApiCompatVersion>
<NoWarn>$(NoWarn);AZC0001;CS1591;SA1636</NoWarn>
Expand All @@ -17,7 +17,6 @@
<PackageReference Include="Microsoft.Azure.WebJobs" />
<PackageReference Include="Microsoft.Extensions.Azure" />
<PackageReference Include="Azure.Messaging.ServiceBus" />
<PackageReference Include ="Azure.Core" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit d90042d

Please sign in to comment.