morpheus-graphql-server 0.23.0 → 0.24.0
raw patch · 4 files changed
+10/−16 lines, 4 filesdep ~morpheus-graphql-appdep ~morpheus-graphql-coredep ~morpheus-graphql-subscriptionsPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: morpheus-graphql-app, morpheus-graphql-core, morpheus-graphql-subscriptions, morpheus-graphql-tests
API changes (from Hackage documentation)
Files
- morpheus-graphql-server.cabal +7/−7
- test/Feature/Inference/type-guards/resolving/success/interface-fields/query.gql +1/−0
- test/Feature/Inference/type-guards/resolving/success/type-casting/query.gql +1/−0
- test/Feature/Inference/union-type/fragmentOnlyOnA/response.json +1/−9
morpheus-graphql-server.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: morpheus-graphql-server-version: 0.23.0+version: 0.24.0 synopsis: Morpheus GraphQL description: Build GraphQL APIs with your favourite functional language! category: web, graphql@@ -320,8 +320,8 @@ , base >=4.7.0 && <5.0.0 , bytestring >=0.10.4 && <0.12.0 , containers >=0.4.2.1 && <0.7.0- , morpheus-graphql-app >=0.23.0 && <0.24.0- , morpheus-graphql-core >=0.23.0 && <0.24.0+ , morpheus-graphql-app >=0.24.0 && <0.25.0+ , morpheus-graphql-core >=0.24.0 && <0.25.0 , mtl >=2.0.0 && <3.0.0 , relude >=0.3.0 && <2.0.0 , template-haskell >=2.0.0 && <3.0.0@@ -365,11 +365,11 @@ , bytestring >=0.10.4 && <0.12.0 , containers >=0.4.2.1 && <0.7.0 , file-embed >=0.0.10 && <1.0.0- , morpheus-graphql-app >=0.23.0 && <0.24.0- , morpheus-graphql-core >=0.23.0 && <0.24.0+ , morpheus-graphql-app >=0.24.0 && <0.25.0+ , morpheus-graphql-core >=0.24.0 && <0.25.0 , morpheus-graphql-server- , morpheus-graphql-subscriptions >=0.23.0 && <0.24.0- , morpheus-graphql-tests >=0.23.0 && <0.24.0+ , morpheus-graphql-subscriptions >=0.24.0 && <0.25.0+ , morpheus-graphql-tests >=0.24.0 && <0.25.0 , mtl >=2.0.0 && <3.0.0 , relude >=0.3.0 && <2.0.0 , tasty >=0.1.0 && <1.5.0
test/Feature/Inference/type-guards/resolving/success/interface-fields/query.gql view
@@ -1,5 +1,6 @@ { characters {+ __typename name age }
test/Feature/Inference/type-guards/resolving/success/type-casting/query.gql view
@@ -1,5 +1,6 @@ { characters {+ __typename name age ... on Deity {
test/Feature/Inference/union-type/fragmentOnlyOnA/response.json view
@@ -1,13 +1,5 @@ { "data": {- "union": [- {- "aText": "at",- "__typename": "A"- },- {- "__typename": "B"- }- ]+ "union": [{ "aText": "at" }, {}] } }