Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump kotlinCoroutinesVersion from 1.5.0 to 1.5.1 #3976

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 12, 2021

Bumps kotlinCoroutinesVersion from 1.5.0 to 1.5.1.
Updates kotlinx-coroutines-core from 1.5.0 to 1.5.1

Release notes

Sourced from kotlinx-coroutines-core's releases.

1.5.1

  • Atomic update, getAndUpdate, and updateAndGet operations of MutableStateFlow (#2720).
  • Executor.asCoroutineDispatcher implementation improvements (#2601):
    • If the target executor is ScheduledExecutorService, then its schedule API is used for time-related coroutine operations.
    • RemoveOnCancelPolicy is now part of the public contract.
  • Introduced overloads for Task.asDeferred and Task.await that accept CancellationTokenSource for bidirectional cancellation (#2527).
  • Reactive streams are updated to 1.0.3 (#2740).
  • CopyableThrowable is allowed to modify the exception message during stacktrace recovery (#1931).
  • CoroutineDispatcher.releaseInterceptedContinuation is now a final method (#2785).
  • Closing a Handler underlying Handler.asCoroutineDispatcher now causes the dispatched coroutines to be canceled on Dispatchers.IO ([#2778](https://github.com/Kotlin/kotlinx.coroutines/issues/2778)).
  • Kotlin is updated to 1.5.20.
  • Fixed a spurious ClassCastException in releaseInterceptedContinuation and IllegalStateException from tryReleaseClaimedContinuation (#2736, #2768).
  • Fixed inconsistent exception message during stacktrace recovery for non-suspending channel iterators (#2749).
  • Fixed linear stack usage for CompletableFuture.asDeferred when the target future has a long chain of listeners (#2730).
  • Any exceptions from CoroutineDispatcher.isDispatchNeeded are now considered as fatal and are propagated to the caller (#2733).
  • Internal DebugProbesKt (used in the debugger implementation) are moved from debug to core module.
Changelog

Sourced from kotlinx-coroutines-core's changelog.

Version 1.5.1

  • Atomic update, getAndUpdate, and updateAndGet operations of MutableStateFlow (#2720).
  • Executor.asCoroutineDispatcher implementation improvements (#2601):
    • If the target executor is ScheduledExecutorService, then its schedule API is used for time-related coroutine operations.
    • RemoveOnCancelPolicy is now part of the public contract.
  • Introduced overloads for Task.asDeferred and Task.await that accept CancellationTokenSource for bidirectional cancellation (#2527).
  • Reactive streams are updated to 1.0.3 (#2740).
  • CopyableThrowable is allowed to modify the exception message during stacktrace recovery (#1931).
  • CoroutineDispatcher.releaseInterceptedContinuation is now a final method (#2785).
  • Closing a Handler underlying Handler.asCoroutineDispatcher now causes the dispatched coroutines to be canceled on Dispatchers.IO ([#2778](https://github.com/Kotlin/kotlinx.coroutines/issues/2778)).
  • Kotlin is updated to 1.5.20.
  • Fixed a spurious ClassCastException in releaseInterceptedContinuation and IllegalStateException from tryReleaseClaimedContinuation (#2736, #2768).
  • Fixed inconsistent exception message during stacktrace recovery for non-suspending channel iterators (#2749).
  • Fixed linear stack usage for CompletableFuture.asDeferred when the target future has a long chain of listeners (#2730).
  • Any exceptions from CoroutineDispatcher.isDispatchNeeded are now considered as fatal and are propagated to the caller (#2733).
  • Internal DebugProbesKt (used in the debugger implementation) are moved from debug to core module.
Commits
  • b231887 Merge pull request #2812 from Kotlin/version-1.5.1
  • 2a4c00b Version 1.5.1
  • 69c3ce3 Update Dokka and Knit to their stable versions, remove bintray leftovers (#2811)
  • f5e8740 General cleanup (#2809)
  • c9ab4fd Update Kotlin to 1.5.20 (#2810)
  • bcbcd16 Upgrade to newest Dokka and Knit (#2805)
  • 074cc3f Update Lincheck to 2.14 (#2801)
  • 6cd1883 Cancel dispatched coroutine on Dispatchers.IO when the underlying Han… (#2784)
  • a327dfb Remove opt-in annotation from internal MainTestDispatcher
  • e81ce21 Introduce Task.await and Task.asDeferred with CancellationTokenSource (#2786)
  • Additional commits viewable in compare view

Updates kotlinx-coroutines-android from 1.5.0 to 1.5.1

Release notes

Sourced from kotlinx-coroutines-android's releases.

1.5.1

  • Atomic update, getAndUpdate, and updateAndGet operations of MutableStateFlow (#2720).
  • Executor.asCoroutineDispatcher implementation improvements (#2601):
    • If the target executor is ScheduledExecutorService, then its schedule API is used for time-related coroutine operations.
    • RemoveOnCancelPolicy is now part of the public contract.
  • Introduced overloads for Task.asDeferred and Task.await that accept CancellationTokenSource for bidirectional cancellation (#2527).
  • Reactive streams are updated to 1.0.3 (#2740).
  • CopyableThrowable is allowed to modify the exception message during stacktrace recovery (#1931).
  • CoroutineDispatcher.releaseInterceptedContinuation is now a final method (#2785).
  • Closing a Handler underlying Handler.asCoroutineDispatcher now causes the dispatched coroutines to be canceled on Dispatchers.IO ([#2778](https://github.com/Kotlin/kotlinx.coroutines/issues/2778)).
  • Kotlin is updated to 1.5.20.
  • Fixed a spurious ClassCastException in releaseInterceptedContinuation and IllegalStateException from tryReleaseClaimedContinuation (#2736, #2768).
  • Fixed inconsistent exception message during stacktrace recovery for non-suspending channel iterators (#2749).
  • Fixed linear stack usage for CompletableFuture.asDeferred when the target future has a long chain of listeners (#2730).
  • Any exceptions from CoroutineDispatcher.isDispatchNeeded are now considered as fatal and are propagated to the caller (#2733).
  • Internal DebugProbesKt (used in the debugger implementation) are moved from debug to core module.
Changelog

Sourced from kotlinx-coroutines-android's changelog.

Version 1.5.1

  • Atomic update, getAndUpdate, and updateAndGet operations of MutableStateFlow (#2720).
  • Executor.asCoroutineDispatcher implementation improvements (#2601):
    • If the target executor is ScheduledExecutorService, then its schedule API is used for time-related coroutine operations.
    • RemoveOnCancelPolicy is now part of the public contract.
  • Introduced overloads for Task.asDeferred and Task.await that accept CancellationTokenSource for bidirectional cancellation (#2527).
  • Reactive streams are updated to 1.0.3 (#2740).
  • CopyableThrowable is allowed to modify the exception message during stacktrace recovery (#1931).
  • CoroutineDispatcher.releaseInterceptedContinuation is now a final method (#2785).
  • Closing a Handler underlying Handler.asCoroutineDispatcher now causes the dispatched coroutines to be canceled on Dispatchers.IO ([#2778](https://github.com/Kotlin/kotlinx.coroutines/issues/2778)).
  • Kotlin is updated to 1.5.20.
  • Fixed a spurious ClassCastException in releaseInterceptedContinuation and IllegalStateException from tryReleaseClaimedContinuation (#2736, #2768).
  • Fixed inconsistent exception message during stacktrace recovery for non-suspending channel iterators (#2749).
  • Fixed linear stack usage for CompletableFuture.asDeferred when the target future has a long chain of listeners (#2730).
  • Any exceptions from CoroutineDispatcher.isDispatchNeeded are now considered as fatal and are propagated to the caller (#2733).
  • Internal DebugProbesKt (used in the debugger implementation) are moved from debug to core module.
Commits
  • b231887 Merge pull request #2812 from Kotlin/version-1.5.1
  • 2a4c00b Version 1.5.1
  • 69c3ce3 Update Dokka and Knit to their stable versions, remove bintray leftovers (#2811)
  • f5e8740 General cleanup (#2809)
  • c9ab4fd Update Kotlin to 1.5.20 (#2810)
  • bcbcd16 Upgrade to newest Dokka and Knit (#2805)
  • 074cc3f Update Lincheck to 2.14 (#2801)
  • 6cd1883 Cancel dispatched coroutine on Dispatchers.IO when the underlying Han… (#2784)
  • a327dfb Remove opt-in annotation from internal MainTestDispatcher
  • e81ce21 Introduce Task.await and Task.asDeferred with CancellationTokenSource (#2786)
  • Additional commits viewable in compare view

Updates kotlinx-coroutines-test from 1.5.0 to 1.5.1

Release notes

Sourced from kotlinx-coroutines-test's releases.

1.5.1

  • Atomic update, getAndUpdate, and updateAndGet operations of MutableStateFlow (#2720).
  • Executor.asCoroutineDispatcher implementation improvements (#2601):
    • If the target executor is ScheduledExecutorService, then its schedule API is used for time-related coroutine operations.
    • RemoveOnCancelPolicy is now part of the public contract.
  • Introduced overloads for Task.asDeferred and Task.await that accept CancellationTokenSource for bidirectional cancellation (#2527).
  • Reactive streams are updated to 1.0.3 (#2740).
  • CopyableThrowable is allowed to modify the exception message during stacktrace recovery (#1931).
  • CoroutineDispatcher.releaseInterceptedContinuation is now a final method (#2785).
  • Closing a Handler underlying Handler.asCoroutineDispatcher now causes the dispatched coroutines to be canceled on Dispatchers.IO ([#2778](https://github.com/Kotlin/kotlinx.coroutines/issues/2778)).
  • Kotlin is updated to 1.5.20.
  • Fixed a spurious ClassCastException in releaseInterceptedContinuation and IllegalStateException from tryReleaseClaimedContinuation (#2736, #2768).
  • Fixed inconsistent exception message during stacktrace recovery for non-suspending channel iterators (#2749).
  • Fixed linear stack usage for CompletableFuture.asDeferred when the target future has a long chain of listeners (#2730).
  • Any exceptions from CoroutineDispatcher.isDispatchNeeded are now considered as fatal and are propagated to the caller (#2733).
  • Internal DebugProbesKt (used in the debugger implementation) are moved from debug to core module.
Changelog

Sourced from kotlinx-coroutines-test's changelog.

Version 1.5.1

  • Atomic update, getAndUpdate, and updateAndGet operations of MutableStateFlow (#2720).
  • Executor.asCoroutineDispatcher implementation improvements (#2601):
    • If the target executor is ScheduledExecutorService, then its schedule API is used for time-related coroutine operations.
    • RemoveOnCancelPolicy is now part of the public contract.
  • Introduced overloads for Task.asDeferred and Task.await that accept CancellationTokenSource for bidirectional cancellation (#2527).
  • Reactive streams are updated to 1.0.3 (#2740).
  • CopyableThrowable is allowed to modify the exception message during stacktrace recovery (#1931).
  • CoroutineDispatcher.releaseInterceptedContinuation is now a final method (#2785).
  • Closing a Handler underlying Handler.asCoroutineDispatcher now causes the dispatched coroutines to be canceled on Dispatchers.IO ([#2778](https://github.com/Kotlin/kotlinx.coroutines/issues/2778)).
  • Kotlin is updated to 1.5.20.
  • Fixed a spurious ClassCastException in releaseInterceptedContinuation and IllegalStateException from tryReleaseClaimedContinuation (#2736, #2768).
  • Fixed inconsistent exception message during stacktrace recovery for non-suspending channel iterators (#2749).
  • Fixed linear stack usage for CompletableFuture.asDeferred when the target future has a long chain of listeners (#2730).
  • Any exceptions from CoroutineDispatcher.isDispatchNeeded are now considered as fatal and are propagated to the caller (#2733).
  • Internal DebugProbesKt (used in the debugger implementation) are moved from debug to core module.
Commits
  • b231887 Merge pull request #2812 from Kotlin/version-1.5.1
  • 2a4c00b Version 1.5.1
  • 69c3ce3 Update Dokka and Knit to their stable versions, remove bintray leftovers (#2811)
  • f5e8740 General cleanup (#2809)
  • c9ab4fd Update Kotlin to 1.5.20 (#2810)
  • bcbcd16 Upgrade to newest Dokka and Knit (#2805)
  • 074cc3f Update Lincheck to 2.14 (#2801)
  • 6cd1883 Cancel dispatched coroutine on Dispatchers.IO when the underlying Han… (#2784)
  • a327dfb Remove opt-in annotation from internal MainTestDispatcher
  • e81ce21 Introduce Task.await and Task.asDeferred with CancellationTokenSource (#2786)
  • Additional commits viewable in compare view

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.


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)

Bumps `kotlinCoroutinesVersion` from 1.5.0 to 1.5.1.

Updates `kotlinx-coroutines-core` from 1.5.0 to 1.5.1
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.5.0...1.5.1)

Updates `kotlinx-coroutines-android` from 1.5.0 to 1.5.1
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.5.0...1.5.1)

Updates `kotlinx-coroutines-test` from 1.5.0 to 1.5.1
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.5.0...1.5.1)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-android
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-test
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 12, 2021
@mshafrir-stripe mshafrir-stripe merged commit c69339f into master Jul 12, 2021
@mshafrir-stripe mshafrir-stripe deleted the dependabot/gradle/kotlinCoroutinesVersion-1.5.1 branch July 12, 2021 13:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant