packages feed

graphql 1.5.0.1 → 1.5.0.2

raw patch · 3 files changed

+35/−22 lines, 3 filesdep ~containersPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: containers

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -6,6 +6,10 @@ and this project adheres to [Haskell Package Versioning Policy](https://pvp.haskell.org/). +## [1.5.0.2] - 2026-01-08+### Fixed+- Support GHC 9.14 and containers 0.8.+ ## [1.5.0.1] - 2025-06-19 ### Fixed - Allow any 2.x QuickCheck version.@@ -551,6 +555,7 @@ ### Added - Data types for the GraphQL language. +[1.5.0.2]: https://git.caraus.tech/OSS/graphql/compare/v1.5.0.1...v1.5.0.2 [1.5.0.1]: https://git.caraus.tech/OSS/graphql/compare/v1.5.0.0...v1.5.0.1 [1.5.0.0]: https://git.caraus.tech/OSS/graphql/compare/v1.4.0.0...v1.5.0.0 [1.4.0.0]: https://git.caraus.tech/OSS/graphql/compare/v1.3.0.0...v1.4.0.0
README.md view
@@ -2,11 +2,18 @@  See https://git.caraus.tech/OSS/graphql. +This is the core library that provides:++- Parser for the query and schema languages, as well as a printer for the query+  language (minimizer and pretty-printer).+- Data structures to define a type system.+- Executor (queries, mutations and subscriptions are supported).+- Validation.++## Documentation+ Report issues on the [bug tracker](https://git.caraus.tech/OSS/graphql/issues).  API documentation is available through [Hackage](https://hackage.haskell.org/package/graphql).--Further documentation will be made available in the-[Wiki](https://git.caraus.tech/OSS/graphql/wiki).
graphql.cabal view
@@ -1,27 +1,28 @@ cabal-version: 3.0 -name:           graphql-version:        1.5.0.1-synopsis:       Haskell GraphQL implementation-description:    Haskell <https://spec.graphql.org/June2018/ GraphQL> implementation.-category:       Language-homepage:       https://git.caraus.tech/OSS/graphql-bug-reports:    https://git.caraus.tech/OSS/graphql/issues-author:         Danny Navarro <j@dannynavarro.net>,-                Matthías Páll Gissurarson <mpg@mpg.is>,-                Sólrún Halla Einarsdóttir <she@mpg.is>-maintainer:     belka@caraus.de-copyright:      (c) 2019-2025 Eugen Wissner,-                (c) 2015-2017 J. Daniel Navarro-license:        MPL-2.0 AND BSD-3-Clause-license-files:  LICENSE,-                LICENSE.MPL-build-type:     Simple+name: graphql+version: 1.5.0.2+synopsis: Haskell GraphQL implementation+description: Haskell <https://spec.graphql.org/June2018/ GraphQL> implementation.+category: Language+homepage: https://git.caraus.tech/OSS/graphql+bug-reports: https://issues.caraus.tech/projects/graphql/issues+author: Danny Navarro <j@dannynavarro.net>,+        Matthías Páll Gissurarson <mpg@mpg.is>,+        Sólrún Halla Einarsdóttir <she@mpg.is>+maintainer: belka@caraus.de+copyright: (c) 2019-2026 Eugen Wissner,+           (c) 2015-2017 J. Daniel Navarro+license: MPL-2.0 AND BSD-3-Clause+license-files: LICENSE,+               LICENSE.MPL+build-type: Simple extra-source-files:   CHANGELOG.md   README.md tested-with:-  GHC == 9.10.1+  GHC == 9.12.2,+  GHC == 9.14.1  source-repository head   type: git@@ -58,7 +59,7 @@   build-depends:     base >= 4.15 && < 5,     conduit ^>= 1.3.4,-    containers >= 0.6 && < 0.8,+    containers >= 0.6 && < 0.9,     exceptions ^>= 0.10.4,     megaparsec >= 9.0 && < 10,     parser-combinators >= 1.3 && < 2,