Features for monix-execution:
- PR #527
(#517,
#525 and
#526):
removes macros, replacing them with plain extension methods,
removes
SerialCancelable#orderedUpdate - PR #556:
SchedulerService.awaitTerminationand fix concurrency tests - PR #584
(#221):
add conversions module for the Java 8
CompletableFuture
Features for monix-eval:
- PR #507: add
onErrorRestartLoopforTaskandCoeval - PR #533
(#523):
add
Task.forkoperator, deprecate oldTask.forkandexecuteWithFork, renamed toexecuteAsync - PR #530
(#520):
add
Task.forkAndForget - PR #537
(#535):
Make
MVarconstructors returnTask - PR #540
(#539):
make all
Taskabstractions referentially transparent - PR #545
(#538):
add
newtypeforTask.Par, using same encoding used incats-effect - PR #547
(#542):
add
Task.runSyncUnsafe - PR #550:
add
Task.sleep, refactor the implementation ofdelayExecutionanddelayResultand deprecatedelayExecutionWithanddelayResultBySelector - PR #482
(#477):
add the
.cancelableoperator onTask - PR #561:
Bracket for
Task/Coeval,Task.cancelableandTask.onCancelRaiseError - PR #596:
add
Fiberinterface, refactormemoizeforTaskandCoeval
Features for monix-reactive:
- PR #511
(#269):
add
monix.reactive.subjects.Vartype - PR #528:
add
Observable.scanMapoperator - PR #536
(#459):
add a
NonEmptyParallelforObservableusingcombineLatest
Features for monix-tail:
- PR #503
(#487):
add
Iterant.liftFbuilder for lifting monadic values - PR #510
(#500):
add
Iterant.takeEveryNthoperator - PR #504
(#499):
add
Iterant.switchIfEmptyoperator - PR #509
(#495):
add
Iterant.dropLastoperator - PR #508
(#501):
add
Iterant.intersperseoperator - PR #512
(#496):
add
Iterant.dropWhileWithIndexoperator - PR #514
(#497):
add
Iterant.takeWhileWithIndexoperator - PR #523
(#519):
add
Iterant.scanMapoperator - PR #518
(#516):
add
Iterant[Task].intervalAtFixedRate - PR #524
(#498):
add
Iterant.interleave - PR #549
(#548):
add
Iterant.fromStateActionandfromStateActionL - PR #567
(related to #563):
completeLshould handleF[_]errors,mapEvalshould not - PR #569
(related to #563):
Iterantfold left operators (yieldingF[_]) need to handle errors thrown inF[_] - PR #566
(#562):
improve safety of
attempt&onErrorHandleWithonIterant - PR #578
(#570):
add
Iterant#sumLmethod - PR #579
(#577):
make
Iterant#reduceLandheadOptionLleft folds handle errors fromF[_]context - PR #575
(##571 and
#572):
add
Iterant.repeat(method and builder) - PR #583
(#549):
add
Iterant.fromStateActionbuilder - PR #582
(#573 and
#574):
add
repeatEval/repeatEvalFforIterant&repeatEvalFforObservable - PR #554
(#479):
add
Iterant#bracketoperator - PR #581
(#559):
handle broken nodes in
Iterant.skipSuspendL - PR #589:
improve handling of broken batches/cursors in
Iterant.attempt - PR #591
(#580):
improve strictness of
EqofIterant, fixdoOnFinishonLast
Bug fixes:
- PR #552
(#483):
MVaris stack unsafe, triggering stack overflow onput - PR #543
(#541):
Observable.take(0)shouldn't subscribe to the source at all - PR #496
(#468):
race condition for
Observablein concatenation operators - PR #568:
in
Iterant.toReactivePublisherthecancelshould be made byrequest() - PR #592
(#590):
potential nontermination in
Observable.zip[Map]
Chores:
- PR #502: update SBT to 1.1
- PR #488:
add note about execution model for
Observable.fromInputStream - PR #531 (related to #513): add automatic header creation on compilation
- PR #557: disable automatic publishing, too dangerous
- PR #546
(related to #513):
add
scalafmt.confconfiguration - PR #565:
correct small typo in doc of
Task#executeOn - PR #576: fix comment mentioning Akka instead of Monix
- PR #588: update copyright headers for Scala 2.11 source files
Release is binary backwards compatible with series 2.3.x.
Bug fixes:
- Issue #468:
Observables created using
concatdon't get canceled (critical) - Issue #483:
stack overflow error on
MVar.put - Issue #541:
observable.take(0)shouldn't subscribe to the source at all - Issue #475:
Observable.fromAsyncStateActiondoes not protect against exceptions thrown in use code
Issue #468 in particular is pretty serious as it can lead to resource leaks. Read the pull request for more details.
Upgrade to 2.3.3 is recommended!
Final milestone release before the RC and the final and stable 3.0.0.
Special thanks to Leandro Bolivar for implementing propagation of
"local vars" (aka Local and TaskLocal, the equivalents of
ThreadLocal, but for usage with Future and Task).
This release also lands a long awaited feature for Task: pure
cancellation, aka Task.cancel. It's building on top of the current
Task implementation, however it changes the API — e.g. in order to
keep Task pure, the chooseFirstOf operator is now gone, being
replaced with an equivalent racePair that operates with tasks and
pure functions.
The other highlight of the release are the performance improvements
for Task, an on-going process to make sure that Monix's Task
remains the best implementation in Scala's ecosystem.
We now depend on Cats 1.0.1 and cats-effect 0.8.
Full list of PRs:
- PR #464:
updates dependencies, Scala to
2.12.4and2.11.12, JCTools to2.1.1, Minitest to2.0.0, Scala.js to0.6.21 - PR #462:
Fix for
timeoutToto cancel source task directly after timeout - PR #444:
Add
localContextPropagationtoTask.Options, implement tracingLocalvars - PR 470: increase test coverage
- PR #473:
Fix issue where
fromAsyncStateActionis not safe for user code - PR #485 and
PR #489:
Updates Cats to
1.0.1and cats-effect to0.8 - PR #474:
Task/CoevalRun-loop Optimizations, First Batch - PR #492: Second batch of optimizations
- PR #494:
Task.cancelas a pure action, along with.start,.raceand.uncancelable
The highlight of this release is the upgrade to Cats 1.0-RC1,
bringing a cats.Parallel[Task, Task] instance that replaces
the need for Task.nondeterminism, now removed.
List of changes:
- PR #437:
Added
Iterant.zipWithIndex - PR #439:
Added
Iterant.dump - PR #441:
Observable.mapParallelUnorderedneeds configurable overflow strategy - PR #445:
Added
ShiftedRunnableinmonix.execution - PR #443:
Iterant
maxByLandminByLops - PR #442:
small fixes in
takeWhileNotCanceledandrunAsyncGetFirstdocs - PR #450: Minor test description fix
- PR #458:
Updates to cats 1.0-RC1 and cats-effect 0.5, along with
redesigning that integration, e.g. added
cats.Parallelinstance,Iterant.parZipandIterant.parZipMap
This is a major release that breaks both binary and source compatibility. The major themes of this release:
- deep integration with Typelevel Cats
- the
Iterantdata type in a newmonix-tailsub-project - API refactoring, eliminated deprecations
- major improvements to
Observable,TaskandCancelableFuture
Typelevel Cats integration:
- PR #370: introduced
Cats and
cats-effectas direct dependencies - PR #377: added
Cats related conversions, along with naming changes for consistency
(e.g. renamed
Coeval.AttempttoCoeval.Eager) - PR #387: updated Cats to
1.0.0-MF, removed deprecated functions and classes - PR #397: standardizes
on Cats-related naming, removes
Coeval'sComonadimplementation - PR #398: re-adds
instances for
CoflatMap - PR #427: adds conversions from Cats to Observable
New monix-tail sub-project, exposing monix.tail.Iterant[F[_], A]:
- PR #280: introduces
Iterant[F[_], A]for pull-based streaming based onTask/Coeval - PR #396:
adds the
Iterant.scanoperator - PR #403:
adds
Iterant.foldWhileLeftLandIterant.foldWhileLeftEvalLoperators - PR #404:
adds Iterant
existsL,forallL, changesObservable.foldWhileL(breaking change) - PR #402:
adds
Iterant.foldRightLoperator - PR #405:
adds
Iterantops -findL,foldL,maxL,minL,reduceL - PR #407:
adds
Iterantops -countL,distinctUntilChanged,distinctUntilChangedByKey - PR #412:
adds
scanEvalon bothIterantandObservable - PR #411:
another naming consistency change between
ObservableandIterant - PR #413:
Iterant.bufferSliding,bufferTumblingandbatchedoperators - PR #417 and
PR #418:
Reactive Streams implementation for
Iterant
Improvements for monix-execution and CancelableFuture:
- PR #390: changes for
flatMaponCancelableFutureto cancel all involved futures (thanks to @larsrh) - PR #395: adds
Cats type class implementations for
CancelableFuture - PR #431: improvements
to
CancelableFutureto get rid of memory leak, also adding utils likeCancelableFuture.async - PR #432: further
fixes to
CancelableFuture, since describing a cancellableflatMapis a hard problem - PR #418:
adds flip convenience method to
AtomicBoolean(thanks to@Wogan)
Improvements for monix-reactive and Observable:
- PR #391: makes Observable concatenation (++) stack safe
- PR #408:
changes for
Iterantand Cats consistency (make use ofEqandOrdertype classes, addfoldFandfoldL, removedistinctanddistinctByKey) - PR #368: added
the
Observable.intersperseoperator (thanks to @omainegra) - PR #384: added
contramapmethod to Callback (thanks to @Wogan) - PR #425: gets rid of
ObservableLike, makesObservableanabstract classwhere the operators are final,Pipeno longer hasObservable's operators, justtransform
Improvements for monix-eval, Task and Coeval:
- PR #410:
TaskandCoevalperformance optimisations - PR #422: adds
Task.shift, an innovation inspired bycats.effect.IO - PR #424:
Taskrefactoring, gets rid ofTask.OnFinishtype alias - PR #430:
CoevalandTaskrefactoring to therunmethods for consistency, introducedmap2,map3...map6on bothTaskandCoeval, renamedzipMap*toparMap2,parMap3...parMap6forTask
Administrative and build changes:
- PR #372: configured project for Git hash versioning (for enabling automatic releases)
- PR #378: dropped Scala 2.10 support
- enabled automatic deployments through Travis-ci, wrote a blog post documenting the necessarily steps, see Automatic Releases to Maven Central with Travis and SBT
- PR #423: updates Scala.js to 0.6.20, the final in the series before 1.0.0
Release is binary backwards compatible with series 2.3.x.
This is a service release, fixing a minor issue in AsyncScheduler
and upgrading Scala.js:
- PR #436:
adds reusable
ShiftedRunnable, leaving no room for error inBatchingSchedulertypes by usage ofTrampolinedRunnable; also upgrades Scala.js to 0.6.20
Release is binary backwards compatible with series 2.3.x.
This is a service release, fixing a minor issue in AsyncScheduler
and upgrading Scala.js:
- PR #436:
adds reusable
ShiftedRunnable, leaving no room for error inBatchingSchedulertypes by usage ofTrampolinedRunnable; also upgrades Scala.js to 0.6.20
Release is binary backwards compatible with series 2.2.x.
List of changes:
- Issue #340:
Optimization of
TaskSemaphore - Issue #349:
Replace usage of
scala.util.control.NonFatalin handling fatal exceptions tomonix.execution.misc.NonFatal - Issue #347:
Add
Task.deferActionbuilder - Issue #339:
Add
Observable.observeOnmethod - Issue #338:
Cancelablerefs built withCancelable.collectionshould useCancelable.cancelAllin its implementation - Issue #350:
Change
BackPressurebuffer implementation to be more fair and ensure that it doesn't lose events - Issue #353:
Refactor
Coeval/Taskrun-loop to introduce optimizedattempt/materializeimplementations and addtransform/transformWithmethods making use of this - Issue #355:
Add
Coeval.runmethod - Issue #356:
Add
Coeval#attemptandTask#attemptmethods - Issue #358:
Deprecate
materializeAttemptanddematerializeAttemptonTaskandCoeval - Issue #359:
Rename
Coeval.Attempt#isFailuretoCoeval.Attempt#isError - Issue #348:
Add
Consumer#transformInputmethod - Issue #352 /
PR #361:
No back-pressure when converting from
org.reactivestreams.PublishertoObservable - Issue #362:
Replace
[T]generic param to[A], as a convention, everywhere - PR #341, PR #344, PR #346, Commit 9357ba, etc: Update dependencies (Scalaz 7.2.11, Scala 2.11.11, Scala 2.12.2, Scala.js 0.6.16)
Administrative:
- Issue #354: Enable Mima and Unidoc error reporting in Travis build
- PR #351: Specify that Monix is now a Typelevel project with full membership
Critical bug fix release related to Scala 2.12:
- Bug #330:
Ack.Continue.transformWithandAck.Stop.transformWithare not stack-safe
Most (probably all) functionality in Monix is not affected, because Monix
rarely flatMaps Continue references and we have had extensive tests for it.
However this bug can be dangerous for people that have implemented the
communication protocol (as described in the docs) by themselves.
New Features:
- Issue #306:
Circuit Breaker for
Task - Issue #312:
Add
Task.memoizeOnSuccessandCoeval.memoizeOnSuccess - Issue #313:
Add
Task.deferFutureActionbuilder - Issue #325:
Add
SingleAssignmentCancelable.plusOne - Issue #319:
Move and redesign exceptions in
monix.execution - Issue #314:
Task.sequenceshould have lazy behavior in evaluating the given sequence
Bug fixes:
- Bug #268:
Optimise the unsubscribe logic in
PublishSubject - Bug #308:
Fix NPE on
AsyncSubject.unsubscribe - Bug #315:
The
MapTaskObservableinternal object is exposed (ScalaDoc) - Bug #321:
Observable.concatMapandmapTaskcannot be canceled if the source has already completed - Documentation fixes: #307, #309, #311, #316 and #317
Build:
- enabled the Scala
Migration Manager
(MiMa) in
build.sbtto check for backwards compatibility problems - Issue #322:
Switch projects which use
CrossVersion.full/"org.scala-lang"toCrossVersion.patch/scalaOrganization.value
Unfortunately we have to push an emergency fix:
- Issue #305:
Fix stack-overflow error in
MVar
In addition to the changes from the 2.2.0-M1 milestone:
- Issue #298: Don't publish empty jars in root projects
- Issue #300: Update to cats 0.9.0
- Issue #301:
MVar, a non-blocking Task-based implementation - Issue #303: Observable "doOn" operators refactoring
Version 2.2.0-M1 is a milestone release, released for feedback
and testing purposes.
- Issue #281:
Fix performance regression in
Task.flatMap - Issue #284:
Move
ExecutionModeltomonix.execution - Issue #285:
Rename
Task.runAsync(f: Try[A] => Unit)toTask.runOnComplete - Issue #286:
Add
Task.runSyncMaybe - Issue #287:
Add
Scheduler.forkJoinbuilder - Issue #266:
Add
SchedulerServiceinterface inmonix.execution.schedulers - Issue #288:
Task.createshould not force async boundary - Issue #289:
Observable.foreachshould not fork - Issue #291:
Add
Observable.takeEveryNthoperator - Issue #292:
Optimize
Observable.concatMap - Issue #294:
Optimize
Observable.bufferSliding - Issue #295:
Add
Observable.publishSelector,Observable.pipeThroughSelector - Issue #296:
Add
Task.deferFuturebuilder
Version 2.1.2 is a minor release, binary compatible with 2.1.x,
upgrading Scala to 2.12.1 and fixing a bug in Observable.bufferSliding.
- Bug #275:
Observable.bufferSlidingis broken
Version 2.1.1 is a minor release, binary compatible with 2.1.0,
fixing the compatibility with older Android versions.
The gist is that older Android versions are incompatible with our
usage of sun.misc.Unsafe. And this might also be true of other
platforms as well, like the upcoming Java 9.
Therefore we are doing two things:
- we introduce new
monix.execution.atomic.Atomicimplementations that make use ofAtomicFieldUpdaterclasses, for those platforms that do not supportsun.misc.Unsafe; hopefully this will perform well on top of Java 9, see this post by Aleksey Shipilёv: https://shipilev.net/blog/2015/faster-atomic-fu/\ - in our usage of JCTools,
since these rely heavily on
sun.misc.Unsafe, we fallback to implementations fromorg.jctools.queues.atomic, as these are safe to use
The issues being addressed:
- Bug #269: Observable throws NoSuchFieldException (via jctools) on Android
- Issue #270: Add support
for platforms that do not have
sun.misc.Unsafe(with the corresponding PR #272)
Version 2.1.0 is a major release that is not compatible with
the previous 2.0.x series.
Issues addressed:
- Issue #226:
Add
Task.Optionswith anautoCancelableRunLoopsproperty - Issue #227:
Add
executeWithFork,executeWithModelandasyncBoundaryoperators onTask - Issue #232:
Async
Taskinstances should execute withTrampolinedRunnableeverywhere we can - Issue #236:
TaskandCoevalneedforeachandforeachL - Issue #237:
Introduce
monix.execution.misc.ThreadLocal - Issue #238:
Add
Coeval.Attempt.get - Issue #239:
Task.flatMaploops should not be auto-cancelable by default - Issue #240:
Change type class encoding, provide optimal
Observable.tailRecM, upgrade Cats to0.8.x - Issue #251:
Provide instances for Scalaz
Catchable - Issue #241:
TestScheduler's exposedstateshould return theStateand notAtomic[State] - Issue #243:
Add the
TrampolineSchedulerfor the JVM, in addition to Javascript - Issue #256:
Refine extension methods on
Scheduler - Issue #264:
AtomicNumberclasses needgetAndAddoptimisation - Issue #262:
Add
TaskSemaphoreandAsyncSemaphore - Issue #263:
Add
Observable.mapTaskandObservable.mapFuture - Issue #205:
Add
Observable.mapAsyncfor parallel mapping overObservable - Issue #261:
Optimize the performance of the
Observablebuffers - Issue #254
Rename
Observable.runWithtoObservable.consumeWith - Issue #242:
Add
Scheduler.cachedbuilder for the JVM
- Upgrade Scala to 2.12.0 final release
- Upgrade Scalaz to 7.2.7
- Upgrade Minitest to 0.27
- Bug #247: Avoid runtime reflection
- Bug #248: Reset overflow counter on None onOverflow result
- Updates Scala.js to 0.6.13 and Scala to 2.12.0-RC2
- Bug #244: AsyncScheduler.scheduleAtFixedRate and scheduleWithFixedDelay (on the JVM) have incorrect behavior
- Bug #230:
Deadlock when blocking threads due to
LocalBatchingExecutor(affectsTaskusage)
- Issue #224:
IllegalStateExceptionlogged in parallel consumer, when streaming gets canceled due to a subscriber triggering an error
- Issue #218:
Upgrade Cats to
0.7.2, Scalaz to7.2.6and support Scala2.12.0-RC1
- Issue #216:
Change type class design in
monix.typesto an encoding inspired by the Scato and Scalaz 8, cleaning up the available types; also enable 2.12.0-M5 support, although releases are not automatic, because Cats doesn't yet support Scala 2.12
Emergency bug fix:
- Issue #215:
the instance created by
Task.gatherUnorderedkeeps state and has problems running (withrunAsync) a second time
Bug fixes:
- Issue #211:
CompositeCancelable.removewasn't working after the changes in RC10, fixed it in RC11 and now added some more tests - Issue #213: Fixes
Task/Coevalmemoize operation
Enhancements:
- Issue #212: Upgraded Cats to version 0.7.0
- PR #214: optimize Task, refactorings, some deprecations (details below)
Details on PR #214:
- Upgraded the Cats dependency to version 0.7.0. Had some trouble with that (see cats#1329), but it is now functional
- Renamed
evaltoevalAlwaysacross the board (inTask,CoevalandObservable), but keptevalAlwayswith the@deprecatedsign, so upgrade should be smooth. The reason is thatevalAlwaysis an often used operation and deserves a shorter name - For Scalaz converts introduced
Task.delayas an alias ofTask.eval,Task.suspendas an alias ofTask.deferandTask.asyncas an alias ofTask.create - Renamed
Task.eval(Coeval)toTask.coeval(Coeval)andObservable.eval(Coeval)toObservable.coeval(Coeval)in order to avoid a conflict - Removed
Task.bothbecause it is just an alias forTask.mapBoth. Judging in retrospective, we probably should've added it a@deprecatedwarning instead; on the other handbothandmapBothare so close that the IDE will probably suggestmapBoth(at least IntelliJ IDEA does) - Refactor the
Taskinternals again, for optimizations and simplifications:- Simplified the internal states, e.g. instead of having
Now,Error,AlwaysandOnce, we now have a singleDelay(coeval), thus reusing theCoevaltype for computing asynchronous values - Get rid of the
Task.Attempttype, it never made any sense that one. People can useCoeval.Attemptif they need aTryalternative (and convert toTaskif they end up needing aTask) - Introduced
Scheduler.executeAsyncandScheduler.executeLocalas extension methods powered by macros, for zero-overhead, because buildingRunnableinstances is too annoying - Used
Scheduler.executeLocalandLocalRunnablein key points in theTaskimplementation to reduce forking - Made
Task.gatherbe based onTask.gatherUnorderedand it is now way faster
- Simplified the internal states, e.g. instead of having
- Moved everything from
monix.types.shimstomonix.types
Bug fixes:
- Issue #207: Task flatMap loop isn't cancelable
- Issue #210: Fixed
CompositeCancelable.remove, a bug introduced in the last release (RC10)
Enhancements:
- Issue #208: Uniquely name threads generated from ThreadFactory
- Issue #210: Refactorings for performance and coherence reasons, described below
Issue #210 changes for the monix-execution sub-project:
- introduced the
CallbackRunnableinterface for markingRunnableinstances that could be executed on the current thread, on a local trampoline, as an optimization - introduced
LocalBatchingExecutor, a mixin for schedulers that can executeCallbackRunnablelocally, using a trampoline - made
AsyncSchedulerfor the JVM be able to executeCallbackRunnableinstances by inheriting fromLocalBatchingExecutor; but not on top of Javascript - fixed critical bug in
CompositeCancelablethat was introduced in the last release
Issue #210 changes for the monix-eval sub-project:
-
optimized
Task.fromFutureto the point that it has near zero overhead -
optimized
Task.gather,Task.gatherUnordered,Task.sequence -
Task.gathernow forces asynchronous execution for the given tasks -
Task.gatherUnorderedalso forces asynchronous execution -
optimized the
Tasktrampoline in general -
introduced
Callback.asyncwrapper andasyncApplyextension method -
renamed
Task.zipWithtoTask.zipMap(rename across the board, also forObservable) -
added
Task.executeOnfor overriding theScheduler -
added
Task.forkoverload with a scheduler override -
added
Task.asyncas an alias ofTask.create
Issue #210 changes for the monix-types sub-project:
- moved all shims to
monix.types.shims, in order to differentiate them from type classes that are not shims - added the
Deferrabletype class, to express lazy evaluation concerns (e.g.evalOnce,evalAlways,defer,memoize) - added the
Evaluabletype class, for computations that will eventually produce a value
Issue #210 changes for the monix-reactive project:
- for
foldLeftmethods, make the seed be just a normal by-name parameter instead of aCoeval, because otherwise it isn't compatible with other type classes / interfaces - affected methods are
foldLeft,foldLeftAsync - rename
zipWithtozipMap - rename
combineLatestWithtocombineLatestMap - add
Observable.fromAsyncStateAction - fix
Consumer.foldLeftAsync
Enhancements:
- Issue #200: Add an
executeNowextension method forScheduler, taking a by-name callback, as initializingRunnableinstances is too annoying - Issue #201: Fixes and
optimizes
Task.gatherUnordered- as an edge-case, it wasn't stack safe and it has been optimized to be more efficient - Issue #202: Added
asyncOnSuccessandasyncOnErroras extension methods forCallbackand madeTask.createsafe by forcing an asynchronous boundary when calling the callback (onSuccess/onError); also optimizesTask.chooseFirstOfListandTestScheduler - Issue #203: Changed
the
onOverflowfunction signature forOverflowStrategytypes supporting it - it can now return anOptionand if it returnsNone, then we don't signal any messages downstream, thus making it easier to just log that overflow happened without extra tricks
Bug fixes:
- Issue #193: Task Applicative instance doesn't run the tasks in parallel
- Issue #194:
Task.mapBothis not stack-safe
Enhancements:
- Issue #196: Add the
Consumer.createbuilder - Issue #166: Generalize
Task.sequence,Task.gatherandTask.gatherUnorderedfor arbitrary collections
Misc:
- updated Scala.js version to 0.6.11
- updated Cats version to 0.6.1
- changed PGP signing key
- increased timeout on the reactive streams publisher tests
Critical bug fix:
- BUG #181: the default operators
on
CancelableFutureare triggeringStackOverflowexceptions
New Features:
- Issue #184: introducing the
Consumertype, a factory of subscribers that makes it easier to specify reusable and composable consumers and for example, it makes it possible, out of the box, to load-balance the workload between multiple subscribers in parallel; see the description - Issue #186 (related to
issue #168): adds the
Observable.interleave2operator, similar with the one inFS2(former scalaz-streams) - Issue #180: the
Observer.feedfunction now has an overload that does not take a cancelable, because it's awkward coming up with one if it isn't needed; there's also aonNextAllextension for bothObserverandSubscriberwhich can push a whole collection of events - Issue #187: integrates
the
MonadCombinetype class from Cats, being similar to the ScalazMonadPlus, as somehow this was missed in the initial integration - Issue #177 reviews exposed
traits and abstract classes, making sure they inherit from
Serializable - Issue #85: small change,
clarifies the ScalaDoc on theRefCountCancelabletype - Issue #162: implements
the
Observable.takeUntil(trigger: Observable[Any])operator, an operator that takes from the source until another observable triggers an event - Issue #189: for
Observableoperators that return a single item (e.g.sumF,foldLeftF, etc.) adds variants that do the same thing, but returnTaskresults instead, so now we havefoldLeftL,sumL, etc. that return tasks - Issue #190: changes many
observable operators, that were taking by-name parameters or initial state
parameters (e.g.
headOrElseF,foldLeftF, etc), to takeCoevalparams instead, in order to have fine control over the evaluation model - Issue #191: introduces
by default an implicit conversion from
AnytoCoeval.Now, to make it easier to useCoevalas function parameters - the default will thus simply be strict evaluation, strictness being usually the default in Scala
Bug fixes:
- BUG #170:
Task.materializeAttemptdoesn't work forBindAsync, leading toonErrorHandleWithnot working with errors triggered inflatMapon async tasks
New Features:
- Issue #171:
Add Scheduler builder on the JVM that allows specifying
just the
ExecutionModel, falling backglobalotherwise - Issue #174: Scalaz integration (in addition to the Cats integration) for FP goddess
- Issue #175:
Reintroduce all of project
Sincronintomonix-execution, which means that nowmonix-executionexposesAtomicreferences. This project was split from Monix, but the decision didn't make sense and the exposed functionality is super useful and in the spirit ofmonix-execution - Issue #176: now that we
have
Task, we introduceTaskApp, a safeApptype that allows one to specify pure programs
Breaking changes:
- Issue #157: Renaming
Observable.doOnCanceltodoOnSubscriptionCancelbecause its meaning has changed since Monifu 1.x and it will cause pain - Issue #160 (breaking change):
Revamp the buffer operators on
Observable - Issue #161 (breaking change): Revamp the ConcurrentSubject and Pipe constructors
Bug fixes and enhancements:
- Bug #153: already fixed in
2.0-RC5forTask, but now also fixed forCoeval - Issue #155: Coeval enhancements and fixes
- Issue #156: Adding
Observable.doOnTerminatefor executing a piece of logic whenonCompleteoronErrorhappens, or when the subscriber stops the streaming withStop - Issue #158:
Observable.fromIteratortakes now an optionalonFinishcallback for resource deallocation, because theIteratorinterface doesn't provide aclose()that could be used - Issue #163: added
Observable.fromInputStream,fromCharsReaderandfromLinesReaderfor reading fromjava.io.InputStream,java.io.Readerandjava.io.BufferedReaderdata sources - Issue #164: Add
Observable.executeOn, as alternative toobserveOn - Issue #165: Simplification of the Cats integration
Critical bug fix:
- Bug 153 - Task.sequence and Task.gather return a shared mutable.ListBuffer
- Issue #89 - reintroducing a minimal
Cats integration, along with tests based on
cats-laws. We are splittingmonix.typeinto its own sub-project andmonix-catsdepends on it. This ensures that the pick what you use approach also works withmonix-cats, as people wanting justTaskshould not getObservable, yetObservableneeds integration as well. - Issue #149 - documentation related fixes
- Improved the description of
Task Task.unitis now a final valTask.nevernow shares the reference instead of building a new instance every time- Exposing
Task.unsafeStartNowandTask.unsafeStartAsync, as otherwiseTask.unsafeCreateis useless. So we should expose all of them, or none at all. FutureUtils.Extensions.dematerializewas named "materialize" (WTF!) and is renamed- Task should inherit just from
Serializableand not fromProduct
- Improved the description of
- Issue #150 - add a new
Task.doOnFinishoperator that executes once a task is finished. - Issue #151 - changing
Future.sequenceto be ordered in both execution and effects - Issue #152 - introduce
Task.gatherwhich behaves like the previoussequenceandTask.gatherUnorderedwhich doesn't do ordering for results either.
- Issue #147 - Make
BehaviorSubjectandReplaySubjectremove subscribers that triggeredStopwhile connecting, thus freeing the memory sooner, otherwise the GC cannot free the subscriber because its reference is kept captive until the nextSubject.onNext - Remove
tutandsitefromproject/plugins, as the documentation will be handled in the monix.io repository - Re-enable code coverage in Travis and fix the build to actually test Scala 2.10.6
Minor release with a single bug fix:
- Issue #144 - fix Observable.zip
Feature freeze. There's lots of interesting stuff to work on, but I'd rather have a stable 2.0 release first.
Bug fix:
- Issue #143 - on RefCountObservable cancel and stop should be idempotent
The theme and the big issue of this release has been redesigning Task's
implementation and introducing Coeval. See Issue #141
for details.
List of changes:
- Issue #88: the
Taskimplementation has been redesigned from scratch - Issue #89: Cats integration has been tried and yielded very positive results, but is being delayed
- Issue #96
and issue 99: add
MulticastStrategyfor safer building of multicast Observables - Issue #127: Introduce operators onErrorHandle and onErrorHandleWith
- Issue #128: operators
materialize, dematerialize and memoize for
Task(andCoeval) - Issue #113: Introduce the
bufferIntrospectiveoperator - Issue #123: underlying protocol
changes, did some fixes for the work that already happened for
M1 - Issue #131: renamed
Ack.CanceltoAck.Stopin order to differentiate it as a verb fromCancelable.cancel, because in version2.0they are two different actions (and it's more semantically correct this way) - Issue #132: introduced the
Observable.onCancelTriggerErroroperator - Issue #133: introduced the
Observable.doOnDownstreamStopanddoOnCancel(which is one reason for #131) - Issue #134:
New operator
Observable.switchIfEmpty - Issue #136:
Clarify reactive streams, initiated
monix.execution.rstreamsfor reusable subscription types and added theReactivePublishertype class for things that can be converted toorg.reactivestreams.Publisher(both Observable and Task are instances) - Issue #140: Add type class hierarchy, to be integrated with both Cats and Scalaz
- Issue #141: reimplement Task from scratch, introduce Coeval, introduce Scheduler.executionModel
Milestone release for version 2.0, supplied as a preview. The final 2.0 release should not have major changes compared to this first milestone, but API breakage may still happen.
This version is not production ready. Use at your own risk.
List of changes:
- Issue #60 - initiated the
docssub-project with tutorials type-checked as part of the test process - Issue #88 - add Monix's own
Task, an alternative toFutureand the ScalazTask - Issue #89 - initial integration with Cats
- Issue #90 - remove functionality that isn't relevant to the purpose of Monix and be supported
- Issue #91 - project rename and reorganization (epic API breakage)
- Issue #93 - renamed
Observable.onSubscribetoObservable.unsafeSubscribeFn, because it shouldn't be used directly, unless you really, really know what you're doing - Issue #94 - fixed comments style to ScalaDoc
- Issue #96 - removed
Observable.createbecause it is unsafe - Issue #100 - enhanced the
Schedulerinterface - Issue #102 - brought back
sun.misc.Unsafe(actually this was done in separate project, as part of issue #104) - Issue #104 - separated the
Atomicimplementations in the Sincron - Issue #106 - enabled code coverage reports
- Issue #111 - improved test coverage
- Issue #114 - initiated the
benchmarkssub-project to track performance issues - Issue #115 -
Cancelable.cancelnow returnsUnitand notBoolean - Issue #118 - Fix
materialize, adddematerialize - Issue #119 - Introduced
Pipe, renamedChannelinConcurrentSubject, renamedSynchronousObserverinSyncObserver, renamedSynchronousSubscriberinSyncSubscriber - Issue #121 - Clarified the contract for synchronous
pipelines, got rid of the hacks from
internal, replacing them with macro-driven extensions forFuture[Ack] - Issue #123 - Changed the protocol of
Observable.subscribe, back-pressuringonCompleteandonErroris now optional andObservable.unsafeSubscribeFnneeds to return a usableCancelableinstead ofUnit(big internal change) - Issue #125 - Modified contract of
AsyncScheduler, added a newExecutorScheduler
- Issue #113 - Introduce the
bufferIntrospectiveoperator
- Issue #125 - Modify contract of AsyncScheduler, and add a new Scheduler type based entirely on Java's ScheduledExecutor
- Update versions of SBT dependencies
- Documentation changes (fixed missing argument in Observable docs, add code of conduct mention)