Skip to content

Commit

Permalink
Merge pull request #35 from kulkarnianiket/upgrade-graphql-java
Browse files Browse the repository at this point in the history
Upgrade graphql-java to 20.4
  • Loading branch information
ashpak-shaikh authored Oct 5, 2023
2 parents 5fb5a4f + 7071df4 commit eea199e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
<properties>
<junit5.version>5.5.0</junit5.version>
<lombok.version>1.18.8</lombok.version>
<graphql-java.version>17.4</graphql-java.version>
<graphql-java.version>20.4</graphql-java.version>
<jacoco.enabled>true</jacoco.enabled>
<jacoco.version>0.8.4</jacoco.version>
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
<jackson.version>2.13.4</jackson.version>
<jackson.version>2.13.5</jackson.version>
</properties>

<profiles>
Expand Down Expand Up @@ -199,7 +199,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>29.0-jre</version>
<version>32.0.0-jre</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public void authzWithInvalidFieldTest() {
assertTrue(result.getErrors().size() == 1);
assertNull(result.getData());
assertTrue(result.getErrors().get(0).getMessage().contains(
"Validation error of type FieldUndefined: Field 'userName' in type 'Book' is undefined @ 'bookById/userName'"));
"Validation error (FieldUndefined@[bookById/userName]) : Field 'userName' in type 'Book' is undefined"));
}

@Test
Expand Down

0 comments on commit eea199e

Please sign in to comment.