Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit a7f44e2

Browse files
authored
Merge pull request #814 from m1ngyuan/fixes_804
fix(deps): update dependency com.graphql-java:graphql-java-extended-scalars to v18
2 parents e1962eb + cd7e7f7 commit a7f44e2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ SOURCE_COMPATIBILITY=1.8
3030
TARGET_COMPATIBILITY=1.8
3131
### Dependencies
3232
LIB_GRAPHQL_JAVA_VER=18.0
33-
LIB_EXTENDED_SCALARS_VER=17.0
33+
LIB_EXTENDED_SCALARS_VER=18.0
3434
LIB_SPRING_BOOT_VER=2.6.7
3535
LIB_GRAPHQL_SERVLET_VER=13.0.0-SNAPSHOT
3636
LIB_GRAPHQL_JAVA_TOOLS_VER=12.0.2

graphql-spring-boot-autoconfigure/src/test/java/graphql/kickstart/autoconfigure/web/servlet/test/aliasedscalars/AliasedScalarsIncorrectConfigurationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ void shouldThrowErrorOnStartupIfScalarDoesNotExists() {
3434
"Scalar(s) 'BugDecimal' cannot be aliased."
3535
+ " Only the following scalars can be aliased by configuration: BigDecimal,"
3636
+ " BigInteger, Boolean, Byte, Char, Date, DateTime, Float, ID, Int, JSON,"
37-
+ " Locale, Long, NegativeFloat, NegativeInt, NonNegativeFloat, NonNegativeInt,"
37+
+ " LocalTime, Locale, Long, NegativeFloat, NegativeInt, NonNegativeFloat, NonNegativeInt,"
3838
+ " NonPositiveFloat, NonPositiveInt, Object, PositiveFloat, PositiveInt, Short,"
39-
+ " String, Time, Url. Note that custom scalar beans cannot be aliased this way.");
39+
+ " String, Time, UUID, Url. Note that custom scalar beans cannot be aliased this way.");
4040
}
4141

4242
@Test

graphql-spring-boot-autoconfigure/src/test/java/graphql/kickstart/autoconfigure/web/servlet/test/extendedscalars/ExtendedScalarsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ void shouldThrowErrorOnStartupIfExtendedScalarDoesNotExists() {
3131
.isThrownBy(application::run)
3232
.withMessage(
3333
"Invalid extended scalar name(s) found: BadDecimal, Datee. Valid names are: BigDecimal, "
34-
+ "BigInteger, Byte, Char, Date, DateTime, JSON, Locale, Long, NegativeFloat, NegativeInt, "
34+
+ "BigInteger, Byte, Char, Date, DateTime, JSON, LocalTime, Locale, Long, NegativeFloat, NegativeInt, "
3535
+ "NonNegativeFloat, NonNegativeInt, NonPositiveFloat, NonPositiveInt, Object, PositiveFloat, "
36-
+ "PositiveInt, Short, Time, Url.");
36+
+ "PositiveInt, Short, Time, UUID, Url.");
3737
}
3838

3939
@Test

0 commit comments

Comments
 (0)