From 8c650560ad5c976d8d645212d467ddb9e0ea8503 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 31 Oct 2022 17:41:35 +0100 Subject: [PATCH] Publish Release 0.25.0 (#787) * publish-release/0.25.0 * update cabal Co-authored-by: GitHub Co-authored-by: David Nalchevanidze --- config/stack.yaml | 4 ++-- .../morpheus-graphql-app.cabal | 8 +++---- morpheus-graphql-app/package.yaml | 8 +++---- .../morpheus-graphql-client.cabal | 6 ++--- morpheus-graphql-client/package.yaml | 4 ++-- .../morpheus-graphql-code-gen-utils.cabal | 4 ++-- morpheus-graphql-code-gen-utils/package.yaml | 4 ++-- .../morpheus-graphql-code-gen.cabal | 12 +++++----- morpheus-graphql-code-gen/package.yaml | 8 +++---- .../morpheus-graphql-core.cabal | 4 ++-- morpheus-graphql-core/package.yaml | 4 ++-- .../morpheus-graphql-server.cabal | 16 +++++++------- morpheus-graphql-server/package.yaml | 16 +++++++------- .../morpheus-graphql-subscriptions.cabal | 6 ++--- morpheus-graphql-subscriptions/package.yaml | 6 ++--- .../morpheus-graphql-tests.cabal | 2 +- morpheus-graphql-tests/package.yaml | 2 +- morpheus-graphql/morpheus-graphql.cabal | 22 +++++++++---------- morpheus-graphql/package.yaml | 16 +++++++------- stack.yaml | 9 ++------ 20 files changed, 78 insertions(+), 83 deletions(-) diff --git a/config/stack.yaml b/config/stack.yaml index 8eaa2c3c6..35cb3d1c7 100644 --- a/config/stack.yaml +++ b/config/stack.yaml @@ -1,6 +1,6 @@ bounds: - - 0.24.0 - 0.25.0 + - 0.26.0 examples: - client - code-gen @@ -156,4 +156,4 @@ rules: yaml: - 0.8.32 - 1.0.0 -version: 0.24.3 +version: 0.25.0 diff --git a/morpheus-graphql-app/morpheus-graphql-app.cabal b/morpheus-graphql-app/morpheus-graphql-app.cabal index 7029ad5f3..d0d238a6a 100644 --- a/morpheus-graphql-app/morpheus-graphql-app.cabal +++ b/morpheus-graphql-app/morpheus-graphql-app.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: morpheus-graphql-app -version: 0.24.3 +version: 0.25.0 synopsis: Morpheus GraphQL App description: Build GraphQL APIs with your favourite functional language! category: web, graphql @@ -142,7 +142,7 @@ library , containers >=0.4.2.1 && <0.7.0 , hashable >=1.0.0 && <2.0.0 , megaparsec >=7.0.0 && <10.0.0 - , morpheus-graphql-core >=0.24.0 && <0.25.0 + , morpheus-graphql-core >=0.25.0 && <0.26.0 , mtl >=2.0.0 && <3.0.0 , relude >=0.3.0 && <2.0.0 , scientific >=0.3.6.2 && <0.4.0 @@ -174,8 +174,8 @@ test-suite morpheus-graphql-app-test , hashable >=1.0.0 && <2.0.0 , megaparsec >=7.0.0 && <10.0.0 , morpheus-graphql-app - , morpheus-graphql-core >=0.24.0 && <0.25.0 - , morpheus-graphql-tests >=0.24.0 && <0.25.0 + , morpheus-graphql-core >=0.25.0 && <0.26.0 + , morpheus-graphql-tests >=0.25.0 && <0.26.0 , mtl >=2.0.0 && <3.0.0 , relude >=0.3.0 && <2.0.0 , scientific >=0.3.6.2 && <0.4.0 diff --git a/morpheus-graphql-app/package.yaml b/morpheus-graphql-app/package.yaml index e5a90163a..8fd441a97 100644 --- a/morpheus-graphql-app/package.yaml +++ b/morpheus-graphql-app/package.yaml @@ -1,5 +1,5 @@ name: morpheus-graphql-app -version: 0.24.3 +version: 0.25.0 github: nalchevanidze/morpheus-graphql-app license: MIT author: Daviti Nalchevanidze @@ -24,7 +24,7 @@ dependencies: - hashable >= 1.0.0 && < 2.0.0 - megaparsec >= 7.0.0 && < 10.0.0 - mtl >= 2.0.0 && < 3.0.0 - - morpheus-graphql-core >= 0.24.0 && < 0.25.0 + - morpheus-graphql-core >= 0.25.0 && < 0.26.0 - relude >= 0.3.0 && < 2.0.0 - scientific >= 0.3.6.2 && < 0.4.0 - text >= 1.2.3 && < 1.3.0 @@ -50,8 +50,8 @@ tests: - aeson >= 1.4.4 && < 3.0.0 - directory >= 1.0.0 && < 2.0.0 - morpheus-graphql-app - - morpheus-graphql-tests >= 0.24.0 && < 0.25.0 - - morpheus-graphql-core >= 0.24.0 && < 0.25.0 + - morpheus-graphql-tests >= 0.25.0 && < 0.26.0 + - morpheus-graphql-core >= 0.25.0 && < 0.26.0 - relude >= 0.3.0 && < 2.0.0 - tasty >= 0.1.0 && < 1.5.0 - tasty-hunit >= 0.1.0 && < 1.0.0 diff --git a/morpheus-graphql-client/morpheus-graphql-client.cabal b/morpheus-graphql-client/morpheus-graphql-client.cabal index 6cc76b8f7..a02caaf8c 100644 --- a/morpheus-graphql-client/morpheus-graphql-client.cabal +++ b/morpheus-graphql-client/morpheus-graphql-client.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: morpheus-graphql-client -version: 0.24.3 +version: 0.25.0 synopsis: Morpheus GraphQL Client description: Build GraphQL APIs with your favorite functional language! category: web, graphql, client @@ -94,7 +94,7 @@ library , file-embed >=0.0.10 && <1.0.0 , modern-uri >=0.1.0.0 && <1.0.0 , morpheus-graphql-code-gen-utils - , morpheus-graphql-core >=0.24.0 && <0.25.0 + , morpheus-graphql-core >=0.25.0 && <0.26.0 , morpheus-graphql-subscriptions , mtl >=2.0.0 && <3.0.0 , prettyprinter >=1.7.0 && <2.0.0 @@ -137,7 +137,7 @@ test-suite morpheus-graphql-client-test , modern-uri >=0.1.0.0 && <1.0.0 , morpheus-graphql-client , morpheus-graphql-code-gen-utils - , morpheus-graphql-core >=0.24.0 && <0.25.0 + , morpheus-graphql-core >=0.25.0 && <0.26.0 , morpheus-graphql-subscriptions , mtl >=2.0.0 && <3.0.0 , prettyprinter >=1.7.0 && <2.0.0 diff --git a/morpheus-graphql-client/package.yaml b/morpheus-graphql-client/package.yaml index 2437d6596..c3d3172bc 100644 --- a/morpheus-graphql-client/package.yaml +++ b/morpheus-graphql-client/package.yaml @@ -1,5 +1,5 @@ name: morpheus-graphql-client -version: 0.24.3 +version: 0.25.0 github: nalchevanidze/morpheus-graphql license: MIT author: Daviti Nalchevanidze @@ -23,7 +23,7 @@ dependencies: - containers >= 0.4.2.1 && < 0.7.0 - file-embed >= 0.0.10 && < 1.0.0 - morpheus-graphql-code-gen-utils - - morpheus-graphql-core >= 0.24.0 && < 0.25.0 + - morpheus-graphql-core >= 0.25.0 && < 0.26.0 - mtl >= 2.0.0 && < 3.0.0 - modern-uri >= 0.1.0.0 && < 1.0.0 - morpheus-graphql-subscriptions diff --git a/morpheus-graphql-code-gen-utils/morpheus-graphql-code-gen-utils.cabal b/morpheus-graphql-code-gen-utils/morpheus-graphql-code-gen-utils.cabal index 2ca33bee4..767f3e82a 100644 --- a/morpheus-graphql-code-gen-utils/morpheus-graphql-code-gen-utils.cabal +++ b/morpheus-graphql-code-gen-utils/morpheus-graphql-code-gen-utils.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: morpheus-graphql-code-gen-utils -version: 0.24.3 +version: 0.25.0 synopsis: Morpheus GraphQL CLI description: code generator for Morpheus GraphQL category: web, graphql, cli @@ -41,7 +41,7 @@ library base >=4.7.0 && <5.0.0 , bytestring >=0.10.4 && <0.12.0 , containers >=0.4.2.1 && <0.7.0 - , morpheus-graphql-core >=0.24.0 && <0.25.0 + , morpheus-graphql-core >=0.25.0 && <0.26.0 , prettyprinter >=1.7.0 && <2.0.0 , relude >=0.3.0 && <2.0.0 , template-haskell >=2.0.0 && <3.0.0 diff --git a/morpheus-graphql-code-gen-utils/package.yaml b/morpheus-graphql-code-gen-utils/package.yaml index 89887da47..8bb137551 100644 --- a/morpheus-graphql-code-gen-utils/package.yaml +++ b/morpheus-graphql-code-gen-utils/package.yaml @@ -1,5 +1,5 @@ name: morpheus-graphql-code-gen-utils -version: 0.24.3 +version: 0.25.0 github: morpheusgraphql/morpheus-graphql license: BSD3 author: Daviti Nalchevanidze @@ -16,7 +16,7 @@ dependencies: - base >= 4.7.0 && < 5.0.0 - bytestring >= 0.10.4 && < 0.12.0 - containers >= 0.4.2.1 && < 0.7.0 - - morpheus-graphql-core >= 0.24.0 && < 0.25.0 + - morpheus-graphql-core >= 0.25.0 && < 0.26.0 - prettyprinter >= 1.7.0 && < 2.0.0 - relude >= 0.3.0 && < 2.0.0 - text >= 1.2.3 && < 1.3.0 diff --git a/morpheus-graphql-code-gen/morpheus-graphql-code-gen.cabal b/morpheus-graphql-code-gen/morpheus-graphql-code-gen.cabal index aaae85ade..4785b468d 100644 --- a/morpheus-graphql-code-gen/morpheus-graphql-code-gen.cabal +++ b/morpheus-graphql-code-gen/morpheus-graphql-code-gen.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: morpheus-graphql-code-gen -version: 0.24.3 +version: 0.25.0 synopsis: Morpheus GraphQL CLI description: code generator for Morpheus GraphQL category: web, graphql, cli @@ -44,9 +44,9 @@ library , 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-code-gen-utils >=0.24.0 && <0.25.0 - , morpheus-graphql-core >=0.24.0 && <0.25.0 - , morpheus-graphql-server >=0.24.0 && <0.25.0 + , morpheus-graphql-code-gen-utils >=0.25.0 && <0.26.0 + , morpheus-graphql-core >=0.25.0 && <0.26.0 + , morpheus-graphql-server >=0.25.0 && <0.26.0 , prettyprinter >=1.7.0 && <2.0.0 , relude >=0.3.0 && <2.0.0 , template-haskell >=2.0.0 && <3.0.0 @@ -75,8 +75,8 @@ executable morpheus , morpheus-graphql-client , morpheus-graphql-code-gen , morpheus-graphql-code-gen-utils - , morpheus-graphql-core >=0.24.0 && <0.25.0 - , morpheus-graphql-server >=0.24.0 && <0.25.0 + , morpheus-graphql-core >=0.25.0 && <0.26.0 + , morpheus-graphql-server >=0.25.0 && <0.26.0 , optparse-applicative >=0.12.0 && <0.18.0 , prettyprinter >=1.7.0 && <2.0.0 , relude >=0.3.0 && <2.0.0 diff --git a/morpheus-graphql-code-gen/package.yaml b/morpheus-graphql-code-gen/package.yaml index 44fb2f0de..4e89789fc 100644 --- a/morpheus-graphql-code-gen/package.yaml +++ b/morpheus-graphql-code-gen/package.yaml @@ -1,5 +1,5 @@ name: morpheus-graphql-code-gen -version: 0.24.3 +version: 0.25.0 github: morpheusgraphql/morpheus-graphql license: BSD3 author: Daviti Nalchevanidze @@ -17,9 +17,9 @@ dependencies: - 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-core >= 0.24.0 && < 0.25.0 - - morpheus-graphql-code-gen-utils >= 0.24.0 && < 0.25.0 - - morpheus-graphql-server >= 0.24.0 && < 0.25.0 + - morpheus-graphql-core >= 0.25.0 && < 0.26.0 + - morpheus-graphql-code-gen-utils >= 0.25.0 && < 0.26.0 + - morpheus-graphql-server >= 0.25.0 && < 0.26.0 - prettyprinter >= 1.7.0 && < 2.0.0 - relude >= 0.3.0 && < 2.0.0 - text >= 1.2.3 && < 1.3.0 diff --git a/morpheus-graphql-core/morpheus-graphql-core.cabal b/morpheus-graphql-core/morpheus-graphql-core.cabal index ec8e18570..057483cbf 100644 --- a/morpheus-graphql-core/morpheus-graphql-core.cabal +++ b/morpheus-graphql-core/morpheus-graphql-core.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: morpheus-graphql-core -version: 0.24.3 +version: 0.25.0 synopsis: Morpheus GraphQL Core description: Build GraphQL APIs with your favorite functional language! category: web, graphql @@ -273,7 +273,7 @@ test-suite morpheus-graphql-core-test , hashable >=1.0.0 && <2.0.0 , megaparsec >=7.0.0 && <10.0.0 , morpheus-graphql-core - , morpheus-graphql-tests >=0.24.0 && <0.25.0 + , morpheus-graphql-tests >=0.25.0 && <0.26.0 , mtl >=2.0.0 && <3.0.0 , relude >=0.3.0 && <2.0.0 , scientific >=0.3.6.2 && <0.4.0 diff --git a/morpheus-graphql-core/package.yaml b/morpheus-graphql-core/package.yaml index 18cbd2a3f..9053755ee 100644 --- a/morpheus-graphql-core/package.yaml +++ b/morpheus-graphql-core/package.yaml @@ -1,5 +1,5 @@ name: morpheus-graphql-core -version: 0.24.3 +version: 0.25.0 github: nalchevanidze/morpheus-graphql license: MIT author: Daviti Nalchevanidze @@ -55,7 +55,7 @@ tests: - aeson >= 1.4.4 && < 3.0.0 - directory >= 1.0.0 && < 2.0.0 - morpheus-graphql-core - - morpheus-graphql-tests >= 0.24.0 && < 0.25.0 + - morpheus-graphql-tests >= 0.25.0 && < 0.26.0 - relude >= 0.3.0 && < 2.0.0 - tasty >= 0.1.0 && < 1.5.0 - tasty-hunit >= 0.1.0 && < 1.0.0 diff --git a/morpheus-graphql-server/morpheus-graphql-server.cabal b/morpheus-graphql-server/morpheus-graphql-server.cabal index 977cb162b..5baec75d4 100644 --- a/morpheus-graphql-server/morpheus-graphql-server.cabal +++ b/morpheus-graphql-server/morpheus-graphql-server.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: morpheus-graphql-server -version: 0.24.3 +version: 0.25.0 synopsis: Morpheus GraphQL description: Build GraphQL APIs with your favourite functional language! category: web, graphql @@ -276,9 +276,9 @@ source-repository head library exposed-modules: Data.Morpheus.Server + Data.Morpheus.Server.CodeGen.Internal Data.Morpheus.Server.Resolvers Data.Morpheus.Server.Types - Data.Morpheus.Server.CodeGen.Internal other-modules: Data.Morpheus.Server.Deriving.App Data.Morpheus.Server.Deriving.Channels @@ -321,8 +321,8 @@ library , 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.24.0 && <0.25.0 - , morpheus-graphql-core >=0.24.0 && <0.25.0 + , morpheus-graphql-app >=0.25.0 && <0.26.0 + , morpheus-graphql-core >=0.25.0 && <0.26.0 , mtl >=2.0.0 && <3.0.0 , relude >=0.3.0 && <2.0.0 , template-haskell >=2.0.0 && <3.0.0 @@ -366,11 +366,11 @@ test-suite morpheus-graphql-server-test , 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.24.0 && <0.25.0 - , morpheus-graphql-core >=0.24.0 && <0.25.0 + , morpheus-graphql-app >=0.25.0 && <0.26.0 + , morpheus-graphql-core >=0.25.0 && <0.26.0 , morpheus-graphql-server - , morpheus-graphql-subscriptions >=0.24.0 && <0.25.0 - , morpheus-graphql-tests >=0.24.0 && <0.25.0 + , morpheus-graphql-subscriptions >=0.25.0 && <0.26.0 + , morpheus-graphql-tests >=0.25.0 && <0.26.0 , mtl >=2.0.0 && <3.0.0 , relude >=0.3.0 && <2.0.0 , tasty >=0.1.0 && <1.5.0 diff --git a/morpheus-graphql-server/package.yaml b/morpheus-graphql-server/package.yaml index 0a1441dd8..351a82ec1 100644 --- a/morpheus-graphql-server/package.yaml +++ b/morpheus-graphql-server/package.yaml @@ -1,5 +1,5 @@ name: morpheus-graphql-server -version: 0.24.3 +version: 0.25.0 github: nalchevanidze/morpheus-graphql license: MIT author: Daviti Nalchevanidze @@ -22,8 +22,8 @@ dependencies: - bytestring >= 0.10.4 && < 0.12.0 - containers >= 0.4.2.1 && < 0.7.0 - mtl >= 2.0.0 && < 3.0.0 - - morpheus-graphql-core >= 0.24.0 && < 0.25.0 - - morpheus-graphql-app >= 0.24.0 && < 0.25.0 + - morpheus-graphql-core >= 0.25.0 && < 0.26.0 + - morpheus-graphql-app >= 0.25.0 && < 0.26.0 - relude >= 0.3.0 && < 2.0.0 - text >= 1.2.3 && < 1.3.0 - transformers >= 0.3.0 && < 0.6.0 @@ -34,20 +34,20 @@ library: source-dirs: src exposed-modules: - Data.Morpheus.Server + - Data.Morpheus.Server.CodeGen.Internal - Data.Morpheus.Server.Resolvers - Data.Morpheus.Server.Types - - Data.Morpheus.Server.CodeGen.Internal - ghc-options: "-Wall" + ghc-options: '-Wall' tests: morpheus-graphql-server-test: main: Spec.hs source-dirs: test - ghc-options: "-Wall" + ghc-options: '-Wall' dependencies: - aeson >= 1.4.4 && < 3.0.0 - file-embed >= 0.0.10 && < 1.0.0 - morpheus-graphql-server - - morpheus-graphql-tests >= 0.24.0 && < 0.25.0 - - morpheus-graphql-subscriptions >= 0.24.0 && < 0.25.0 + - morpheus-graphql-tests >= 0.25.0 && < 0.26.0 + - morpheus-graphql-subscriptions >= 0.25.0 && < 0.26.0 - tasty >= 0.1.0 && < 1.5.0 - tasty-hunit >= 0.1.0 && < 1.0.0 diff --git a/morpheus-graphql-subscriptions/morpheus-graphql-subscriptions.cabal b/morpheus-graphql-subscriptions/morpheus-graphql-subscriptions.cabal index f1b6c439c..06b026c86 100644 --- a/morpheus-graphql-subscriptions/morpheus-graphql-subscriptions.cabal +++ b/morpheus-graphql-subscriptions/morpheus-graphql-subscriptions.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: morpheus-graphql-subscriptions -version: 0.24.3 +version: 0.25.0 synopsis: Morpheus GraphQL Subscriptions description: Build GraphQL APIs with your favourite functional language! category: web, graphql, subscriptions @@ -43,8 +43,8 @@ library aeson >=1.4.4 && <3.0.0 , base >=4.7.0 && <5.0.0 , bytestring >=0.10.4 && <0.12.0 - , morpheus-graphql-app >=0.24.0 && <0.25.0 - , morpheus-graphql-core >=0.24.0 && <0.25.0 + , morpheus-graphql-app >=0.25.0 && <0.26.0 + , morpheus-graphql-core >=0.25.0 && <0.26.0 , mtl >=2.0.0 && <3.0.0 , relude >=0.3.0 && <2.0.0 , text >=1.2.3 && <1.3.0 diff --git a/morpheus-graphql-subscriptions/package.yaml b/morpheus-graphql-subscriptions/package.yaml index e28d66168..f3c58c189 100644 --- a/morpheus-graphql-subscriptions/package.yaml +++ b/morpheus-graphql-subscriptions/package.yaml @@ -1,5 +1,5 @@ name: morpheus-graphql-subscriptions -version: 0.24.3 +version: 0.25.0 github: nalchevanidze/morpheus-graphql license: MIT author: Daviti Nalchevanidze @@ -17,8 +17,8 @@ dependencies: - aeson >= 1.4.4 && < 3.0.0 - base >= 4.7.0 && < 5.0.0 - bytestring >= 0.10.4 && < 0.12.0 - - morpheus-graphql-core >= 0.24.0 && < 0.25.0 - - morpheus-graphql-app >= 0.24.0 && < 0.25.0 + - morpheus-graphql-core >= 0.25.0 && < 0.26.0 + - morpheus-graphql-app >= 0.25.0 && < 0.26.0 - mtl >= 2.0.0 && < 3.0.0 - relude >= 0.3.0 && < 2.0.0 - text >= 1.2.3 && < 1.3.0 diff --git a/morpheus-graphql-tests/morpheus-graphql-tests.cabal b/morpheus-graphql-tests/morpheus-graphql-tests.cabal index 3713385ae..cdb944171 100644 --- a/morpheus-graphql-tests/morpheus-graphql-tests.cabal +++ b/morpheus-graphql-tests/morpheus-graphql-tests.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: morpheus-graphql-tests -version: 0.24.3 +version: 0.25.0 synopsis: Morpheus GraphQL Test category: web, graphql, test homepage: https://morpheusgraphql.com diff --git a/morpheus-graphql-tests/package.yaml b/morpheus-graphql-tests/package.yaml index b92b5dc4d..e3cf0b629 100644 --- a/morpheus-graphql-tests/package.yaml +++ b/morpheus-graphql-tests/package.yaml @@ -1,5 +1,5 @@ name: morpheus-graphql-tests -version: 0.24.3 +version: 0.25.0 github: nalchevanidze/morpheus-graphql license: MIT author: Daviti Nalchevanidze diff --git a/morpheus-graphql/morpheus-graphql.cabal b/morpheus-graphql/morpheus-graphql.cabal index 933f913f1..b367c0a94 100644 --- a/morpheus-graphql/morpheus-graphql.cabal +++ b/morpheus-graphql/morpheus-graphql.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: morpheus-graphql -version: 0.24.3 +version: 0.25.0 synopsis: Morpheus GraphQL description: Build GraphQL APIs with your favourite functional language! category: web, graphql @@ -258,10 +258,10 @@ library , 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.24.0 && <0.25.0 - , morpheus-graphql-code-gen >=0.24.0 && <0.25.0 - , morpheus-graphql-core >=0.24.0 && <0.25.0 - , morpheus-graphql-server >=0.24.0 && <0.25.0 + , morpheus-graphql-app >=0.25.0 && <0.26.0 + , morpheus-graphql-code-gen >=0.25.0 && <0.26.0 + , morpheus-graphql-core >=0.25.0 && <0.26.0 + , morpheus-graphql-server >=0.25.0 && <0.26.0 , mtl >=2.0.0 && <3.0.0 , relude >=0.3.0 && <2.0.0 , template-haskell >=2.0.0 && <3.0.0 @@ -298,12 +298,12 @@ test-suite morpheus-graphql-test , bytestring >=0.10.4 && <0.12.0 , containers >=0.4.2.1 && <0.7.0 , morpheus-graphql - , morpheus-graphql-app >=0.24.0 && <0.25.0 - , morpheus-graphql-code-gen >=0.24.0 && <0.25.0 - , morpheus-graphql-core >=0.24.0 && <0.25.0 - , morpheus-graphql-server >=0.24.0 && <0.25.0 - , morpheus-graphql-subscriptions >=0.24.0 && <0.25.0 - , morpheus-graphql-tests >=0.24.0 && <0.25.0 + , morpheus-graphql-app >=0.25.0 && <0.26.0 + , morpheus-graphql-code-gen >=0.25.0 && <0.26.0 + , morpheus-graphql-core >=0.25.0 && <0.26.0 + , morpheus-graphql-server >=0.25.0 && <0.26.0 + , morpheus-graphql-subscriptions >=0.25.0 && <0.26.0 + , morpheus-graphql-tests >=0.25.0 && <0.26.0 , mtl >=2.0.0 && <3.0.0 , relude >=0.3.0 && <2.0.0 , tasty >=0.1.0 && <1.5.0 diff --git a/morpheus-graphql/package.yaml b/morpheus-graphql/package.yaml index ad4975d18..2abfcbc22 100644 --- a/morpheus-graphql/package.yaml +++ b/morpheus-graphql/package.yaml @@ -1,5 +1,5 @@ name: morpheus-graphql -version: 0.24.3 +version: 0.25.0 github: nalchevanidze/morpheus-graphql license: MIT author: Daviti Nalchevanidze @@ -22,10 +22,10 @@ dependencies: - bytestring >= 0.10.4 && < 0.12.0 - containers >= 0.4.2.1 && < 0.7.0 - mtl >= 2.0.0 && < 3.0.0 - - morpheus-graphql-code-gen >= 0.24.0 && < 0.25.0 - - morpheus-graphql-core >= 0.24.0 && < 0.25.0 - - morpheus-graphql-app >= 0.24.0 && < 0.25.0 - - morpheus-graphql-server >= 0.24.0 && < 0.25.0 + - morpheus-graphql-code-gen >= 0.25.0 && < 0.26.0 + - morpheus-graphql-core >= 0.25.0 && < 0.26.0 + - morpheus-graphql-app >= 0.25.0 && < 0.26.0 + - morpheus-graphql-server >= 0.25.0 && < 0.26.0 - relude >= 0.3.0 && < 2.0.0 - text >= 1.2.3 && < 1.3.0 - transformers >= 0.3.0 && < 0.6.0 @@ -49,8 +49,8 @@ tests: dependencies: - aeson >= 1.4.4 && < 3.0.0 - morpheus-graphql - - morpheus-graphql-server >= 0.24.0 && < 0.25.0 - - morpheus-graphql-tests >= 0.24.0 && < 0.25.0 - - morpheus-graphql-subscriptions >= 0.24.0 && < 0.25.0 + - morpheus-graphql-server >= 0.25.0 && < 0.26.0 + - morpheus-graphql-tests >= 0.25.0 && < 0.26.0 + - morpheus-graphql-subscriptions >= 0.25.0 && < 0.26.0 - tasty >= 0.1.0 && < 1.5.0 - tasty-hunit >= 0.1.0 && < 1.0.0 diff --git a/stack.yaml b/stack.yaml index b2fb1fe39..86c6fd073 100644 --- a/stack.yaml +++ b/stack.yaml @@ -1,15 +1,14 @@ -resolver: lts-18.10 +allow-newer: true +resolver: nightly-2022-10-10 save-hackage-creds: false packages: - examples/client - examples/code-gen - examples/code-gen-docs - examples/scotty - - examples/scotty-fraxl - examples/scotty-haxl - examples/scotty-freer-simple - examples/servant - - morpheus-graphql-benchmarks - morpheus-graphql-tests - morpheus-graphql-core - morpheus-graphql-code-gen-utils @@ -20,10 +19,6 @@ packages: - morpheus-graphql-server - morpheus-graphql extra-deps: - - dependent-map-0.2.4.0 - - dependent-sum-0.4 - - fastsum-0.1.1.1 - fraxl-0.3.0.0 - - graphql-0.11.1.0 - haxl-2.4.0.0 - type-aligned-0.9.6