Skip to content
This repository has been archived by the owner on Sep 26, 2020. It is now read-only.

Bump kotlinCoroutinesVersion from 1.1.0 to 1.3.5-native-mt-1.3.71-release-429 #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot-preview[bot]
Copy link
Contributor

Bumps kotlinCoroutinesVersion from 1.1.0 to 1.3.5-native-mt-1.3.71-release-429.
Updates kotlinx-coroutines-core from 1.1.0 to 1.3.5-native-mt-1.3.71-release-429

Release notes

Sourced from kotlinx-coroutines-core's releases.

1.3.5

Version 1.3.5

  • firstOrNull operators. Contributed by @bradynpoulsen
  • java.time adapters for Flow operators. Contributed by @fvasco
  • kotlin.time.Duration support (#1402). Contributed by @fvasco
  • Memory leak with a mix of reusable and non-reusable continuations is fixed (#1855)
  • DebugProbes are ready for production installation: its performance is increased, the flag to disable creation stacktraces to reduce the footprint is introduced (#1379, #1372)
  • Stacktrace recovery workaround for Android 6.0 and earlier bug (#1866).
  • New integration module: kotlinx-coroutines-jdk9 with adapters for java.util.concurrent.Flow
  • BroadcastChannel.close properly starts lazy coroutine (#1713).
  • kotlinx-coroutines-bom is published without Gradle metadata.
  • Make calls to service loader in reactor integrations optimizable by R8 (#1817)

1.3.4

Flow

  • Detect missing awaitClose calls in callbackFlow to make it less error-prone when used with callbacks (#1762, #1770). This change makes callbackFlow different from channelFlow
  • ReceiveChannel.asFlow extension is introduced (#1490)
  • Enforce exception transparency invariant in flow builder (#1657)
  • Proper Dispatcher support in Flow reactive integrations (#1765)
  • Batch Subscription.request calls in Flow reactive integration (#766)
  • ObservableValue.asFlow added to JavaFx integration module (#1695)
  • ObservableSource.asFlow added to RxJava2 integration module (#1768)

Other changes

  • kotlinx-coroutines-core is optimized for R8, making it much smaller for Android usages (75 KB for 1.3.4 release)
  • Performance of Dispatchers.Default is improved (#1704, #1706)
  • Kotlin is updated to 1.3.70
  • CoroutineDispatcher and ExecutorCoroutineDispatcher experimental coroutine context keys are introduced (#1805)
  • Performance of various Channel operations is improved (#1565)

1.3.3

Flow

  • Flow.take performance is significantly improved (#1538).
  • Flow.merge operator (#1491).
  • Reactive Flow adapters are promoted to stable API (#1549).
  • Reusable cancellable continuations were introduced that improved the performance of various flow operators and iteration over channels (#1534).
  • Fixed interaction of multiple flows with take operator (#1610).
  • Throw NoSuchElementException instead of UnsupportedOperationException for empty Flow in reduce operator (#1659).
  • onCompletion now rethrows downstream exceptions on emit attempt (#1654).
  • Allow non-emitting withContext from flow builder (#1616).

Debugging

  • DebugProbes.dumpCoroutines is optimized to be able to print the 6-digit number of coroutines (#1535).
  • Properly capture unstarted lazy coroutines in debugger (#1544).
  • Capture coroutines launched from within a test constructor with CoroutinesTimeout test rule (#1542).
... (truncated)
Changelog

Sourced from kotlinx-coroutines-core's changelog.

Change log for kotlinx.coroutines

Version 1.3.5

  • firstOrNull operator. Contributed by @bradynpoulsen.
  • java.time adapters for Flow operators. Contributed by @fvasco.
  • kotlin.time.Duration support (#1402). Contributed by @fvasco.
  • Memory leak with a mix of reusable and non-reusable continuations is fixed (#1855).
  • DebugProbes are ready for production installation: its performance is increased, the flag to disable creation stacktraces to reduce the footprint is introduced (#1379, #1372).
  • Stacktrace recovery workaround for Android 6.0 and earlier bug (#1866).
  • New integration module: kotlinx-coroutines-jdk9 with adapters for java.util.concurrent.Flow.
  • BroadcastChannel.close properly starts lazy coroutine (#1713).
  • kotlinx-coroutines-bom is published without Gradle metadata.
  • Make calls to service loader in reactor integrations optimizable by R8 (#1817).

Version 1.3.4

Flow

  • Detect missing awaitClose calls in callbackFlow to make it less error-prone when used with callbacks (#1762, #1770). This change makes callbackFlow different from channelFlow.
  • ReceiveChannel.asFlow extension is introduced (#1490).
  • Enforce exception transparency invariant in flow builder (#1657).
  • Proper Dispatcher support in Flow reactive integrations (#1765).
  • Batch Subscription.request calls in Flow reactive integration (#766).
  • ObservableValue.asFlow added to JavaFx integration module (#1695).
  • ObservableSource.asFlow added to RxJava2 integration module (#1768).

Other changes

  • kotlinx-coroutines-core is optimized for R8, making it much smaller for Android usages (75 KB for 1.3.4 release).
  • Performance of Dispatchers.Default is improved (#1704, #1706).
  • Kotlin is updated to 1.3.70.
  • CoroutineDispatcher and ExecutorCoroutineDispatcher experimental coroutine context keys are introduced (#1805).
  • Performance of various Channel operations is improved (#1565).

Version 1.3.3

Flow

  • Flow.take performance is significantly improved (#1538).
  • Flow.merge operator (#1491).
  • Reactive Flow adapters are promoted to stable API (#1549).
  • Reusable cancellable continuations were introduced that improved the performance of various flow operators and iteration over channels (#1534).
  • Fixed interaction of multiple flows with take operator (#1610).
  • Throw NoSuchElementException instead of UnsupportedOperationException for empty Flow in reduce operator (#1659).
  • onCompletion now rethrows downstream exceptions on emit attempt (#1654).
  • Allow non-emitting withContext from flow builder (#1616).

Debugging

  • DebugProbes.dumpCoroutines is optimized to be able to print the 6-digit number of coroutines (#1535).
... (truncated)
Commits

Updates kotlinx-coroutines-android from 1.1.0 to 1.3.5-native-mt-1.3.71-release-429

Release notes

Sourced from kotlinx-coroutines-android's releases.

1.3.5

Version 1.3.5

  • firstOrNull operators. Contributed by @bradynpoulsen
  • java.time adapters for Flow operators. Contributed by @fvasco
  • kotlin.time.Duration support (#1402). Contributed by @fvasco
  • Memory leak with a mix of reusable and non-reusable continuations is fixed (#1855)
  • DebugProbes are ready for production installation: its performance is increased, the flag to disable creation stacktraces to reduce the footprint is introduced (#1379, #1372)
  • Stacktrace recovery workaround for Android 6.0 and earlier bug (#1866).
  • New integration module: kotlinx-coroutines-jdk9 with adapters for java.util.concurrent.Flow
  • BroadcastChannel.close properly starts lazy coroutine (#1713).
  • kotlinx-coroutines-bom is published without Gradle metadata.
  • Make calls to service loader in reactor integrations optimizable by R8 (#1817)

1.3.4

Flow

  • Detect missing awaitClose calls in callbackFlow to make it less error-prone when used with callbacks (#1762, #1770). This change makes callbackFlow different from channelFlow
  • ReceiveChannel.asFlow extension is introduced (#1490)
  • Enforce exception transparency invariant in flow builder (#1657)
  • Proper Dispatcher support in Flow reactive integrations (#1765)
  • Batch Subscription.request calls in Flow reactive integration (#766)
  • ObservableValue.asFlow added to JavaFx integration module (#1695)
  • ObservableSource.asFlow added to RxJava2 integration module (#1768)

Other changes

  • kotlinx-coroutines-core is optimized for R8, making it much smaller for Android usages (75 KB for 1.3.4 release)
  • Performance of Dispatchers.Default is improved (#1704, #1706)
  • Kotlin is updated to 1.3.70
  • CoroutineDispatcher and ExecutorCoroutineDispatcher experimental coroutine context keys are introduced (#1805)
  • Performance of various Channel operations is improved (#1565)

1.3.3

Flow

  • Flow.take performance is significantly improved (#1538).
  • Flow.merge operator (#1491).
  • Reactive Flow adapters are promoted to stable API (#1549).
  • Reusable cancellable continuations were introduced that improved the performance of various flow operators and iteration over channels (#1534).
  • Fixed interaction of multiple flows with take operator (#1610).
  • Throw NoSuchElementException instead of UnsupportedOperationException for empty Flow in reduce operator (#1659).
  • onCompletion now rethrows downstream exceptions on emit attempt (#1654).
  • Allow non-emitting withContext from flow builder (#1616).

Debugging

  • DebugProbes.dumpCoroutines is optimized to be able to print the 6-digit number of coroutines (#1535).
  • Properly capture unstarted lazy coroutines in debugger (#1544).
  • Capture coroutines launched from within a test constructor with CoroutinesTimeout test rule (#1542).
... (truncated)
Changelog

Sourced from kotlinx-coroutines-android's changelog.

Change log for kotlinx.coroutines

Version 1.3.5

  • firstOrNull operator. Contributed by @bradynpoulsen.
  • java.time adapters for Flow operators. Contributed by @fvasco.
  • kotlin.time.Duration support (#1402). Contributed by @fvasco.
  • Memory leak with a mix of reusable and non-reusable continuations is fixed (#1855).
  • DebugProbes are ready for production installation: its performance is increased, the flag to disable creation stacktraces to reduce the footprint is introduced (#1379, #1372).
  • Stacktrace recovery workaround for Android 6.0 and earlier bug (#1866).
  • New integration module: kotlinx-coroutines-jdk9 with adapters for java.util.concurrent.Flow.
  • BroadcastChannel.close properly starts lazy coroutine (#1713).
  • kotlinx-coroutines-bom is published without Gradle metadata.
  • Make calls to service loader in reactor integrations optimizable by R8 (#1817).

Version 1.3.4

Flow

  • Detect missing awaitClose calls in callbackFlow to make it less error-prone when used with callbacks (#1762, #1770). This change makes callbackFlow different from channelFlow.
  • ReceiveChannel.asFlow extension is introduced (#1490).
  • Enforce exception transparency invariant in flow builder (#1657).
  • Proper Dispatcher support in Flow reactive integrations (#1765).
  • Batch Subscription.request calls in Flow reactive integration (#766).
  • ObservableValue.asFlow added to JavaFx integration module (#1695).
  • ObservableSource.asFlow added to RxJava2 integration module (#1768).

Other changes

  • kotlinx-coroutines-core is optimized for R8, making it much smaller for Android usages (75 KB for 1.3.4 release).
  • Performance of Dispatchers.Default is improved (#1704, #1706).
  • Kotlin is updated to 1.3.70.
  • CoroutineDispatcher and ExecutorCoroutineDispatcher experimental coroutine context keys are introduced (#1805).
  • Performance of various Channel operations is improved (#1565).

Version 1.3.3

Flow

  • Flow.take performance is significantly improved (#1538).
  • Flow.merge operator (#1491).
  • Reactive Flow adapters are promoted to stable API (#1549).
  • Reusable cancellable continuations were introduced that improved the performance of various flow operators and iteration over channels (#1534).
  • Fixed interaction of multiple flows with take operator (#1610).
  • Throw NoSuchElementException instead of UnsupportedOperationException for empty Flow in reduce operator (#1659).
  • onCompletion now rethrows downstream exceptions on emit attempt (#1654).
  • Allow non-emitting withContext from flow builder (#1616).

Debugging

  • DebugProbes.dumpCoroutines is optimized to be able to print the 6-digit number of coroutines (#1535).
... (truncated)
Commits

Updates kotlinx-coroutines-test from 1.1.0 to 1.3.5-native-mt-1.3.71-release-429

Release notes

Sourced from kotlinx-coroutines-test's releases.

1.3.5

Version 1.3.5

  • firstOrNull operators. Contributed by @bradynpoulsen
  • java.time adapters for Flow operators. Contributed by @fvasco
  • kotlin.time.Duration support (#1402). Contributed by @fvasco
  • Memory leak with a mix of reusable and non-reusable continuations is fixed (#1855)
  • DebugProbes are ready for production installation: its performance is increased, the flag to disable creation stacktraces to reduce the footprint is introduced (#1379, #1372)
  • Stacktrace recovery workaround for Android 6.0 and earlier bug (#1866).
  • New integration module: kotlinx-coroutines-jdk9 with adapters for java.util.concurrent.Flow
  • BroadcastChannel.close properly starts lazy coroutine (#1713).
  • kotlinx-coroutines-bom is published without Gradle metadata.
  • Make calls to service loader in reactor integrations optimizable by R8 (#1817)

1.3.4

Flow

  • Detect missing awaitClose calls in callbackFlow to make it less error-prone when used with callbacks (#1762, #1770). This change makes callbackFlow different from channelFlow
  • ReceiveChannel.asFlow extension is introduced (#1490)
  • Enforce exception transparency invariant in flow builder (#1657)
  • Proper Dispatcher support in Flow reactive integrations (#1765)
  • Batch Subscription.request calls in Flow reactive integration (#766)
  • ObservableValue.asFlow added to JavaFx integration module (#1695)
  • ObservableSource.asFlow added to RxJava2 integration module (#1768)

Other changes

  • kotlinx-coroutines-core is optimized for R8, making it much smaller for Android usages (75 KB for 1.3.4 release)
  • Performance of Dispatchers.Default is improved (#1704, #1706)
  • Kotlin is updated to 1.3.70
  • CoroutineDispatcher and ExecutorCoroutineDispatcher experimental coroutine context keys are introduced (#1805)
  • Performance of various Channel operations is improved (#1565)

1.3.3

Flow

  • Flow.take performance is significantly improved (#1538).
  • Flow.merge operator (#1491).
  • Reactive Flow adapters are promoted to stable API (#1549).
  • Reusable cancellable continuations were introduced that improved the performance of various flow operators and iteration over channels (#1534).
  • Fixed interaction of multiple flows with take operator (#1610).
  • Throw NoSuchElementException instead of UnsupportedOperationException for empty Flow in reduce operator (#1659).
  • onCompletion now rethrows downstream exceptions on emit attempt (#1654).
  • Allow non-emitting withContext from flow builder (#1616).

Debugging

  • DebugProbes.dumpCoroutines is optimized to be able to print the 6-digit number of coroutines (#1535).
  • Properly capture unstarted lazy coroutines in debugger (#1544).
  • Capture coroutines launched from within a test constructor with CoroutinesTimeout test rule (#1542).
... (truncated)
Changelog

Sourced from kotlinx-coroutines-test's changelog.

Change log for kotlinx.coroutines

Version 1.3.5

  • firstOrNull operator. Contributed by @bradynpoulsen.
  • java.time adapters for Flow operators. Contributed by @fvasco.
  • kotlin.time.Duration support (#1402). Contributed by @fvasco.
  • Memory leak with a mix of reusable and non-reusable continuations is fixed (#1855).
  • DebugProbes are ready for production installation: its performance is increased, the flag to disable creation stacktraces to reduce the footprint is introduced (#1379, #1372).
  • Stacktrace recovery workaround for Android 6.0 and earlier bug (#1866).
  • New integration module: kotlinx-coroutines-jdk9 with adapters for java.util.concurrent.Flow.
  • BroadcastChannel.close properly starts lazy coroutine (#1713).
  • kotlinx-coroutines-bom is published without Gradle metadata.
  • Make calls to service loader in reactor integrations optimizable by R8 (#1817).

Version 1.3.4

Flow

  • Detect missing awaitClose calls in callbackFlow to make it less error-prone when used with callbacks (#1762, #1770). This change makes callbackFlow different from channelFlow.
  • ReceiveChannel.asFlow extension is introduced (#1490).
  • Enforce exception transparency invariant in flow builder (#1657).
  • Proper Dispatcher support in Flow reactive integrations (#1765).
  • Batch Subscription.request calls in Flow reactive integration (#766).
  • ObservableValue.asFlow added to JavaFx integration module (#1695).
  • ObservableSource.asFlow added to RxJava2 integration module (#1768).

Other changes

  • kotlinx-coroutines-core is optimized for R8, making it much smaller for Android usages (75 KB for 1.3.4 release).
  • Performance of Dispatchers.Default is improved (#1704, #1706).
  • Kotlin is updated to 1.3.70.
  • CoroutineDispatcher and ExecutorCoroutineDispatcher experimental coroutine context keys are introduced (#1805).
  • Performance of various Channel operations is improved (#1565).

Version 1.3.3

Flow

  • Flow.take performance is significantly improved (#1538).
  • Flow.merge operator (#1491).
  • Reactive Flow adapters are promoted to stable API (#1549).
  • Reusable cancellable continuations were introduced that improved the performance of various flow operators and iteration over channels (#1534).
  • Fixed interaction of multiple flows with take operator (#1610).
  • Throw NoSuchElementException instead of UnsupportedOperationException for empty Flow in reduce operator (#1659).
  • onCompletion now rethrows downstream exceptions on emit attempt (#1654).
  • Allow non-emitting withContext from flow builder (#1616).

Debugging

  • DebugProbes.dumpCoroutines is optimized to be able to print the 6-digit number of coroutines (#1535).
... (truncated)
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps `kotlinCoroutinesVersion` from 1.1.0 to 1.3.5-native-mt-1.3.71-release-429.

Updates `kotlinx-coroutines-core` from 1.1.0 to 1.3.5-native-mt-1.3.71-release-429
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](https://github.com/Kotlin/kotlinx.coroutines/commits)

Updates `kotlinx-coroutines-android` from 1.1.0 to 1.3.5-native-mt-1.3.71-release-429
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](https://github.com/Kotlin/kotlinx.coroutines/commits)

Updates `kotlinx-coroutines-test` from 1.1.0 to 1.3.5-native-mt-1.3.71-release-429
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](https://github.com/Kotlin/kotlinx.coroutines/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Mar 30, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants