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

fix(deps): update dependency com.graphql-java:graphql-java-extended-scalars to v18 #814

Merged
merged 2 commits into from
Apr 30, 2022
Merged
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 gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SOURCE_COMPATIBILITY=1.8
TARGET_COMPATIBILITY=1.8
### Dependencies
LIB_GRAPHQL_JAVA_VER=18.0
LIB_EXTENDED_SCALARS_VER=17.0
LIB_EXTENDED_SCALARS_VER=18.0
LIB_SPRING_BOOT_VER=2.6.7
LIB_GRAPHQL_SERVLET_VER=13.0.0-SNAPSHOT
LIB_GRAPHQL_JAVA_TOOLS_VER=12.0.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ void shouldThrowErrorOnStartupIfScalarDoesNotExists() {
"Scalar(s) 'BugDecimal' cannot be aliased."
+ " Only the following scalars can be aliased by configuration: BigDecimal,"
+ " BigInteger, Boolean, Byte, Char, Date, DateTime, Float, ID, Int, JSON,"
+ " Locale, Long, NegativeFloat, NegativeInt, NonNegativeFloat, NonNegativeInt,"
+ " LocalTime, Locale, Long, NegativeFloat, NegativeInt, NonNegativeFloat, NonNegativeInt,"
+ " NonPositiveFloat, NonPositiveInt, Object, PositiveFloat, PositiveInt, Short,"
+ " String, Time, Url. Note that custom scalar beans cannot be aliased this way.");
+ " String, Time, UUID, Url. Note that custom scalar beans cannot be aliased this way.");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ void shouldThrowErrorOnStartupIfExtendedScalarDoesNotExists() {
.isThrownBy(application::run)
.withMessage(
"Invalid extended scalar name(s) found: BadDecimal, Datee. Valid names are: BigDecimal, "
+ "BigInteger, Byte, Char, Date, DateTime, JSON, Locale, Long, NegativeFloat, NegativeInt, "
+ "BigInteger, Byte, Char, Date, DateTime, JSON, LocalTime, Locale, Long, NegativeFloat, NegativeInt, "
+ "NonNegativeFloat, NonNegativeInt, NonPositiveFloat, NonPositiveInt, Object, PositiveFloat, "
+ "PositiveInt, Short, Time, Url.");
+ "PositiveInt, Short, Time, UUID, Url.");
}

@Test
Expand Down