Skip to content

Commit

Permalink
Merge branch 'dev' into feature/DT-55-persist-pattern-names
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Beer authored and Robin Beer committed Aug 31, 2023
2 parents e264342 + c348533 commit d84ffc3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 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
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.0-jre</version>
<version>32.0.0-jre</version>
</dependency>
<dependency>
<groupId>org.locationtech.jts</groupId>
Expand Down Expand Up @@ -296,7 +296,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>1.11.18</version>
<version>1.12.261</version>
</dependency>
<!-- Very efficient collections of primitive data types for Java. -->
<dependency>
Expand All @@ -314,7 +314,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.25</version>
<version>42.4.3</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand All @@ -331,13 +331,13 @@
<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>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.6</version>
<version>1.10.0</version>
</dependency>
</dependencies>
</project>
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
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public List<Map<String, Object>> get (DataFetchingEnvironment environment) {
* Handle fetching functionality for a given namespace, set of join values, and arguments. This is broken out from
* the standard get function so that it can be reused in other fetchers (i.e., NestedJdbcFetcher)
*/
List<Map<String, Object>> getResults (
public List<Map<String, Object>> getResults (
String namespace,
List<String> parentJoinValues,
Map<String, Object> graphQLQueryArguments
Expand Down

0 comments on commit d84ffc3

Please sign in to comment.