eventium-testkit 0.6.1 → 0.7.0
raw patch · 2 files changed
+4/−4 lines, 2 filesdep ~eventium-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: eventium-core
API changes (from Hackage documentation)
- Eventium.Testkit: GlobalProjectionCacheRunner :: (forall a. () => (VersionedEventStoreWriter m CounterEvent -> GlobalEventStoreReader m CounterEvent -> GlobalProjectionCache Counter m -> m a) -> IO a) -> GlobalProjectionCacheRunner (m :: Type -> Type)
+ Eventium.Testkit: GlobalProjectionCacheRunner :: (forall a. () => (VersionedEventStoreWriter m CounterEvent -> GlobalEventStoreReader m CounterEvent -> GlobalProjectionCache m Counter -> m a) -> IO a) -> GlobalProjectionCacheRunner (m :: Type -> Type)
- Eventium.Testkit: VersionedProjectionCacheRunner :: (forall a. () => (VersionedEventStoreWriter m CounterEvent -> VersionedEventStoreReader m CounterEvent -> VersionedProjectionCache Counter m -> m a) -> IO a) -> VersionedProjectionCacheRunner (m :: Type -> Type)
+ Eventium.Testkit: VersionedProjectionCacheRunner :: (forall a. () => (VersionedEventStoreWriter m CounterEvent -> VersionedEventStoreReader m CounterEvent -> VersionedProjectionCache m Counter -> m a) -> IO a) -> VersionedProjectionCacheRunner (m :: Type -> Type)
Files
- eventium-testkit.cabal +2/−2
- src/Eventium/Testkit.hs +2/−2
eventium-testkit.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: eventium-testkit-version: 0.6.1+version: 0.7.0 synopsis: Testing utilities for eventium description: Eventium-testkit provides common testing utilities and helper functions for testing Eventium-based applications. It includes utilities for event store testing, serialization testing, and common test fixtures@@ -44,7 +44,7 @@ build-depends: aeson >=1.5 && <2.3 , base >=4.20 && <5- , eventium-core >=0.6.1 && <0.7.0+ , eventium-core >=0.7.0 && <0.8.0 , extra ==1.7.* , hspec >=2.8 && <2.12 , monad-logger ==0.3.*
src/Eventium/Testkit.hs view
@@ -348,7 +348,7 @@ ( forall a. ( VersionedEventStoreWriter m CounterEvent -> VersionedEventStoreReader m CounterEvent ->- VersionedProjectionCache Counter m ->+ VersionedProjectionCache m Counter -> m a ) -> IO a@@ -388,7 +388,7 @@ ( forall a. ( VersionedEventStoreWriter m CounterEvent -> GlobalEventStoreReader m CounterEvent ->- GlobalProjectionCache Counter m ->+ GlobalProjectionCache m Counter -> m a ) -> IO a