From fc2e9d83588571960fbf9d5322c8bbba34843c52 Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Tue, 6 Dec 2022 08:24:33 +0700 Subject: [PATCH] Updated the dgs framework --- dgs-graphql/build.gradle.kts | 2 +- .../kotlin/com/cubetiqs/graphql/demo/GraphqlDemoApplication.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dgs-graphql/build.gradle.kts b/dgs-graphql/build.gradle.kts index 1d0b0de..1014baa 100644 --- a/dgs-graphql/build.gradle.kts +++ b/dgs-graphql/build.gradle.kts @@ -10,7 +10,7 @@ plugins { dependencies { api(project(":cubetiq-security-web")) - implementation(platform("com.netflix.graphql.dgs:graphql-dgs-platform-dependencies:5.4.3")) + implementation(platform("com.netflix.graphql.dgs:graphql-dgs-platform-dependencies:5.4.5")) implementation("com.netflix.graphql.dgs:graphql-dgs-spring-boot-starter") runtimeOnly("com.netflix.graphql.dgs:graphql-dgs-subscriptions-websockets-autoconfigure") diff --git a/dgs-graphql/src/main/kotlin/com/cubetiqs/graphql/demo/GraphqlDemoApplication.kt b/dgs-graphql/src/main/kotlin/com/cubetiqs/graphql/demo/GraphqlDemoApplication.kt index 6df0ef9..c83ba17 100644 --- a/dgs-graphql/src/main/kotlin/com/cubetiqs/graphql/demo/GraphqlDemoApplication.kt +++ b/dgs-graphql/src/main/kotlin/com/cubetiqs/graphql/demo/GraphqlDemoApplication.kt @@ -8,7 +8,7 @@ import org.springframework.security.crypto.password.PasswordEncoder @SpringBootApplication class GraphqlDemoApplication @Autowired constructor( - private val passwordEncoder: PasswordEncoder, + passwordEncoder: PasswordEncoder, ) { init { PasswordUtils.setEncoder(passwordEncoder)