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
- [`workflow`] Add `historySizeInBytes` and `continueAsNewSuggested` to `WorkflowInfo` ([#1223](https://github.com/temporalio/sdk-typescript/pull/1223)).
16
+
17
+
- Remove experimental flags on the following APIs ([#1235](https://github.com/temporalio/sdk-typescript/pull/1235)):
18
+
- Schedules
19
+
- Failure Converters
20
+
- Local Activities
21
+
- Replay Histories
22
+
23
+
### Bug Fixes
24
+
25
+
- [`workflow`] Fix a particular case where `isReplaying` could be incorrectly `false` if a query came
26
+
in right after a cache eviction and there had been a signal in the last workflow task before the
27
+
cache eviction ([#1234](https://github.com/temporalio/sdk-typescript/pull/1234)). This could notably
28
+
cause situations where calls to sink functions configured with `calledDuringReplay = false` would
29
+
be called more than once for a same code location, as well as situations where `patched(...)` would
30
+
return true even though that patch had not been set on the first execution.
31
+
32
+
- [`workflow`] Make `ExternalWorkflowHandle.signal` signature match that of `BaseWorkflowHandle.signal`
33
+
([#1237](https://github.com/temporalio/sdk-typescript/pull/1237)). Thanks to
34
+
[`@gabrielsantosblanchet`](https://github.com/gabrielsantosblanchet) and
0 commit comments