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
* If the target executor is `ScheduledExecutorService`, then its `schedule` API is used for time-related coroutine operations.
8
+
*`RemoveOnCancelPolicy` is now part of the public contract.
9
+
* Introduced overloads for `Task.asDeferred` and `Task.await` that accept `CancellationTokenSource` for bidirectional cancellation (#2527).
10
+
* Reactive streams are updated to `1.0.3` (#2740).
11
+
*`CopyableThrowable` is allowed to modify the exception message during stacktrace recovery (#1931).
12
+
*`CoroutineDispatcher.releaseInterceptedContinuation` is now a `final` method (#2785).
13
+
* Closing a Handler underlying `Handler.asCoroutineDispatcher` now causes the dispatched coroutines to be canceled on `Dispatchers.IO (#2778)`.
14
+
* Kotlin is updated to 1.5.20.
15
+
* Fixed a spurious `ClassCastException` in `releaseInterceptedContinuation` and `IllegalStateException` from `tryReleaseClaimedContinuation` (#2736, #2768).
16
+
* Fixed inconsistent exception message during stacktrace recovery for non-suspending channel iterators (#2749).
17
+
* Fixed linear stack usage for `CompletableFuture.asDeferred` when the target future has a long chain of listeners (#2730).
18
+
* Any exceptions from `CoroutineDispatcher.isDispatchNeeded` are now considered as fatal and are propagated to the caller (#2733).
19
+
* Internal `DebugProbesKt` (used in the debugger implementation) are moved from `debug` to `core` module.
20
+
3
21
## Version 1.5.0
4
22
5
23
Note that this is a full changelog relative to 1.4.3 version. Changelog relative to 1.5.0-RC can be found in the end.
(follow the link to get the dependency declaration snippet) and as [`kotlinx-coroutines-core`](https://www.npmjs.com/package/kotlinx-coroutines-core) NPM package.
197
197
198
198
#### Native
@@ -233,10 +233,10 @@ See [Contributing Guidelines](CONTRIBUTING.md).
0 commit comments