Skip to content

Commit ee4a99c

Browse files
nytiancgillum
andauthored
Update Durabletask Dependencies for v1.5.0 Release (#281)
* initial commit * add changelog * udpate test to align with the new veresion * Update CHANGELOG.md * udpate version to 2.0.0 * revert back to v1.5.0 * Update CHANGELOG.md --------- Co-authored-by: Chris Gillum <[email protected]>
1 parent 2cbf8e4 commit ee4a99c

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## v1.5.0
4+
5+
### Updates
6+
7+
* Updated Microsoft.Azure.WebJobs.Extensions.DurableTask dependency to 3.0.0 and DurableTask.Core to 3.*. ([#281]https://github.com/microsoft/durabletask-mssql/pull/281)
8+
* Removed `netstandard2.0` TFM from Microsoft.DurableTask.SqlServer.AzureFunctions
9+
310
## v1.4.0
411

512
### New

src/DurableTask.SqlServer.AzureFunctions/DurableTask.SqlServer.AzureFunctions.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Import Project="../common.props" />
55

66
<PropertyGroup>
7-
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
7+
<TargetFrameworks>net6.0</TargetFrameworks>
88
</PropertyGroup>
99

1010
<PropertyGroup Condition="'$(TargetFramework)' == 'net6.0'">
@@ -20,7 +20,7 @@
2020
</PropertyGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="2.13.7" />
23+
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="3.0.0" />
2424
</ItemGroup>
2525

2626
<ItemGroup>

src/DurableTask.SqlServer/DurableTask.SqlServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</ItemGroup>
2222

2323
<ItemGroup>
24-
<PackageReference Include="Microsoft.Azure.DurableTask.Core" Version="2.*" />
24+
<PackageReference Include="Microsoft.Azure.DurableTask.Core" Version="3.*" />
2525
<PackageReference Include="Microsoft.Data.SqlClient" Version="3.1.5" />
2626
<PackageReference Include="SemanticVersion" Version="2.1.0" />
2727
<PackageReference Include="System.Threading.Channels" Version="4.7.1" />

src/common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<!-- Version settings: https://andrewlock.net/version-vs-versionsuffix-vs-packageversion-what-do-they-all-mean/ -->
1717
<PropertyGroup>
1818
<MajorVersion>1</MajorVersion>
19-
<MinorVersion>4</MinorVersion>
19+
<MinorVersion>5</MinorVersion>
2020
<PatchVersion>0</PatchVersion>
2121
<VersionPrefix>$(MajorVersion).$(MinorVersion).$(PatchVersion)</VersionPrefix>
2222
<VersionSuffix></VersionSuffix>

test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ async Task ValidateDatabaseSchemaAsync(TestDatabase database, string schemaName
503503
database.ConnectionString,
504504
schemaName);
505505
Assert.Equal(1, currentSchemaVersion.Major);
506-
Assert.Equal(4, currentSchemaVersion.Minor);
506+
Assert.Equal(5, currentSchemaVersion.Minor);
507507
Assert.Equal(0, currentSchemaVersion.Patch);
508508
}
509509

0 commit comments

Comments
 (0)