Releases: sangria-graphql/sangria
Releases · sangria-graphql/sangria
v2.1.3
v2.1.2
The version 2.1.1
was never published.
Main changes
- support for configuring max concurrent batches in fetcher (#612) @nickhudkins
- validate that different instances of
InputObjectType
with the same name are the same (#611) @yanns - Support implicit output type lookups for interface types. (#600) @ocordsen
- Support Args in ProjectedNames (#563) @nickhudkins
Those new features change the signature of the following classes:
sangria.schema.ProjectedName
sangria.schema.Args
sangria.execution.deferred.FetcherConfig
The changes use defaults to avoid breaking the compilation of your projects.
Other changes
- publish releases (#614) @yanns
- automate release (#613) @yanns
- Update refined to 0.9.23 (#609) @scala-steward
- Update sbt to 1.5.0 (#610) @scala-steward
- Update scalatest to 3.2.7 (#608) @scala-steward
- Update fs2-core to 2.5.4 (#606) @scala-steward
- Update refined to 0.9.22 (#605) @scala-steward
- Use slash-syntax instead of old in-syntax (#603) @sh0hei
- Update classgraph to 4.8.104 (#602) @scala-steward
- Update classgraph to 4.8.103 (#599) @scala-steward
- Update sbt to 1.4.9 (#598) @scala-steward
- Update scalatest to 3.2.6 (#595) @scala-steward
- Update sbt to 1.4.8 (#594) @scala-steward
- Update scalatest to 3.2.5 (#586) @scala-steward
- Update fs2-core to 2.5.3 (#587) @scala-steward
- Improved a little bit (#588) @sh0hei
- update Scala to 2.13.5 (#591) @sh0hei
- Update sbt-release to 1.0.15 (#590) @scala-steward
- Update refined to 0.9.21 (#584) @scala-steward
- Update fs2-core to 2.5.2 (#585) @scala-steward
- Update scalatest to 3.2.4 (#583) @scala-steward
- Update sbt-pgp to 2.1.2 (#580) @scala-steward
- Removed the dependence of sbt-plugins on Bintray (#579) @sh0hei
- Update sbt to 1.4.7 (#574) @scala-steward
- Update classgraph to 4.8.102 (#570) @scala-steward
- Update sbt-github-actions to 0.10.1 (#565) @scala-steward
- Update Scala 2.12.12 to 2.12.13 (#562) @sh0hei
- Assorted Refactorings Part 2 (#536) @nickhudkins
- Update refined to 0.9.20 (#561) @scala-steward
- check binary compatibility (#552) @yanns
v2.1.0
What’s Changed
- Correctly resolve member types of type-parameterized classes (#527) @nickhudkins
- Remove Scala 2.11 Support 🔥 (#533) @nickhudkins
- Lazy Union Types (#534) @nickhudkins
This last change is not binary compatible. The signature ofUnionType
has changed from:
case class UnionType[Ctx](
types: List[ObjectType[Ctx, _]],
to
case class UnionType[Ctx](
typesFn: () => List[ObjectType[Ctx, _]],
Existing codebase should still compile through the appropriate apply
function.
Full changelog
- Update classgraph to 4.8.98 (#554) @scala-steward
- Update sangria-streaming-api to 1.0.2 (#560) @scala-steward
- Update sangria-marshalling-api to 1.0.5 (#559) @scala-steward
- Update macro-visit to 0.1.3 (#558) @scala-steward
- Update sbt to 1.4.6 (#555) @scala-steward
- fix some warnings (#553) @yanns
- Update classgraph to 4.8.97 (#550) @scala-steward
- Update fs2-core to 2.5.0 (#551) @scala-steward
- Scalafmt (#548) @yanns
- use github actions (#547) @yanns
- Update classgraph to 4.8.95 (#544) @scala-steward
- Update sbt to 1.4.5 (#545) @scala-steward
- Update fs2-core to 2.4.6 (#537) @scala-steward
- Update classgraph to 4.8.94 (#535) @scala-steward
- Update sbt-pgp to 2.1.1 (#538) @scala-steward
- Update refined to 0.9.19 (#539) @scala-steward
- Update classgraph to 4.8.94 (#540) @scala-steward
- Update parboiled to 2.2.1 (#541) @scala-steward
- Update sbt to 1.4.4 (#542) @scala-steward
- Update scalatest to 3.2.3 (#543) @scala-steward
- Assorted refactorings (#404) @nightscape
- Update sbt-mima-plugin to 0.8.1 (#526) @scala-steward
- Update sbt-pgp to 2.0.2 (#530) @scala-steward
- Travis CI (#532) @nickhudkins
v2.0.1
What’s Changed
Main changes
Other changes
- ensure emitting jvm 8 bytecode (#522) @yanns
- scalatest 3.2.2 (#519) @yanns
- scala 2.13.3 (#518) @yanns
- Update sbt to 1.3.13 (#501) @scala-steward
- Fix broken website links in README (#516) @anagrius
- Update scalatest to 3.1.4 (#510) @scala-steward
- Update sbt-jmh to 0.4.0 (#511) @scala-steward
- Update sbt-mima-plugin to 0.8.0 (#512) @scala-steward
v2.0.0
Important changes from 1.x version
from https://github.com/sangria-graphql-org/sangria/releases/tag/v2.0.0-M1
- support Scala 2.13 @travisbrown
from https://github.com/sangria-graphql-org/sangria/releases/tag/v2.0.0-M2
- Use AstSchemaBuilder from args rather the default one (#6) @Axxiss
- Apply max batch size to relation (#7) @maxperrimond
- Rename 'oldFiledType' to 'oldFieldType' in SchemaComparator (#13) @Axxiss
- [Experimental] Faster version of the field selection merging validation (#12) @SimonAdameit
Check the PR description to see how this new faster merging validation can be activated in your project. Depending on the feedback, this could become the default merging validation logic in the future.
from https://github.com/sangria-graphql-org/sangria/releases/tag/v2.0.0-M4
- Validation for non-breakable chains of circular references in Input Objects (#48) @nikola-mladenovic
- GraphQLOutputType and GraphQLInputType annotationsField type override annotations (#36) @khoberg
from v2.0.0-RC1
- scala 2.13.2 (#63) @yanns
- Add macro support for @GraphQLInputType annotation for method arguments (#59) @khoberg
from v2.0.0-RC2
v2.0.0-RC2
Important changes from 1.x version
from https://github.com/sangria-graphql-org/sangria/releases/tag/v2.0.0-M1
- support Scala 2.13
from https://github.com/sangria-graphql-org/sangria/releases/tag/v2.0.0-M2
- Use AstSchemaBuilder from args rather the default one (#6) @Axxiss
- Apply max batch size to relation (#7) @maxperrimond
- Rename 'oldFiledType' to 'oldFieldType' in SchemaComparator (#13) @Axxiss
- [Experimental] Faster version of the field selection merging validation (#12) @SimonAdameit
Check the PR description to see how this new faster merging validation can be activated in your project. Depending on the feedback, this could become the default merging validation logic in the future.
from https://github.com/sangria-graphql-org/sangria/releases/tag/v2.0.0-M4
- Validation for non-breakable chains of circular references in Input Objects (#48) @nikola-mladenovic
- GraphQLOutputType and GraphQLInputType annotationsField type override annotations (#36) @khoberg