Skip to content

Commit 8c61118

Browse files
qwwdfsadpablobaxter
authored andcommitted
Version 1.5.1
1 parent 4f41ae0 commit 8c61118

File tree

5 files changed

+22
-4
lines changed

5 files changed

+22
-4
lines changed

CHANGES.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Change log for kotlinx.coroutines
22

3+
## Version 1.5.1
4+
5+
* Atomic `update`, `getAndUpdate`, and `updateAndGet` operations of `MutableStateFlow` (#2720).
6+
* `Executor.asCoroutineDispatcher` implementation improvements (#2601):
7+
* 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+
321
## Version 1.5.0
422

523
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.

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
# Kotlin
6-
version=1.5.0-SNAPSHOT
6+
version=1.5.1-SNAPSHOT
77
group=org.jetbrains.kotlinx
88
kotlin_version=1.5.20
99

kotlinx-coroutines-debug/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ stacktraces will be dumped to the console.
6161
### Using as JVM agent
6262

6363
Debug module can also be used as a standalone JVM agent to enable debug probes on the application startup.
64-
You can run your application with an additional argument: `-javaagent:kotlinx-coroutines-debug-1.5.0.jar`.
64+
You can run your application with an additional argument: `-javaagent:kotlinx-coroutines-debug-1.5.1.jar`.
6565
Additionally, on Linux and Mac OS X you can use `kill -5 $pid` command in order to force your application to print all alive coroutines.
6666
When used as Java agent, `"kotlinx.coroutines.debug.enable.creation.stack.trace"` system property can be used to control
6767
[DebugProbes.enableCreationStackTraces] along with agent startup.

kotlinx-coroutines-test/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This package provides testing utilities for effectively testing coroutines.
99
Add `kotlinx-coroutines-test` to your project test dependencies:
1010
```
1111
dependencies {
12-
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0'
12+
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.1'
1313
}
1414
```
1515

ui/coroutines-guide-ui.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Add dependencies on `kotlinx-coroutines-android` module to the `dependencies { .
110110
`app/build.gradle` file:
111111

112112
```groovy
113-
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0"
113+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.1"
114114
```
115115

116116
You can clone [kotlinx.coroutines](https://github.com/Kotlin/kotlinx.coroutines) project from GitHub onto your

0 commit comments

Comments
 (0)