Changelog for stm package
- Removed
alwaysSucceedsandalways, GHC's invariant checking primitives. (GHC #14324)
-
Fix space leak in
TBQueue(gh-2, GHC#14494) -
Make
signalTSemresilient againstIntoverflows (gh-4) -
Make definition of
readTQueueconsistent withreadTBQueue(gh-3, GHC#9539) -
Add
flushTQueuetoControl.Concurrent.STM.TQueue(gh-1) -
Add
flushTBQueuetoControl.Concurrent.STM.TBQueue(gh-1) -
Add
signalTSemNoperation (gh-5)
-
Add support for
base-4.9.0.0 -
Drop support for GHC 6.12 /
base-4.2
-
Add support for
base-4.8.0.0 -
Tighten Safe Haskell bounds
-
Add
mkWeakTMVartoControl.Concurrent.STM.TMVar -
Add
@since-annotations
-
Update behaviour of
newBroadcastTChanIOto matchnewBroadcastTChanin causing an error on a read from the broadcast channel -
Add
mkWeakTVar -
Add
isFullTBQueue -
Fix
TChancreated vianewBroadcastTChanIOto throw same exception on areadTChanas when created vianewBroadcastTChan -
Update to Cabal 1.10 format
-
Add
Control.Concurrent.STM.TSem(transactional semaphore) -
Add Applicative/Alternative instances of STM for GHC <7.0
-
Throw proper exception when
readTChancalled on a broadcastTChan
-
Add
Control.Concurrent.STM.TQueue(a fasterTChan) -
Add
Control.Concurrent.STM.TBQueue(a bounded channel based onTQueue) -
Add
Eqinstance forTChan -
Add
newBroadcastTChanandnewBroadcastTChanIO -
Some performance improvements for
TChan -
Add
cloneTChan