From 122d1e9f338b04a23e98277f7b6375951e42b5c5 Mon Sep 17 00:00:00 2001 From: "naiyuantian@microsoft.com" Date: Wed, 20 Nov 2024 15:30:12 -0800 Subject: [PATCH 1/7] initial commit --- .../DurableTask.SqlServer.AzureFunctions.csproj | 4 ++-- src/DurableTask.SqlServer/DurableTask.SqlServer.csproj | 2 +- src/common.props | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/DurableTask.SqlServer.AzureFunctions/DurableTask.SqlServer.AzureFunctions.csproj b/src/DurableTask.SqlServer.AzureFunctions/DurableTask.SqlServer.AzureFunctions.csproj index 347943a..8777d9c 100644 --- a/src/DurableTask.SqlServer.AzureFunctions/DurableTask.SqlServer.AzureFunctions.csproj +++ b/src/DurableTask.SqlServer.AzureFunctions/DurableTask.SqlServer.AzureFunctions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;net6.0 + net6.0 @@ -20,7 +20,7 @@ - + diff --git a/src/DurableTask.SqlServer/DurableTask.SqlServer.csproj b/src/DurableTask.SqlServer/DurableTask.SqlServer.csproj index c4f5680..0bde2ca 100644 --- a/src/DurableTask.SqlServer/DurableTask.SqlServer.csproj +++ b/src/DurableTask.SqlServer/DurableTask.SqlServer.csproj @@ -21,7 +21,7 @@ - + diff --git a/src/common.props b/src/common.props index 6ee3a62..6ea9258 100644 --- a/src/common.props +++ b/src/common.props @@ -16,7 +16,7 @@ 1 - 4 + 5 0 $(MajorVersion).$(MinorVersion).$(PatchVersion) From 4292d4c8df09599c03e736986484d36c87122924 Mon Sep 17 00:00:00 2001 From: "naiyuantian@microsoft.com" Date: Wed, 20 Nov 2024 15:41:26 -0800 Subject: [PATCH 2/7] add changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d803e73..c3b0b07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v1.5.0 + +### New +* Update Microsoft.Azure.WebJobs.Extensions.DurableTask dependency to 3.0.0 and DurableTask.Core to 3.*. ([#281]https://github.com/microsoft/durabletask-mssql/pull/281) + ## v1.4.0 ### New From 359bac50d85f3e36850122316f59299652a6b615 Mon Sep 17 00:00:00 2001 From: "naiyuantian@microsoft.com" Date: Wed, 20 Nov 2024 16:55:33 -0800 Subject: [PATCH 3/7] udpate test to align with the new veresion --- .../Integration/DatabaseManagement.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs b/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs index 40e1692..e1bb4f9 100644 --- a/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs +++ b/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs @@ -503,7 +503,7 @@ async Task ValidateDatabaseSchemaAsync(TestDatabase database, string schemaName database.ConnectionString, schemaName); Assert.Equal(1, currentSchemaVersion.Major); - Assert.Equal(4, currentSchemaVersion.Minor); + Assert.Equal(5, currentSchemaVersion.Minor); Assert.Equal(0, currentSchemaVersion.Patch); } From 2f7933177a3a6fd5290f613f840fe6baa0becef2 Mon Sep 17 00:00:00 2001 From: Chris Gillum Date: Wed, 20 Nov 2024 19:30:29 -0800 Subject: [PATCH 4/7] Update CHANGELOG.md --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3b0b07..108c759 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,10 @@ ## v1.5.0 -### New -* Update Microsoft.Azure.WebJobs.Extensions.DurableTask dependency to 3.0.0 and DurableTask.Core to 3.*. ([#281]https://github.com/microsoft/durabletask-mssql/pull/281) +### Updates + +* 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) +* Removed `netstandard2.0` TFM from Microsoft.DurableTask.SqlServer.AzureFunctions ## v1.4.0 From a6b6247cca41df4ae05671ebe24e1a33a87fe285 Mon Sep 17 00:00:00 2001 From: "naiyuantian@microsoft.com" Date: Thu, 21 Nov 2024 13:17:26 -0800 Subject: [PATCH 5/7] udpate version to 2.0.0 --- CHANGELOG.md | 2 +- src/common.props | 4 ++-- .../Integration/DatabaseManagement.cs | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 108c759..ae757fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v1.5.0 +## v2.0.0 ### Updates diff --git a/src/common.props b/src/common.props index 6ea9258..defe12f 100644 --- a/src/common.props +++ b/src/common.props @@ -15,8 +15,8 @@ - 1 - 5 + 2 + 0 0 $(MajorVersion).$(MinorVersion).$(PatchVersion) diff --git a/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs b/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs index e1bb4f9..8070cf8 100644 --- a/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs +++ b/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs @@ -502,8 +502,8 @@ async Task ValidateDatabaseSchemaAsync(TestDatabase database, string schemaName this.output, database.ConnectionString, schemaName); - Assert.Equal(1, currentSchemaVersion.Major); - Assert.Equal(5, currentSchemaVersion.Minor); + Assert.Equal(2, currentSchemaVersion.Major); + Assert.Equal(0, currentSchemaVersion.Minor); Assert.Equal(0, currentSchemaVersion.Patch); } From 738c44dc87dd9d5f001f386f53534d8e82963d3e Mon Sep 17 00:00:00 2001 From: "naiyuantian@microsoft.com" Date: Thu, 21 Nov 2024 14:09:20 -0800 Subject: [PATCH 6/7] revert back to v1.5.0 --- src/common.props | 4 ++-- .../Integration/DatabaseManagement.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/common.props b/src/common.props index defe12f..6ea9258 100644 --- a/src/common.props +++ b/src/common.props @@ -15,8 +15,8 @@ - 2 - 0 + 1 + 5 0 $(MajorVersion).$(MinorVersion).$(PatchVersion) diff --git a/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs b/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs index 8070cf8..e1bb4f9 100644 --- a/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs +++ b/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs @@ -502,8 +502,8 @@ async Task ValidateDatabaseSchemaAsync(TestDatabase database, string schemaName this.output, database.ConnectionString, schemaName); - Assert.Equal(2, currentSchemaVersion.Major); - Assert.Equal(0, currentSchemaVersion.Minor); + Assert.Equal(1, currentSchemaVersion.Major); + Assert.Equal(5, currentSchemaVersion.Minor); Assert.Equal(0, currentSchemaVersion.Patch); } From e4e9496e704148ab67c5156130bfdb7d170d6601 Mon Sep 17 00:00:00 2001 From: Naiyuan Tian <110135109+nytian@users.noreply.github.com> Date: Thu, 21 Nov 2024 14:11:20 -0800 Subject: [PATCH 7/7] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae757fd..108c759 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v2.0.0 +## v1.5.0 ### Updates