Skip to content

Commit a78fd7b

Browse files
committed
add change log
1 parent c5b362d commit a78fd7b

File tree

1 file changed

+19
-17
lines changed

1 file changed

+19
-17
lines changed

CHANGELOG.md

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22

33
## (Unreleased)
44

5-
- Add New Property Properties to TaskOrchestrationContext by @nytian in [#415](https://github.com/microsoft/durabletask-dotnet/pull/415)
6-
- Add automatic retry on gateway timeout in `GrpcDurableTaskClient.WaitForInstanceCompletionAsync` in [#412](https://github.com/microsoft/durabletask-dotnet/pull/412))
5+
- Change user-agent header to x-user-agent ([#422](https://github.com/microsoft/durabletask-dotnet/pull/422))
6+
- Add New Property Properties to TaskOrchestrationContext by @nytian in ([#415](https://github.com/microsoft/durabletask-dotnet/pull/415))
7+
- Add automatic retry on gateway timeout in `GrpcDurableTaskClient.WaitForInstanceCompletionAsync` in ([#412](https://github.com/microsoft/durabletask-dotnet/pull/412))
78
- Add specific logging for NotFound error on worker connection by @halspang in ([#413](https://github.com/microsoft/durabletask-dotnet/pull/413))
89
- Add user agent header to gRPC called in ([#417](https://github.com/microsoft/durabletask-dotnet/pull/417))
910
- Enrich User-Agent Header in gRPC Metadata to indicate Client or Worker as caller ([#421](https://github.com/microsoft/durabletask-dotnet/pull/421))
11+
1012
## v1.10.0
1113

1214
- Update DurableTask.Core to v3.1.0 and Bump version to v1.10.0 by @nytian in ([#411](https://github.com/microsoft/durabletask-dotnet/pull/411))
@@ -88,7 +90,7 @@
8890

8991
### Microsoft.DurableTask.Client
9092

91-
- Fix filter not being passed along in `PurgeAllInstancesAsync` (https://github.com/microsoft/durabletask-dotnet/pull/289)
93+
- Fix filter not being passed along in `PurgeAllInstancesAsync` (<https://github.com/microsoft/durabletask-dotnet/pull/289>)
9294

9395
### Microsoft.DurableTask.Abstractions
9496

@@ -104,11 +106,11 @@
104106

105107
### Microsoft.DurableTask.Client
106108

107-
- Fix typo in `PurgeInstanceAsync` in `DurableTaskClient` (https://github.com/microsoft/durabletask-dotnet/pull/264)
109+
- Fix typo in `PurgeInstanceAsync` in `DurableTaskClient` (<https://github.com/microsoft/durabletask-dotnet/pull/264>)
108110

109111
## v1.2.0
110112

111-
- Adds support to recursively terminate/purge sub-orchestrations in `GrpcDurableTaskClient` (https://github.com/microsoft/durabletask-dotnet/pull/262)
113+
- Adds support to recursively terminate/purge sub-orchestrations in `GrpcDurableTaskClient` (<https://github.com/microsoft/durabletask-dotnet/pull/262>)
112114

113115
## v1.1.1
114116

@@ -134,23 +136,23 @@ Adds support for durable entities. Learn more [here](https://learn.microsoft.com
134136

135137
### Microsoft.DurableTask.Abstractions
136138

137-
- Microsoft.Azure.DurableTask.Core dependency increased to `2.15.0` (https://github.com/microsoft/durabletask-dotnet/pull/212)
139+
- Microsoft.Azure.DurableTask.Core dependency increased to `2.15.0` (<https://github.com/microsoft/durabletask-dotnet/pull/212>)
138140

139141
### Microsoft.DurableTask.Worker
140142

141-
- Fix re-encoding of events when using `TaskOrchestrationContext.ContinueAsNew(preserveUnprocessedEvents: true)` (https://github.com/microsoft/durabletask-dotnet/pull/212)
143+
- Fix re-encoding of events when using `TaskOrchestrationContext.ContinueAsNew(preserveUnprocessedEvents: true)` (<https://github.com/microsoft/durabletask-dotnet/pull/212>)
142144

143145
## v1.0.4
144146

145147
### Microsoft.DurableTask.Worker
146148

147-
- Fix handling of concurrent external events with the same name (https://github.com/microsoft/durabletask-dotnet/pull/194)
149+
- Fix handling of concurrent external events with the same name (<https://github.com/microsoft/durabletask-dotnet/pull/194>)
148150

149151
## v1.0.3
150152

151153
### Microsoft.DurableTask.Worker
152154

153-
- Fix instance ID not being passed in when using retry policy (https://github.com/microsoft/durabletask-dotnet/issues/174)
155+
- Fix instance ID not being passed in when using retry policy (<https://github.com/microsoft/durabletask-dotnet/issues/174>)
154156

155157
### Microsoft.DurableTask.Worker.Grpc
156158

@@ -172,18 +174,18 @@ Adds support for durable entities. Learn more [here](https://learn.microsoft.com
172174

173175
- Fix incorrect bounds check on `PurgeResult`
174176
- Address typo for `DurableTaskClient.GetInstancesAsync` (incorrectly pluralized)
175-
- Added `GetInstanceAsync`
176-
- Hide `GetInstancesAsync` from editor
177+
- Added `GetInstanceAsync`
178+
- Hide `GetInstancesAsync` from editor
177179

178180
## v1.0.0
179181

180182
- Added `SuspendInstanceAsync` and `ResumeInstanceAsync` to `DurableTaskClient`.
181183
- Rename `DurableTaskClient` methods
182-
- `TerminateAsync` -> `TerminateInstanceAsync`
183-
- `PurgeInstanceMetadataAsync` -> `PurgeInstanceAsync`
184-
- `PurgeInstances` -> `PurgeAllInstancesAsync`
185-
- `GetInstanceMetadataAsync` -> `GetInstanceAsync`
186-
- `GetInstances` -> `GetAllInstancesAsync`
184+
- `TerminateAsync` -> `TerminateInstanceAsync`
185+
- `PurgeInstanceMetadataAsync` -> `PurgeInstanceAsync`
186+
- `PurgeInstances` -> `PurgeAllInstancesAsync`
187+
- `GetInstanceMetadataAsync` -> `GetInstanceAsync`
188+
- `GetInstances` -> `GetAllInstancesAsync`
187189
- `TaskOrchestrationContext.CreateReplaySafeLogger` now creates `ILogger` directly (as opposed to wrapping an existing `ILogger`).
188190
- Durable Functions class-based syntax now resolves `ITaskActivity` instances from `IServiceProvider`, if available there.
189191
- `DurableTaskClient` methods have been touched up to ensure `CancellationToken` is included, as well as is the last parameter.
@@ -203,7 +205,7 @@ Microsoft.DurableTask.Client.Grpc \
203205
Microsoft.DurableTask.Worker \
204206
Microsoft.DurableTask.Worker.Grpc \
205207

206-
_see v1.0.0-preview.1 for `Microsoft.DurableTask.Generators`_
208+
*see v1.0.0-preview.1 for `Microsoft.DurableTask.Generators`*
207209

208210
### Updates
209211

0 commit comments

Comments
 (0)