Skip to content

Commit

Permalink
Merge pull request #364 from conveyal/dependabot/maven/com.graphql-ja…
Browse files Browse the repository at this point in the history
…va-graphql-java-17.4

chore(deps): bump graphql-java from 11.0 to 17.4
  • Loading branch information
Robin Beer authored Aug 21, 2023
2 parents 57e3219 + 2baafb5 commit 1b1c2a8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 1.8
# Install node 14+ for running maven-semantic-release.
# Install node 18+ for running maven-semantic-release.
- name: Use Node.js 18.X
uses: actions/setup-node@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@
<dependency>
<groupId>com.graphql-java</groupId>
<artifactId>graphql-java</artifactId>
<version>11.0</version>
<version>17.4</version>
</dependency>
<!-- Contains special utils for things like converting escaped strings to unescaped strings for logging. -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,12 @@ public class GraphQLGtfsSchema {
.field(MapFetcher.field("description"))
.build();

private static final GraphQLScalarType stringList = new GraphQLScalarType("StringList", "List of Strings", new StringCoercing());
private static final GraphQLScalarType stringList = GraphQLScalarType
.newScalar()
.name("StringList")
.description("List of Strings")
.coercing(new StringCoercing())
.build();

// Represents GTFS Editor service exceptions.
public static final GraphQLObjectType scheduleExceptionType = newObject().name("scheduleException")
Expand Down

0 comments on commit 1b1c2a8

Please sign in to comment.