1. be85455 Fix class cast exception during undispatched resume of cancellable continuation with onCancellation block (#1967) by Vsevolod Tolstopyatov · 4 years, 4 months ago
  2. 5b00e48 Remove experimental status from Flow API (#1963) by Vsevolod Tolstopyatov · 4 years, 4 months ago
  3. 515e86a Add a lincheck test for `remove` in the segment list algorithm (#1964) by Nikita Koval · 4 years, 4 months ago
  4. cd5ab49 Setup cancellation eagerly in suspendCancellableCoroutine to properly integrate with APIs that may block the current thread, but react on cancellation (#1680) by Vsevolod Tolstopyatov · 4 years, 4 months ago
  5. eb4e7d3 Breaking change: Experimental Flow.onCompletion contract for cause (#1732) by Roman Elizarov · 4 years, 4 months ago
  6. 70a7487 Extract debugger (#1905) by Vsevolod Tolstopyatov · 4 years, 4 months ago
  7. ac42be9 Add linearizability tests for Mutex and Semaphore and fix them (#1898) by Nikita Koval · 4 years, 4 months ago
  8. 94970df Improve docs for CoroutineExceptionHandler (#1886) by Roman Elizarov · 4 years, 4 months ago
  9. d75d02a Make the list of segments more abstract (#1563) by Nikita Koval · 4 years, 4 months ago
  10. 532368f Update Kotlin version to 1.3.71 (#1906) by Vsevolod Tolstopyatov · 4 years, 4 months ago
  11. de29acd Flow onEmpty (#1904) by Vsevolod Tolstopyatov · 4 years, 4 months ago
  12. 02b403d BlockHound integration (#1873) by dkhalanskyjb · 4 years, 4 months ago
  13. df8316f Update CoroutineScope docs (#1882) by Roman Elizarov · 4 years, 4 months ago
  14. 6e66695 Fix leak of subscription reference in closed ArrayBroadcastChannel (#1885) by Roman Elizarov · 4 years, 5 months ago
  15. 52dcddc Merge remote-tracking branch 'origin/master' into develop by Roman Elizarov · 4 years, 5 months ago
  16. a3384a8 Removed extra non working SharedImmutable annotations (#1892) by LepilkinaElena · 4 years, 5 months ago
  17. 96b41b4 Fix DefaultExecutor not being able to exit (#1876) by dkhalanskyjb · 4 years, 5 months ago
  18. 9cbad7d Enable strict explicit mode (#1877) by Vsevolod Tolstopyatov · 4 years, 5 months ago
  19. 3fdd3fe Refactor select impl to make its internal state easier to understand by Roman Elizarov · 4 years, 5 months ago
  20. e8705fe Remove unused AbstractChannel.describeSendConflated by Roman Elizarov · 4 years, 5 months ago
  21. aa86ff3 Revert "BlockHound integration (#1821)" by Vsevolod Tolstopyatov · 4 years, 5 months ago
  22. 6802f7b Flow firstOrNull support (#1869) by Vsevolod Tolstopyatov · 4 years, 5 months ago
  23. ed7c668 BlockHound integration (#1821) by dkhalanskyjb · 4 years, 5 months ago
  24. e0a6533 ReceiveChannel.broadcast shall start lazy coroutine when closed (#1717) by Roman Elizarov · 4 years, 5 months ago
  25. cfb3ff9 Fill in stacktrace of cancellation exception with an empty array to properly work on Android <= 6.0 that had a bug on a code-path with an empty stacktrace by Vsevolod Tolstopyatov · 4 years, 5 months ago
  26. 1e7ca75 kotlin.time.Duration support (#1811) by Roman Elizarov · 4 years, 5 months ago
  27. 10fd73e Document the fact that dispatch should eventually invoke the given runnable (#1854) by Vsevolod Tolstopyatov · 4 years, 5 months ago
  28. 737ad1e Update binary-compatibility-validator by Vsevolod Tolstopyatov · 4 years, 5 months ago
  29. 03f4e84 Reusable continuation leak (#1858) by Vsevolod Tolstopyatov · 4 years, 5 months ago
  30. d7de5f5 Merge pull request #1846 from Kotlin/version-1.3.4 by Vsevolod Tolstopyatov · 4 years, 5 months ago
  31. 7df61ee Fixed memory leak on a race between adding/removing from lock-free list (#1845) by Roman Elizarov · 4 years, 5 months ago
  32. c67aed0 Migrate experimental annotations to new API and provide custom warning message (#1842) by Vsevolod Tolstopyatov · 4 years, 5 months ago
  33. 214f156 Leverage polymorphic keys un CoroutineDispatcher and ExecutorCoroutineDispatcher (#1840) by Vsevolod Tolstopyatov · 4 years, 5 months ago
  34. 6862afc Simpler and faster lock-free linked list (#1565) by Roman Elizarov · 4 years, 5 months ago
  35. 4a53d23 Atomically start coroutines in intermediate Flow operators in order to ensure proper termination, including finally blocks and onCompletion operators (#1829) by Vsevolod Tolstopyatov · 4 years, 6 months ago
  36. ca1093c Restore AsyncJvmTest by Vsevolod Tolstopyatov · 4 years, 6 months ago
  37. d4fabbf Fixed regularized 'when' inference to build train by Roman Elizarov · 4 years, 6 months ago
  38. 21bb6fb Temporary workaround bug in K/N 1.3.70 codegen (KT-37061) by Vsevolod Tolstopyatov · 4 years, 6 months ago
  39. 6d1a6e3 Update copyright year by Vsevolod Tolstopyatov · 4 years, 6 months ago
  40. bf9509d Optimize the size of the coroutines library in Android projects (#1282) by Roman Elizarov · 4 years, 6 months ago
  41. 660c2d7 Use a separate Knit tool (#1486) by Roman Elizarov · 4 years, 6 months ago
  42. 455c255 Introduce ExecutorRule for stress-tests for simpler development process by Vsevolod Tolstopyatov · 4 years, 6 months ago
  43. de491d2 Make SafeCollector platform-specific declaration and enforce exceptio… (#1793) by Vsevolod Tolstopyatov · 4 years, 6 months ago
  44. b64a23b Improve FieldWalker, don't access JDK classes (#1799) by Roman Elizarov · 4 years, 6 months ago
  45. 4aa3880 Detect missing awaitClose calls in callbackFlow and close channel wit… (#1771) by Vsevolod Tolstopyatov · 4 years, 6 months ago
  46. 0126dba ConflatedChannel with lock to protect the one-element buffer, double-linked list used for suspending receivers only. by SokolovaMaria · 4 years, 9 months ago
  47. 90a9faf Update module name for kotlinx-coroutines-core-common artifact by Roman Elizarov · 4 years, 6 months ago
  48. 387d1dd Improve test style by Dmitry Khalanskiy · 4 years, 6 months ago
  49. e153863 Integration with binary-compatibility-validator plugin (#1790) by Vsevolod Tolstopyatov · 4 years, 6 months ago
  50. cf5da1a Remove extraneous word in comment by Eric O'Connell · 4 years, 6 months ago
  51. 9be85a4 Replace "for" with "repeat" by Tatsuya Fujisaki · 4 years, 7 months ago
  52. 345458b ReceiveChannel.receiveAsFlow extension (#1731) by Roman Elizarov · 4 years, 8 months ago
  53. 4f24a7a Update lincheck to 2.5.3 and re-write the corresponding tests by Nikita Koval · 4 years, 9 months ago
  54. 1f77783 Fix non-linearizability in `ArrayChannel` while moving an element from the waiting queue to the buffer by Nikita Koval · 4 years, 8 months ago
  55. c526c3f Do not request additional worker from 'yield' calls and during post-e… (#1728) by Vsevolod Tolstopyatov · 4 years, 8 months ago
  56. 70e3583 Make CoroutinesDumpTest deterministic by Vsevolod Tolstopyatov · 4 years, 8 months ago
  57. 12a0318 Use common ThreadLocal declaration from stdlib by Roman Elizarov · 4 years, 8 months ago
  58. 60f8688 Use common SharedImmutable declaration from stdlib by Roman Elizarov · 4 years, 8 months ago
  59. f8b3c44 Fix TestBase example in kdoc by Marek Langiewicz · 4 years, 8 months ago
  60. cc3d8c4 update `broadcastIn` comment to refer to itself instead of `produce` by Rick Busarow · 4 years, 8 months ago
  61. 24f5f9c Better diagnostics on ChannelSelectStressTest failure by Roman Elizarov · 4 years, 8 months ago
  62. 7abce10 Merge branch 'master' into develop by Vsevolod Tolstopyatov · 4 years, 8 months ago
  63. 41dca58 Proguard rule to keep volatile name of SafeContinuation by Roman Elizarov · 4 years, 8 months ago
  64. cbd5b1c Merge pull request #1652 from Kotlin/scheduler-changes by Vsevolod Tolstopyatov · 4 years, 8 months ago
  65. 4224e01 Merge termination state machine and parking state machine into one, get rid of long-scanning sequence by Vsevolod Tolstopyatov · 4 years, 8 months ago
  66. 4dcfced Ensure that interruption flag is cleaned up properly by Vsevolod Tolstopyatov · 4 years, 8 months ago
  67. 966020e Document CoroutineScheduler machinery by Vsevolod Tolstopyatov · 4 years, 9 months ago
  68. d77c17c Improve performance of task acquisition by Vsevolod Tolstopyatov · 4 years, 9 months ago
  69. ab30d72 New deterministic algorithm for working with blocking tasks by Vsevolod Tolstopyatov · 4 years, 10 months ago
  70. 4236c8c New work stealing and unparking strategies by Vsevolod Tolstopyatov · 4 years, 10 months ago
  71. f27d176 CoroutineScheduler parking strategy rework by Vsevolod Tolstopyatov · 4 years, 11 months ago
  72. 5202a8b Regroup benchmarks and adapt them to structured concurrency, cleanup CoroutineScheduler by Vsevolod Tolstopyatov · 5 years ago
  73. e60ec8e User Class.forName instead of ServiceLoader to instantiate Dispatchers.Main on Android (#1572) by Vsevolod Tolstopyatov · 4 years, 8 months ago
  74. 04e587c Make sure that exception recovery does not break exception message by Roman Elizarov · 4 years, 8 months ago
  75. 1b378ba Introduce merge operator by Vsevolod Tolstopyatov · 4 years, 8 months ago
  76. 6cb317b Better diagnostic exception message in MissingMainCoroutineDispatcher by Vsevolod Tolstopyatov · 4 years, 8 months ago
  77. c02648b ContextScope.toString for better debuggability by Vsevolod Tolstopyatov · 4 years, 8 months ago
  78. 34dcfb1 Rethrow downstream exception during "onCompletion" emissions by Vsevolod Tolstopyatov · 4 years, 9 months ago
  79. bd1687f Throw NoSuchElementException instead of UnsupportedOperationException in Flow.reduce by Vsevolod Tolstopyatov · 4 years, 9 months ago
  80. 391042f Promote isDispatchNeeded to stable API by Vsevolod Tolstopyatov · 4 years, 9 months ago
  81. 445e026 Improve documentation by Vsevolod Tolstopyatov · 4 years, 9 months ago
  82. 69d1d41 Optimize yield via dispatcher.isDispatchNeeded by Roman Elizarov · 4 years, 9 months ago
  83. 8f1f252 Avoid potential StackOverflow on wrapped UnconfinedDispatcher+yield by Roman Elizarov · 4 years, 9 months ago
  84. 3ab34d8 Support yield in immediate dispatchers by Roman Elizarov · 4 years, 9 months ago
  85. 1fd56f2 Properly support exception cause on JS and Native by Roman Elizarov · 4 years, 9 months ago
  86. 1da7311 Restore AsyncJvmTest by Vsevolod Tolstopyatov · 4 years, 9 months ago
  87. 9d1146f Clarify documentation around Dispatcher.IO parallelism by Wojtek Kaliciński · 4 years, 10 months ago
  88. 9a2eb38 Add missing TestBase inheritance to fail on asynchronous errors by Vsevolod Tolstopyatov · 4 years, 10 months ago
  89. 1a2707b Cleanup CombineParametersTestBase by Vsevolod Tolstopyatov · 4 years, 10 months ago
  90. 2ba1d98 Fix mapLatest documentation example by Sebas LG · 4 years, 10 months ago
  91. ecbfa6d Properly distinguish AbortFlowExceptions from different non-terminal operators by Vsevolod Tolstopyatov · 4 years, 10 months ago
  92. 3affb90 Properly choose timeout exception with a recovered stacktrace to provide better debugging experience by Vsevolod Tolstopyatov · 4 years, 10 months ago
  93. 6aedb61 Make TimeoutCancellationException copyable by Vsevolod Tolstopyatov · 4 years, 10 months ago
  94. 83943ef Get rid of deprecated FlowCollector<*>.withContext by Vsevolod Tolstopyatov · 4 years, 10 months ago
  95. 340d501 Optimize combine operator by Vsevolod Tolstopyatov · 4 years, 10 months ago
  96. adb6164 Fix JobSupport comment about new state. by Marek Langiewicz · 4 years, 10 months ago
  97. bbf198b Fix StackTraceRecoveryTest.testCancellableContinuation for 1.3.60 by Roman Elizarov · 4 years, 10 months ago
  98. b7b5adb Improve consumeAsFlow documentation by Vsevolod Tolstopyatov · 4 years, 10 months ago
  99. 3816837 Remove duplicate js/npm folder by Roman Elizarov · 4 years, 10 months ago
  100. a64e4da Do not filter out stress tests from IDEA by Vsevolod Tolstopyatov · 4 years, 10 months ago