Haxl/changelog.md
Bartosz Nitka f1df1cb368 Prepare for 0.5.1.0 release
Summary:
We need a release for GHC 8.2.1 compatibility:
https://github.com/facebook/Haxl/issues/70

(Note: this ignores all push blocking failures!)

Reviewed By: simonmar

Differential Revision: D5488485

fbshipit-source-id: 61ae115e7456beb1dd8855d387690e13a1e09bdc
2017-07-25 04:24:40 -07:00

938 B

Changes in version 0.5.1.0

  • 'pAnd' and 'pOr' were added
  • 'asyncFetchAcquireRelease' was added
  • 'cacheResultWithShow' was exposed
  • GHC 8.2.1 compatibility

Changes in version 0.5.0.0

  • Rename 'Show1' to 'ShowP' (#62)

Changes in version 0.3.0.0

  • Some performance improvements, including avoiding quadratic slowdown with left-associated binds.

  • Documentation cleanup; Haxl.Core is the single entry point for the core and engine docs.

  • (>>) is now defined to be (*>), and therefore no longer forces sequencing. This can have surprising consequences if you are using Haxl with side-effecting data sources, so watch out!

  • New function withEnv, for running a sub-computation in a local Env

  • Add a higher-level memoization API, see 'memo'

  • Show is no longer required for keys in cachedComputation

  • Exceptions now have Eq instances