1. 3ac73f6 Merge branch 'develop' into coroutines-scheduler-forcepush by Vsevolod Tolstopyatov · 6 years ago
  2. 37e45cd Implement yield() for experimental scheduler by Vsevolod Tolstopyatov · 6 years ago
  3. 7f2ed2f Report exception on cancellation in AbstractContinuation, do not swallow exceptions on cancellation in rx1 by Vsevolod Tolstopyatov · 6 years ago
  4. 08bda30 Ignore resume on cancelled continuation by Roman Elizarov · 6 years ago
  5. 705ba56 Documentation for Kotlin/Native support by Roman Elizarov · 6 years ago
  6. 4ddfc91 Kotlin/Native support by Vsevolod Tolstopyatov · 6 years ago
  7. 5f73827 Get rid of compiler bugs workarounds by Vsevolod Tolstopyatov · 6 years ago
  8. 7bd983f Fix linearizability in AbstractChannel#sendSuspend, add infrastructure to inject custom execution into linearizability checker by Vsevolod Tolstopyatov · 6 years ago
  9. 6d24aab Materialize an exception for Job onCancelling handlers by Vsevolod Tolstopyatov · 6 years ago
  10. 732474f Implement SendChannel#invokeOnClose by Vsevolod Tolstopyatov · 6 years ago
  11. ea651aa Channels concurrency improvement: by Vsevolod Tolstopyatov · 6 years ago
  12. 7cb5cc2 [tests] ARRAY_10 should have capacity of 10 by Vsevolod Tolstopyatov · 6 years ago
  13. 222f3f2 Removed suspendCoroutineOrReturn use in preparation for Kotlin 1.3 by Roman Elizarov · 6 years ago
  14. d1c8a3c added note about FIFO order of `Mutex.lock()` by Geoff · 6 years ago
  15. b10287e Change order of handlers in JobSupport and CancellableContinuation by Vsevolod Tolstopyatov · 6 years ago
  16. 1f74a2d Updated copyright to short template and year 2018 across all files by Roman Elizarov · 6 years ago
  17. 0dffcfd Merge 'develop' into project-structure by Roman Elizarov · 6 years ago
  18. a5473ce Update license file, example of new license template by Vsevolod Tolstopyatov · 6 years ago
  19. 167ca63 Implement CopyOnWriteList on JS, add reproducer for #412 by Vsevolod Tolstopyatov · 6 years ago
  20. e1fa197 Restructure packages, get rid of src/main/kotlin/kotlinx/coroutines/experimental folder layout by Vsevolod Tolstopyatov · 6 years ago
  21. c038d63 Improve source-code compatibility with prev version of openChannel().use { ... } by Roman Elizarov · 6 years ago
  22. c51bde0 Update CoroutineStart.kt by paolop · 6 years ago
  23. 89f8ff7 Introduce broadcast coroutine builder; by Roman Elizarov · 6 years ago
  24. dd90bf1 Fixed imports for docs by Roman Elizarov · 6 years ago
  25. 58c5fdc Missing dot in docs added by Roman Elizarov · 6 years ago
  26. dd3b65a Use @JvmName from internal package instead of stdlib-common by Vsevolod Tolstopyatov · 6 years ago
  27. 26b86e9 Preserve binary compatibility for Channels#sendBlocking by Vsevolod Tolstopyatov · 6 years ago
  28. 2cd27fb Replace DeprecationLevel.HIDDEN with DeprecationLevel.WARNING by Vsevolod Tolstopyatov · 6 years ago
  29. bb19a26 Add default parameters to deprecated CancellableContinuation#invokeOnCompletion for smoother migration by Vsevolod Tolstopyatov · 6 years ago
  30. f2b4e0e Make exception handling in AbstractContinuation consistent: always prefer exception thrown from coroutine as exceptional reason, add cancellation cause as suppressed exception by Vsevolod Tolstopyatov · 6 years ago
  31. 81c7521 Update Job.kt by paolop · 6 years ago
  32. 313978c Introduce deprecated ReceiveChannel#use to preserve backward compatibility with SubscriptionReceiveChannel, fix reactive samples by Vsevolod Tolstopyatov · 6 years ago
  33. c8af35c Alternative (working) approach to binary compatibility for SubscriptionReceiveChannel by Roman Elizarov · 6 years ago
  34. f5f0983 Restored binary compatibility for SubscriptionReceiveChannel removal by Roman Elizarov · 6 years ago
  35. 1d6230a Replace SubscriptionReceiveChannel with ReceiveChannel by Marko Devcic · 6 years ago
  36. a518edc Note memory semantics in Mutex doc by Vsevolod Tolstopyatov · 6 years ago
  37. 87f2faa Fix compiler warnings Fixes #348 by Vsevolod Tolstopyatov · 6 years ago
  38. e0b6db0 Leaking handles in awaitAll are fixed by Roman Elizarov · 6 years ago
  39. 3e9f244 Review and optimize usage of CancellableContinuation.invokeOnCancellation by Roman Elizarov · 6 years ago
  40. dbd9e1c Consistent naming of handler base classes and their concrete impls by Roman Elizarov · 6 years ago
  41. 6d9f40f Merge develop into decouple-job by Roman Elizarov · 6 years ago
  42. 76146bb Merge branch 'await-all' into develop by Roman Elizarov · 6 years ago
  43. cd00643 Delay bug fixes: by Vsevolod Tolstopyatov · 6 years ago
  44. 0406a9b Remove prev/next from common LockFreeLinkedList API by Roman Elizarov · 6 years ago
  45. 769d7dc Moved awaitAll/joinAll to common module by Roman Elizarov · 6 years ago
  46. f2bdf60 Merged develop (js-channels work) into await-all by Roman Elizarov · 6 years ago
  47. 11d6b5b Hide declarations in internal package by Roman Elizarov · 6 years ago
  48. 2cdbfd7 Properly implement select clause for JS channels by Vsevolod Tolstopyatov · 6 years ago
  49. 9619134 Migrate channels and related operators to common, so channels can be used from JS by Vsevolod Tolstopyatov · 6 years ago
  50. e89cd68 More comments about CancellationException and its consistent use; by Roman Elizarov · 6 years ago
  51. c1092d5 Remove CompletedExceptionally#exception by Vsevolod Tolstopyatov · 6 years ago
  52. f5e63ca Replacing isCancelledWithoutCause with proper contract on exception, disabling stacktraces of JobCancellationException in production mode by Vsevolod Tolstopyatov · 6 years ago
  53. 203abb0 awaitAll review and todos by Roman Elizarov · 6 years ago
  54. f0ef14e Start jobs during awaitAll call to properly handle lazily started coroutines by Vsevolod Tolstopyatov · 6 years ago
  55. 4b9a559 CompletedExceptionally now always has cause and exception became an alias to a cause. by Vsevolod Tolstopyatov · 6 years ago
  56. 480d8e9 Fix complaints of the latest compiler: actuals without expect by Ilya Gorbunov · 6 years ago
  57. f6430f4 Cleanup: by Vsevolod Tolstopyatov · 6 years ago
  58. 80a2947 Make deprecated API hidden, replace deprecated API with new one by Vsevolod Tolstopyatov · 6 years ago
  59. 4aa18aa Introduce cancelling state for AbstractContinuation, improve exception handling, make tests stricter by Vsevolod Tolstopyatov · 6 years ago
  60. f3a5013 Decouple AbstractContinuation and CancellableContinuation from Job interface by Vsevolod Tolstopyatov · 6 years ago
  61. 931587a Improve test coverage of CancellableCoroutine, add benchmark by Vsevolod Tolstopyatov · 6 years ago
  62. d521478 Separate Job (interface) and JobSupport (implementation). No other changes except making JobImpl internal (not private) by Vsevolod Tolstopyatov · 6 years ago
  63. 4cb5d19 Allow negative timeouts in delay, withTimeout and onTimeout on JVM by Vsevolod Tolstopyatov · 6 years ago
  64. aa461cf Minimize cut-and-pasted code between JS and JVM by Roman Elizarov · 6 years ago
  65. 9fe5f46 Deprecated CoroutineScope.coroutineContext which is replaced with by Roman Elizarov · 6 years ago
  66. fe8ba6b `onCompletion` added to `launch`, `async`, and `actor` by Roman Elizarov · 6 years ago
  67. 0e647a1 Merge remote-tracking branch 'origin/master' into develop by Roman Elizarov · 6 years ago
  68. 922412c Fixed typo in README.md by Márton Braun · 6 years ago
  69. f161c9f MPP: Temporary workaround so that snapshot Kotlin 1.2.30 can compile it by Roman Elizarov · 6 years ago
  70. a0cc115 Similar test for withTimeoutOrNull by Roman Elizarov · 6 years ago
  71. ea4cd45 equals should not be used on withTimeout results by Konrad Kamiński · 6 years ago
  72. 0d7323a Ensure that `launch` handles uncaught exception before another coroutine by Roman Elizarov · 6 years ago
  73. 4b9ae98 Simpler workaround for missing suspend tests (see KT-22228): by Roman Elizarov · 7 years ago
  74. f066fe9 Actual workaround for missing suspend tests (see KT-22228) by Roman Elizarov · 7 years ago
  75. 9da9e35 AbstractCoroutine: onCancellation shall be invoked before installed by Roman Elizarov · 7 years ago
  76. dd3cd27 Do not deprecate CoroutineStart.invoke for now by Roman Elizarov · 7 years ago
  77. ebc8866 AbstractCoroutines notifies onXXX before all the installed handlers; by Roman Elizarov · 7 years ago
  78. dfeba24 Workarounds for KT-21968 to fix JS tests by Roman Elizarov · 7 years ago
  79. 23fb728 AbsractCoroutine documentation & some more common (shared) code; by Roman Elizarov · 7 years ago
  80. c12123e AbsractCoroutine moved to common module by Roman Elizarov · 7 years ago
  81. 2adf8bc AbstractCoroutine.start is introduced. by Roman Elizarov · 7 years ago
  82. 62ee4cd Unused import removed by Roman Elizarov · 7 years ago
  83. 4d626de Job.cancel and CompletableDeferred.complete support cancelling/completing by Roman Elizarov · 7 years ago
  84. b79277b MPP: Debug toString should not depend on kotlin-reflect by Roman Elizarov · 7 years ago
  85. 9a0d8ac Fixed code style by Roman Elizarov · 7 years ago
  86. f29203c MPP: Ported DispatchedTask perf improvements to JS and more code is made common by Roman Elizarov · 7 years ago
  87. 4cdf883 MPP: Single documentation for kotlinx-coroutines-core with platform tags by Roman Elizarov · 7 years ago
  88. 1097bc8 MPP: Fixed CommonAtomicCancellationTest by Roman Elizarov · 7 years ago
  89. bddb1d7 MPP: Remove runBlocking & EventLoop from common module by Roman Elizarov · 7 years ago
  90. d164f73 MPP: Common CoroutineContext extensions & doc suppress by Roman Elizarov · 7 years ago
  91. 00e90dd MPP: Documentation (readme files) by Roman Elizarov · 7 years ago
  92. a7db8ec MPP: Copyright notice in sources by Roman Elizarov · 7 years ago
  93. c0d71dc MPP: More common tests, using kotlin.test.assertTrue & runTest dsl by Roman Elizarov · 7 years ago
  94. e3f2884 MPP: async, Deferred and CompletableDeferred by Roman Elizarov · 7 years ago
  95. 19f4845 MPP: withTimeout, delay in int number of milliseconds by Roman Elizarov · 7 years ago
  96. 9d5abcd MPP: Common withContext + more tests by Roman Elizarov · 7 years ago
  97. 45c1a73 MPP: Simple JS tests are passing by Roman Elizarov · 7 years ago
  98. 65eff0b MPP: Build logic organization/refactoring & Kotlin/JS tests with Mocha by Roman Elizarov · 7 years ago
  99. 8bff72b MPP: Common tests framework & CommonCoroutinesTest by Roman Elizarov · 7 years ago
  100. a12ee15 MPP: Delay, EventLoop & runBlocking moved to common code by Roman Elizarov · 7 years ago