Skip to content

Commit

Permalink
Merge pull request #258 from gemini-hlsw/grackle-0.20
Browse files Browse the repository at this point in the history
grackle 0.20
  • Loading branch information
tpolecat authored Jun 7, 2024
2 parents 1699e4b + 38298f0 commit 7de75e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ThisBuild / tlBaseVersion := "0.8"

val clueVersion = "0.35.4"
val fs2Version = "3.2.7"
val grackleVersion = "0.19.1"
val grackleVersion = "0.20.0"
val http4sVersion = "0.23.27"
val kindProjectorVersion = "0.13.2"
val log4catsVersion = "2.7.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ object ValidationMapping extends CirceMapping[IO]:
type Query { foo: Int }
type Subscription { bar: Int }
"""
val typeMappings = TypeMappings.unsafe()
val typeMappings = TypeMappings.unchecked()

class ValidationSuite extends BaseSuite:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ object VariablesMapping extends CirceMapping[IO]:
"""
val QueryType = schema.ref("Query")
val SubscriptionType = schema.ref("Subscription")
val typeMappings = TypeMappings.unsafe(
val typeMappings = TypeMappings.unchecked(
ObjectMapping(QueryType, List(
CursorFieldJson("echo", c => c.envR[String]("s").map(Json.fromString), Nil)
)),
Expand Down

0 comments on commit 7de75e4

Please sign in to comment.