Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gsp-graphql-core to 0.14.0 #556

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gen/rules/src/main/scala/clue/gen/SchemaGen.scala
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ trait SchemaGen extends Generator {
q"def ignoreUnusedImportEnums(): Unit = ()" +: parentBody
) ++
schema.types
.collect { case EnumType(name, _, values) => Enum(name, values.map(_.name)) }
.collect { case EnumType(name, _, values, _) => Enum(name, values.map(_.name)) }
.map(
_.addToParentBody(
config.catsEq,
Expand Down
2 changes: 1 addition & 1 deletion project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ object Settings {
val circe = "0.14.5"
val disciplineMUnit = "1.0.9"
val fs2 = "3.10.0"
val grackle = "0.13.0"
val grackle = "0.14.0"
val http4s = "0.23.26"
val http4sDom = "0.2.7"
val http4sJDKClient = "0.9.1"
Expand Down
Loading