Skip to content

Commit 65630d0

Browse files
committed
Merge branch 'master' into live-insight
2 parents 3ea86f1 + a827803 commit 65630d0

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

Insomnia.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ dependencies {
8787
kapt("io.vertx:vertx-codegen:$vertxVersion:processor")
8888
compileOnly("io.vertx:vertx-codegen:$vertxVersion")
8989

90-
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.0")
90+
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.1")
9191
}
9292

9393
tasks.withType<JavaCompile> {

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
kotlin.code.style=official
22

3-
projectVersion=0.7.9-SNAPSHOT
3+
projectVersion=0.7.10-SNAPSHOT
44

55
kotlinVersion=1.8.22
66
vertxVersion=4.4.4
77
jacksonVersion=2.15.2
88
joorVersion=0.9.14
9-
jupiterVersion=5.9.3
9+
jupiterVersion=5.10.0

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ pluginManagement {
44
id 'org.jetbrains.kotlin.jvm' version kotlinVersion apply false
55
id 'org.jetbrains.kotlin.kapt' version kotlinVersion apply false
66
id 'org.jetbrains.kotlin.plugin.noarg' version kotlinVersion apply false
7-
id 'com.diffplug.spotless' version '6.19.0' apply false
8-
id 'io.gitlab.arturbosch.detekt' version "1.23.0" apply false
7+
id 'com.diffplug.spotless' version '6.20.0' apply false
8+
id 'io.gitlab.arturbosch.detekt' version "1.23.1" apply false
99
}
1010
}
1111

src/main/resources/graphql/manage/get-config-value.graphql

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
query getConfigurationValue($config: String!){
2+
getConfigurationValue(config: $config)
3+
}

src/main/resources/graphql/manage/set-config-value.graphql

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
mutation setConfigurationValue($config: String!, $value: String!) {
2+
setConfigurationValue(config: $config, value: $value)
3+
}

src/main/resources/graphql/schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4825,7 +4825,7 @@
48254825
"deprecationReason": null
48264826
},
48274827
{
4828-
"name": "setConfigValue",
4828+
"name": "setConfigurationValue",
48294829
"description": null,
48304830
"args": [
48314831
{
@@ -6190,7 +6190,7 @@
61906190
"deprecationReason": null
61916191
},
61926192
{
6193-
"name": "getConfigValue",
6193+
"name": "getConfigurationValue",
61946194
"description": null,
61956195
"args": [
61966196
{

0 commit comments

Comments
 (0)