You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,24 @@
1
1
# Changelog
2
2
3
+
## v1.5.2
4
+
5
+
### Updates
6
+
7
+
* Fix issue where scheduled orchestrations aren't immediately terminated ([#178](https://github.com/microsoft/durabletask-mssql/issues/178))
8
+
3
9
## v1.5.1
4
10
5
11
### Updates
6
12
7
-
* Use Singelton metrics provider instead of IScaleMonitor and ITargetScaler ([#285]https://github.com/microsoft/durabletask-mssql/pull/285)
13
+
* Use Singleton metrics provider instead of IScaleMonitor and ITargetScaler ([#285](https://github.com/microsoft/durabletask-mssql/pull/285))
8
14
* Updated repo to use central package management
9
15
* Resolved multiple CVEs in dependencies
10
16
11
17
## v1.5.0
12
18
13
19
### Updates
14
20
15
-
* 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)
21
+
* 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))
16
22
* Removed `netstandard2.0` TFM from Microsoft.DurableTask.SqlServer.AzureFunctions
-- Instance IDs can be overwritten only if the orchestration is in a terminal state
1445
1470
IF @existingStatus NOTIN ('Failed')
1446
1471
BEGIN
1447
-
DECLARE @msg nvarchar(4000) =FORMATMESSAGE('Cannot rewing instance with ID ''%s'' because it is not in a ''Failed'' state, but in ''%s'' state.', @InstanceID, @existingStatus);
1472
+
DECLARE @msg nvarchar(4000) =FORMATMESSAGE('Cannot rewind instance with ID ''%s'' because it is not in a ''Failed'' state, but in ''%s'' state.', @InstanceID, @existingStatus);
0 commit comments