Skip to content

Commit 3574c2f

Browse files
authored
Merge pull request #3035 from Kotlin/version-1.6.0-RC
Version 1.6.0-RC
2 parents c112be4 + b145641 commit 3574c2f

File tree

313 files changed

+9112
-3706
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

313 files changed

+9112
-3706
lines changed

CHANGES.md

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

3+
## Version 1.6.0-RC
4+
5+
### kotlinx-coroutines-test rework
6+
7+
* `kotlinx-coroutines-test` became a multiplatform library usable from K/JVM, K/JS, and K/N.
8+
* Its API was completely reworked to address long-standing issues with consistency, structured concurrency and correctness (#1203, #1609, #2379, #1749, #1204, #1390, #1222, #1395, #1881, #1910, #1772, #1626, #1742, #2082, #2102, #2405, #2462
9+
).
10+
* The old API is deprecated for removal, but the new API is based on the similar concepts ([README](kotlinx-coroutines-test/README.md)), and the migration path is designed to be graceful: [migration guide](kotlinx-coroutines-test/MIGRATION.md)
11+
12+
### Dispatchers
13+
14+
* * Introduced `CoroutineDispatcher.limitedParallelism` that allows obtaining a view of the original dispatcher with limited parallelism (#2919).
15+
* `Dispatchers.IO.limitedParallelism` usages ignore the bound on the parallelism level of `Dispatchers.IO` itself to avoid starvation (#2943).
16+
* Introduced new `Dispatchers.shutdown` method for containerized environments (#2558).
17+
* `newSingleThreadContext` and `newFixedThreadPoolContext` are promoted to delicate API (#2919).
18+
19+
### Breaking changes
20+
21+
* When racing with cancellation, the `future` builder no longer reports unhandled exceptions into the global `CoroutineExceptionHandler`. Thanks @vadimsemenov! (#2774, #2791).
22+
* `Mutex.onLock` is deprecated for removal (#2794).
23+
* `Dispatchers.Main` is now used as the default source of time for `delay` and `withTimeout` when present(#2972).
24+
* To opt-out from this behaviour, `kotlinx.coroutines.main.delay` system property can be set to `false`.
25+
* Java target of coroutines build is now 8 instead of 6 (#1589).
26+
27+
### Bug fixes and improvements
28+
29+
* Kotlin is updated to 1.6.0.
30+
* Kotlin/Native [new memory model](https://blog.jetbrains.com/kotlin/2021/08/try-the-new-kotlin-native-memory-manager-development-preview/) is now supported in regular builds of coroutines conditionally depending on whether `kotlin.native.binary.memoryModel` is enabled (#2914).
31+
* Introduced `CopyableThreadContextElement` for mutable context elements shared among multiple coroutines. Thanks @yorickhenning! (#2893).
32+
* `transformWhile`, `awaitClose`, `ProducerScope`, `merge`, `runningFold`, `runingReduce`, and `scan` are promoted to stable API (#2971).
33+
* `SharedFlow.subscriptionCount` no longer conflates incoming updates and gives all subscribers a chance to observe a short-lived subscription (#2488, #2863, #2871).
34+
* `Flow` exception transparency mechanism is improved to be more exception-friendly (#3017, #2860).
35+
* Cancellation from `flat*` operators that leverage multiple coroutines is no longer propagated upstream (#2964).
36+
* `SharedFlow.collect` now returns `Nothing` (#2789, #2502).
37+
* `FlowCollector` is now `fun interface`, and corresponding inline extension is removed (#2790).
38+
* Deprecation level of all previously deprecated signatures is raised (#3024).
39+
* The version file is shipped with each JAR as a resource (#2941).
40+
* Unhandled exceptions on K/N are passed to the standard library function `processUnhandledException` (#2981).
41+
* A direct executor is used for `Task` callbacks in `kotlinx-coroutines-play-services` (#2990).
42+
* Metadata of coroutines artifacts leverages Gradle platform to have all versions of dependencies aligned (#2865).
43+
* Default `CoroutineExceptionHandler` is loaded eagerly and does not invoke `ServiceLoader` on its exception-handling path (#2552).
44+
* Fixed the R8 rules for `ServiceLoader` optimization (#2880).
45+
* Fixed BlockHound integration false-positives (#2894, #2866, #2937).
46+
* The exception recovery mechanism now uses `ClassValue` when available (#2997).
47+
* JNA is updated to 5.9.0 to support Apple M1 (#3001).
48+
* Obsolete method on internal `Delay` interface is deprecated (#2979).
49+
* Support of deprecated `CommonPool` is removed.
50+
351
## Version 1.5.2
452

553
* Kotlin is updated to 1.5.30.

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
[![official JetBrains project](https://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
44
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
5-
[![Download](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.5.2)](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.5.2/pom)
6-
[![Kotlin](https://img.shields.io/badge/kotlin-1.5.30-blue.svg?logo=kotlin)](http://kotlinlang.org)
5+
[![Download](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.0-RC)](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.0-RC/pom)
6+
[![Kotlin](https://img.shields.io/badge/kotlin-1.6.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
77
[![Slack channel](https://img.shields.io/badge/chat-slack-green.svg?logo=slack)](https://kotlinlang.slack.com/messages/coroutines/)
88

99
Library support for Kotlin coroutines with [multiplatform](#multiplatform) support.
10-
This is a companion version for the Kotlin `1.5.30` release.
10+
This is a companion version for the Kotlin `1.6.0` release.
1111

1212
```kotlin
1313
suspend fun main() = coroutineScope {
@@ -83,15 +83,15 @@ Add dependencies (you can also add other modules that you need):
8383
<dependency>
8484
<groupId>org.jetbrains.kotlinx</groupId>
8585
<artifactId>kotlinx-coroutines-core</artifactId>
86-
<version>1.5.2</version>
86+
<version>1.6.0-RC</version>
8787
</dependency>
8888
```
8989

9090
And make sure that you use the latest Kotlin version:
9191

9292
```xml
9393
<properties>
94-
<kotlin.version>1.5.30</kotlin.version>
94+
<kotlin.version>1.6.0</kotlin.version>
9595
</properties>
9696
```
9797

@@ -101,15 +101,15 @@ Add dependencies (you can also add other modules that you need):
101101

102102
```groovy
103103
dependencies {
104-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2'
104+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-RC'
105105
}
106106
```
107107

108108
And make sure that you use the latest Kotlin version:
109109

110110
```groovy
111111
buildscript {
112-
ext.kotlin_version = '1.5.30'
112+
ext.kotlin_version = '1.6.0'
113113
}
114114
```
115115

@@ -127,7 +127,7 @@ Add dependencies (you can also add other modules that you need):
127127

128128
```groovy
129129
dependencies {
130-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
130+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-RC")
131131
}
132132
```
133133

@@ -147,7 +147,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
147147
module as a dependency when using `kotlinx.coroutines` on Android:
148148

149149
```groovy
150-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2'
150+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0-RC'
151151
```
152152

153153
This gives you access to the Android [Dispatchers.Main]
@@ -180,7 +180,7 @@ In common code that should get compiled for different platforms, you can add a d
180180
```groovy
181181
commonMain {
182182
dependencies {
183-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
183+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-RC")
184184
}
185185
}
186186
```
@@ -192,7 +192,7 @@ Platform-specific dependencies are recommended to be used only for non-multiplat
192192
#### JS
193193

194194
Kotlin/JS version of `kotlinx.coroutines` is published as
195-
[`kotlinx-coroutines-core-js`](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.5.2/jar)
195+
[`kotlinx-coroutines-core-js`](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.6.0-RC/jar)
196196
(follow the link to get the dependency declaration snippet) and as [`kotlinx-coroutines-core`](https://www.npmjs.com/package/kotlinx-coroutines-core) NPM package.
197197

198198
#### Native

benchmarks/build.gradle.kts

+14-7
Original file line numberDiff line numberDiff line change
@@ -46,21 +46,28 @@ extensions.configure<JMHPluginExtension>("jmh") {
4646
// includeTests = false
4747
}
4848

49-
tasks.named<Jar>("jmhJar") {
49+
val jmhJarTask = tasks.named<Jar>("jmhJar") {
5050
archiveBaseName by "benchmarks"
5151
archiveClassifier by null
5252
archiveVersion by null
5353
destinationDirectory.file("$rootDir")
5454
}
5555

56+
tasks {
57+
build {
58+
dependsOn(jmhJarTask)
59+
}
60+
}
61+
5662
dependencies {
57-
compile("org.openjdk.jmh:jmh-core:1.26")
58-
compile("io.projectreactor:reactor-core:${version("reactor")}")
59-
compile("io.reactivex.rxjava2:rxjava:2.1.9")
60-
compile("com.github.akarnokd:rxjava2-extensions:0.20.8")
63+
implementation("org.openjdk.jmh:jmh-core:1.26")
64+
implementation("io.projectreactor:reactor-core:${version("reactor")}")
65+
implementation("io.reactivex.rxjava2:rxjava:2.1.9")
66+
implementation("com.github.akarnokd:rxjava2-extensions:0.20.8")
6167

62-
compile("com.typesafe.akka:akka-actor_2.12:2.5.0")
63-
compile(project(":kotlinx-coroutines-core"))
68+
implementation("com.typesafe.akka:akka-actor_2.12:2.5.0")
69+
implementation(project(":kotlinx-coroutines-core"))
70+
implementation(project(":kotlinx-coroutines-reactive"))
6471

6572
// add jmh dependency on main
6673
"jmhImplementation"(sourceSets.main.get().runtimeClasspath)

benchmarks/src/jmh/kotlin/benchmarks/ParametrizedDispatcherBase.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ abstract class ParametrizedDispatcherBase : CoroutineScope {
3030
coroutineContext = when {
3131
dispatcher == "fjp" -> ForkJoinPool.commonPool().asCoroutineDispatcher()
3232
dispatcher == "scheduler" -> {
33-
ExperimentalCoroutineDispatcher(CORES_COUNT).also { closeable = it }
33+
Dispatchers.Default
3434
}
3535
dispatcher.startsWith("ftp") -> {
3636
newFixedThreadPoolContext(dispatcher.substring(4).toInt(), dispatcher).also { closeable = it }

benchmarks/src/jmh/kotlin/benchmarks/SemaphoreBenchmark.kt

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@ package benchmarks
66

77
import benchmarks.common.*
88
import kotlinx.coroutines.*
9-
import kotlinx.coroutines.channels.Channel
10-
import kotlinx.coroutines.scheduling.ExperimentalCoroutineDispatcher
11-
import kotlinx.coroutines.sync.Semaphore
12-
import kotlinx.coroutines.sync.withPermit
9+
import kotlinx.coroutines.channels.*
10+
import kotlinx.coroutines.sync.*
1311
import org.openjdk.jmh.annotations.*
14-
import java.util.concurrent.ForkJoinPool
15-
import java.util.concurrent.TimeUnit
12+
import java.util.concurrent.*
1613

1714
@Warmup(iterations = 3, time = 500, timeUnit = TimeUnit.MICROSECONDS)
1815
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MICROSECONDS)
@@ -84,7 +81,7 @@ open class SemaphoreBenchmark {
8481

8582
enum class SemaphoreBenchDispatcherCreator(val create: (parallelism: Int) -> CoroutineDispatcher) {
8683
FORK_JOIN({ parallelism -> ForkJoinPool(parallelism).asCoroutineDispatcher() }),
87-
EXPERIMENTAL({ parallelism -> ExperimentalCoroutineDispatcher(corePoolSize = parallelism, maxPoolSize = parallelism) })
84+
EXPERIMENTAL({ parallelism -> Dispatchers.Default }) // TODO doesn't take parallelism into account
8885
}
8986

9087
private const val WORK_INSIDE = 80

benchmarks/src/jmh/kotlin/benchmarks/flow/scrabble/SequencePlaysScrabble.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ open class SequencePlaysScrabble : ShakespearePlaysScrabble() {
3030
val bonusForDoubleLetter: (String) -> Int = { word: String ->
3131
toBeMaxed(word)
3232
.map { letterScores[it - 'a'.toInt()] }
33-
.max()!!
33+
.maxOrNull()!!
3434
}
3535

3636
val score3: (String) -> Int = { word: String ->

benchmarks/src/jmh/kotlin/benchmarks/scheduler/actors/PingPongWithBlockingContext.kt

+2-4
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,8 @@ import kotlin.coroutines.*
2727
@State(Scope.Benchmark)
2828
open class PingPongWithBlockingContext {
2929

30-
@UseExperimental(InternalCoroutinesApi::class)
31-
private val experimental = ExperimentalCoroutineDispatcher(8)
32-
@UseExperimental(InternalCoroutinesApi::class)
33-
private val blocking = experimental.blocking(8)
30+
private val experimental = Dispatchers.Default
31+
private val blocking = Dispatchers.IO.limitedParallelism(8)
3432
private val threadPool = newFixedThreadPoolContext(8, "PongCtx")
3533

3634
@TearDown

0 commit comments

Comments
 (0)