From 9fd8baf63aa5beeaecbffbe4c7ce754835c92add Mon Sep 17 00:00:00 2001 From: Sophia Tevosyan Date: Thu, 28 May 2026 15:27:03 -0700 Subject: [PATCH 1/2] bumped the minor version and dt.core dependency --- Directory.Packages.props | 2 +- src/common.props | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 4c447fc..9da42e3 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -9,7 +9,7 @@ - + diff --git a/src/common.props b/src/common.props index 7f63f5c..29f4887 100644 --- a/src/common.props +++ b/src/common.props @@ -16,7 +16,7 @@ 1 - 6 + 7 0 $(MajorVersion).$(MinorVersion).$(PatchVersion) From 37480f7314799d08496be7d6fd07eaddd1c89620 Mon Sep 17 00:00:00 2001 From: Sophia Tevosyan Date: Thu, 28 May 2026 15:47:34 -0700 Subject: [PATCH 2/2] updated changelog and the tests --- CHANGELOG.md | 8 ++++++++ .../Integration/DatabaseManagement.cs | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5014e4a..38876f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v1.7.0 + +### Updates + +* enable SqlOrchestrationService.PurgeInstanceStateAsync to delete more than 1000 instances by @usemam ([#308](https://github.com/microsoft/durabletask-mssql/pull/308)) +* Add es-metadata.yml (schema 1.0.0) by @jviau in [#310](https://github.com/microsoft/durabletask-mssql/pull/310) +* Preserve durable trace context in SQL history by @chandramouleswaran in [#306](https://github.com/microsoft/durabletask-mssql/pull/306) + ## v1.6.0 ### Updates diff --git a/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs b/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs index 75f95b3..7d8307f 100644 --- a/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs +++ b/test/DurableTask.SqlServer.Tests/Integration/DatabaseManagement.cs @@ -534,7 +534,7 @@ async Task ValidateDatabaseSchemaAsync(TestDatabase database, string schemaName database.ConnectionString, schemaName); Assert.Equal(1, currentSchemaVersion.Major); - Assert.Equal(6, currentSchemaVersion.Minor); + Assert.Equal(7, currentSchemaVersion.Minor); Assert.Equal(0, currentSchemaVersion.Patch); }