reflex/ChangeLog.md

54 lines
2.0 KiB
Markdown
Raw Normal View History

2019-03-21 00:41:02 +03:00
# Revision history for reflex
## 0.6.2.3
* Add an upper-bound to witherable
2019-08-05 09:49:01 +03:00
## 0.6.2.2
* Support these >= 1. Add `split-these` flag to control whether to use new these/semialign combination or not.
* Update version bounds to fix some CI failures
* Add travis CI configuration
2019-08-01 22:56:52 +03:00
## 0.6.2.1
2019-04-04 19:05:41 +03:00
* Generalize `fan` to `fanG` to take a `DMap` with non-`Identity`
functor:
* `fan` to `fanG`
* `EventSelectorG` for `fanG` result selector.
* Reduce the amount of unsafeCoerce in coercing newtypes under Event/Dynamic/Behavior.
* Add fused ReaderIO for the purpose of coercion (ReaderT's third argument has nominal role preventing automated coerce)
* Add incrementalCoercion/coerceIncremental to go with dynamicCoercion/coerceDynamic
* Generalize merging functions:
`merge` to `mergeG`,
`mergeIncremental` to `mergeIncrementalG`,
`mergeIncrementalWithMove` to `mergeIncrementalWithMoveG`.
* Generalize distribute function:
`distributeDMapOverDynPure` to `distributeDMapOverDynPureG`,
2019-06-15 00:50:07 +03:00
## 0.6.2.0
2019-04-04 19:05:41 +03:00
* Fix `holdDyn` so that it is lazy in its event argument
These produce `DMap`s whose values needn't be `Identity`.
2019-06-15 00:50:07 +03:00
* Stop using the now-deprecated `*Tag` classes (e.g., `ShowTag`).
* Fix `holdDyn` so that it is lazy in its event argument.
2019-04-04 19:05:41 +03:00
## 0.6.1.0
* Re-export all of `Data.Map.Monoidal`
* Fix `QueryT` and `RequesterT` tests
2019-03-21 00:41:02 +03:00
## 0.6.0.0 -- 2019-03-20
* Deprecate `FunctorMaybe` in favor of `Data.Witherable.Filterable`. We still export `fmapMaybe`, `ffilter`, etc., but they all rely on `Filterable` now.
* Rename `MonadDynamicWriter` to `DynamicWriter` and add a deprecation for the old name.
2019-03-22 18:13:13 +03:00
* Remove many deprecated functions.
* Add a `Num` instance for `Dynamic`.
* Add `matchRequestsWithResponses` to make it easier to use `Requester` with protocols that don't do this matching for you.
* Add `withRequesterT` to map functions over the request and response of a `RequesterT`.
* Suppress nil patches in `QueryT` as an optimization. The `Query` type must now have an `Eq` instance.
* Add `throttleBatchWithLag` to `Reflex.Time`. See that module for details.