Skip to content

Commit 8449104

Browse files
authored
Update CHANGELOG.md
1 parent 995d3b1 commit 8449104

File tree

1 file changed

+19
-21
lines changed

1 file changed

+19
-21
lines changed

CHANGELOG.md

Lines changed: 19 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1-
# Changelog
1+
# Changelog
22

33
## (Unreleased)
44

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))
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))
87
- Add specific logging for NotFound error on worker connection by @halspang in ([#413](https://github.com/microsoft/durabletask-dotnet/pull/413))
9-
- Add user agent header to gRPC called in ([#417](https://github.com/microsoft/durabletask-dotnet/pull/417))
8+
- Add user agent header to gRPC called in #417 and ([#422](https://github.com/microsoft/durabletask-dotnet/pull/422))
109
- Enrich User-Agent Header in gRPC Metadata to indicate Client or Worker as caller ([#421](https://github.com/microsoft/durabletask-dotnet/pull/421))
11-
1210
## v1.10.0
1311

1412
- 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))
@@ -90,7 +88,7 @@
9088

9189
### Microsoft.DurableTask.Client
9290

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

9593
### Microsoft.DurableTask.Abstractions
9694

@@ -106,11 +104,11 @@
106104

107105
### Microsoft.DurableTask.Client
108106

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

111109
## v1.2.0
112110

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

115113
## v1.1.1
116114

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

137135
### Microsoft.DurableTask.Abstractions
138136

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

141139
### Microsoft.DurableTask.Worker
142140

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

145143
## v1.0.4
146144

147145
### Microsoft.DurableTask.Worker
148146

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

151149
## v1.0.3
152150

153151
### Microsoft.DurableTask.Worker
154152

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

157155
### Microsoft.DurableTask.Worker.Grpc
158156

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

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

180178
## v1.0.0
181179

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

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

210208
### Updates
211209

0 commit comments

Comments
 (0)