packages feed

morpheus-graphql-tests 0.18.0 → 0.19.0

raw patch · 3 files changed

+2/−16 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

morpheus-graphql-tests.cabal view
@@ -3,11 +3,9 @@ -- This file has been generated from package.yaml by hpack version 0.34.4. -- -- see: https://github.com/sol/hpack------ hash: 0ac9343524efdc7c2418af23f1cb455e747ee3ef33da99c7650debf131f39e92  name:           morpheus-graphql-tests-version:        0.18.0+version:        0.19.0 synopsis:       Morpheus GraphQL Test category:       web, graphql, test homepage:       https://morpheusgraphql.com
src/Test/Morpheus.hs view
@@ -164,4 +164,4 @@   IO b getAppsBy f url = do   files <- searchAppFiles url-  getAppsWIth f url files+  getAppsWIth f url (sort files)
src/Test/Morpheus/Utils.hs view
@@ -105,15 +105,3 @@  getResolver :: FromJSON resolver => FileUrl -> IO resolver getResolver url = readJSON "resolvers" url >>= either fail pure . eitherDecode---- data Target---   = Api---       ( forall req res.---         (FromJSON req, ToJSON res) =>---         (req -> IO res)---       )---   | Rendering---       ( forall req err.---         (ToJSON err, FromJSON req) =>---         (req -> IO (Either err ByteString))---       )