All Versions
10
Latest Version
Avg Release Cycle
136 days
Latest Release
1790 days ago
Changelog History
Changelog History
-
v0.8.0 Changes
November 02, 2018- ๐ Supports JDK 11
- โฌ๏ธ Dropped support of JDK 7 and 8
- Modularized
- ๐ The
quasar-galaxy
module has been removed - ๐ The
co.paralleluniverse.data.record
has been removed from thequasar-actors
module. - โ Added support for custom fiber serializers
- Suppports Kotlin 1.3
-
v0.7.10
June 10, 2018 -
v0.7.9 Changes
July 28, 2017โจ Enhancements
- Suppport for Kotlin 1.1
๐ Bug Fixes
-
v0.7.8 Changes
May 24, 2017โจ Enhancements
- ๐ Improved reporting of instrumentation problems with
verifyInstrumentation
(#238, #255) - Interrupting
FiberAsync.runBlocking
interrupts the thread executing the operation (#245) - ๐ง Java agent can be configured to exclude packages from instrumentation in order to improve startup time (#243)
ExitMessage
s received from actors after they've been unlinked/unwatched will be ignored (#163)
๐ Bug Fixes
๐ Various small fixes.
- ๐ Improved reporting of instrumentation problems with
-
v0.7.7 Changes
December 02, 2016๐ Improvements to verifyInstrumentation reporting and some bug fixes.
-
v0.7.6 Changes
August 07, 2016 -
v0.7.5 Changes
May 02, 2016๐ New features
- 9c0b63a by @mikehearn:
ThreadLocal
s serialization in fibers is now optional
๐ Improvements
- ๐ f37b8c8, 08583f1 and 80802e4: Substantial performance improvements in several areas
- 269d73a and 0057c28: Improved
ThreadLocal
s serialization in fibers - ๐ 842ed49: Support for blocking handlers, puniverse/pulsar#55
- โฌ๏ธ Various deps upgrades, including Kotlin ->
1.0.1-2
Closed issues
- ๐ [CRITICAL] #185: Strands synchronization race
- #176: Possible
TransferChannel
race - โ๏ธ #154: Minor docs typos
- โฌ๏ธ #159: Kotlin upgrade
- ๐จ #156: Exception in fiber prints stack trace twice
- #160 by @LesNovell: JavaAgent.transform not checking for null className
- #168: Failing suspendable lambda case
- 14d7f2f related to #146 by @cbeams: Exclude from instrumentation shaded variant of Kotlin's
ModuleDescriptorImpl
- 685e89d by @latros: Typo
- #173: Monitored ProxyServerActors do not provide correct stats in MXBean
- c8ba7e4 by @remen: Typo
- 98ee54b: Wait longer in
select
, thanks and related to https://groups.google.com/forum/#!topic/quasar-pulsar-user/U2ztEdoPFqw with Chris Pennello - #186:
MessageSelector.select()
results requires cast toMessageSelector<Object,Object>
in order to be used
- 9c0b63a by @mikehearn:
-
v0.7.4 Changes
January 18, 2016๐ New features
- Suspendable
CountDownLatch
andCyclicBarrier
๐ Improvements
- ๐ Kotlin
build-1.0.0-beta-4584
support - ๐ Relaxed Kotlin's
select
type constraints - โฌ๏ธ Several dependencies upgraded
- ๐ Improved channel performance
Closed issues
- #117
- #121
- #118
- #124
- #146
- #147
- Fixed DisruptorChannel and moved to a new
quasar-disruptor
subproject (still experimental) - ๐ Several other minor fixes both in code and docs
- Suspendable
-
v0.7.3 Changes
August 28, 2015๐ฅ Breaking changes
- ๐ฆ Kotlin's
fiber
function has been moved to theco.paralleluniverse.kotlin
package, has several convenient overloads and by default will also start the fiber.
๐ New features
co.paralleluniverse.kotlin
also includes a convenientselect
syntax to perform channel selection:val ch1 = Channels.newChannel<Int>(1)val ch2 = Channels.newChannel<Int>(1) assertTrue ( fiber { select(Receive(ch1), Send(ch2, 2)) { it } }.get() is Send) ch1.send(1) assertTrue ( fiber { select(Receive(ch1), Send(ch2, 2)) { when (it) { is Receive -> it.msg is Send -> 0else -> -1 } } }.get() == 1)
โฑ The new
FiberForkJoinScheduler.onIdle()
hook notifies when the fiber scheduler becomes idle.
๐ Improvements
- โฌ๏ธ Several dependencies upgraded
Closed issues:
- ๐ฆ Kotlin's
-
v0.7.2 Changes
June 25, 2015๐ New features:
- A fully TCK-compliant Reactive Streams implementation based on Quasar Channels in the
quasar-reactive-streams
module
๐ Improvements:
- ๐ Instrumentation optimisation has been introduced: methods that don't need instrumentation will be left untouched and this improves performance
- ๐ Instrumentation verification is more precise, it checks call sites (see #86) and it prints extended stack trace information on HotSpot JRE 8; in addition it works even without verification enabled (and without performance penalty) when an uncaught exception is thrown in a fiber
- ๐ Improved JDK8-optimised build, no duplicate classes anymore (see #91)
- ๐ Minor channels improvements and fixes
- โฌ๏ธ Kotlin upgraded to
0.12.613
(post-M12) and several other dependencies upgrade - ๐ The
@Suspendable
annotation is now supported on individual interface methods rather than just on the whole interface
Closed issues:
- #86
- #91
- #93
- #94
- #95
- #96
- A minor issue in
scanSuspendables
has been addressed, it sometimes included unnecessary (but harmless) lines insuspendable-supers
Notes:
- ๐ง The Gradle wrapper has been removed to simplify the codebase and its maintenance. If you're building Quasar locally just install the latest Gradle distribution before doing so and use plain
gradle
- A fully TCK-compliant Reactive Streams implementation based on Quasar Channels in the