Skip to content

Commit c49ec10

Browse files
Update Mend: high confidence minor and patch dependency updates
1 parent 47871c3 commit c49ec10

File tree

27 files changed

+495
-82
lines changed

27 files changed

+495
-82
lines changed

distribution/tools/ansi-console/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies {
1818
testImplementation project(":test:framework")
1919

2020
// multi-platform (Windows too) terminal detection and output formatting
21-
api "org.fusesource.jansi:jansi:2.4.0"
21+
api "org.fusesource.jansi:jansi:2.4.1"
2222
}
2323

2424
// the code and tests in this project cover console initialization

distribution/tools/geoip-cli/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ dependencies {
1818
compileOnly project(":libs:elasticsearch-cli")
1919
compileOnly project(":libs:elasticsearch-x-content")
2020
testImplementation project(":test:framework")
21-
testImplementation "org.apache.commons:commons-compress:1.26.1"
22-
testImplementation "commons-io:commons-io:2.15.1"
21+
testImplementation "org.apache.commons:commons-compress:1.27.1"
22+
testImplementation "commons-io:commons-io:2.18.0"
2323
}

distribution/tools/plugin-cli/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ dependencies {
2525
implementation project(":libs:elasticsearch-plugin-api")
2626
implementation project(":libs:elasticsearch-plugin-scanner")
2727
// TODO: asm is picked up from the plugin scanner, we should consolidate so it is not defined twice
28-
implementation 'org.ow2.asm:asm:9.7'
29-
implementation 'org.ow2.asm:asm-tree:9.7'
28+
implementation 'org.ow2.asm:asm:9.7.1'
29+
implementation 'org.ow2.asm:asm-tree:9.7.1'
3030

3131
api "org.bouncycastle:bcpg-fips:1.0.7.1"
3232
api "org.bouncycastle:bc-fips:1.0.2.4"

gradle/build.versions.toml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,49 @@
11
[versions]
2-
asm = "9.6"
3-
jackson = "2.15.0"
4-
junit5 = "5.8.1"
2+
asm = "9.7.1"
3+
jackson = "2.18.1"
4+
junit5 = "5.11.3"
55
spock = "2.1-groovy-3.0"
66

77
[libraries]
8-
ant = "org.apache.ant:ant:1.10.12"
8+
ant = "org.apache.ant:ant:1.10.15"
99
antlrst4 = "org.antlr:ST4:4.3.4"
10-
apache-compress = "org.apache.commons:commons-compress:1.26.1"
10+
apache-compress = "org.apache.commons:commons-compress:1.27.1"
1111
apache-rat = "org.apache.rat:apache-rat:0.11"
1212
asm = { group = "org.ow2.asm", name="asm", version.ref="asm" }
1313
asm-tree = { group = "org.ow2.asm", name="asm-tree", version.ref="asm" }
14-
bytebuddy = "net.bytebuddy:byte-buddy:1.14.12"
15-
checkstyle = "com.puppycrawl.tools:checkstyle:10.3"
16-
commons-codec = "commons-codec:commons-codec:1.11"
17-
commmons-io = "commons-io:commons-io:2.2"
14+
bytebuddy = "net.bytebuddy:byte-buddy:1.15.10"
15+
checkstyle = "com.puppycrawl.tools:checkstyle:10.20.1"
16+
commons-codec = "commons-codec:commons-codec:1.17.1"
17+
commmons-io = "commons-io:commons-io:2.18.0"
1818
docker-compose = "com.avast.gradle:gradle-docker-compose-plugin:0.17.5"
1919
forbiddenApis = "de.thetaphi:forbiddenapis:3.6"
2020
gradle-enterprise = "com.gradle:develocity-gradle-plugin:3.17.4"
2121
hamcrest = "org.hamcrest:hamcrest:2.1"
22-
httpcore = "org.apache.httpcomponents:httpcore:4.4.12"
22+
httpcore = "org.apache.httpcomponents:httpcore:4.4.16"
2323
httpclient = "org.apache.httpcomponents:httpclient:4.5.14"
24-
idea-ext = "gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:1.1.4"
25-
javaparser = "com.github.javaparser:javaparser-core:3.18.0"
24+
idea-ext = "gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:1.1.9"
25+
javaparser = "com.github.javaparser:javaparser-core:3.26.2"
2626
json-schema-validator = "com.networknt:json-schema-validator:1.0.72"
27-
json-assert = "org.skyscreamer:jsonassert:1.5.0"
27+
json-assert = "org.skyscreamer:jsonassert:1.5.3"
2828
jackson-core = { group = "com.fasterxml.jackson.core", name="jackson-core", version.ref="jackson" }
2929
jackson-databind = { group = "com.fasterxml.jackson.core", name="jackson-databind", version.ref="jackson" }
3030
jackson-dataformat-yaml = { group = "com.fasterxml.jackson.dataformat", name="jackson-dataformat-yaml", version.ref="jackson" }
3131
jackson-platform = { group = "com.fasterxml.jackson", name="jackson-bom", version.ref="jackson" }
32-
jna = "net.java.dev.jna:jna:5.10.0"
32+
jna = "net.java.dev.jna:jna:5.15.0"
3333
junit = "junit:junit:4.13.2"
3434
junit5-platform = { group = "org.junit", name="junit-bom", version.ref="junit5" }
3535
junit5-jupiter = { group = "org.junit.jupiter", name="junit-jupiter", version.ref="junit5" }
36-
junit5-platform-launcher = "org.junit.platform:junit-platform-launcher:1.8.1"
36+
junit5-platform-launcher = "org.junit.platform:junit-platform-launcher:1.11.3"
3737
junit5-vintage = { group = "org.junit.vintage", name="junit-vintage-engine", version.ref="junit5" }
38-
maven-model = "org.apache.maven:maven-model:3.6.2"
38+
maven-model = "org.apache.maven:maven-model:3.9.9"
3939
mockito-core = "org.mockito:mockito-core:1.9.5"
4040
nebula-info = "com.netflix.nebula:gradle-info-plugin:11.3.3"
41-
reflections = "org.reflections:reflections:0.9.12"
41+
reflections = "org.reflections:reflections:0.10.2"
4242
shadow-plugin = "com.github.breskeby:shadow:3b035f2"
43-
snakeyaml = { group = "org.yaml", name = "snakeyaml", version = { strictly = "2.0" } }
43+
snakeyaml = { group = "org.yaml", name = "snakeyaml", version = { strictly = "2.3" } }
4444
spock-core = { group = "org.spockframework", name="spock-core", version.ref="spock" }
4545
spock-junit4 = { group = "org.spockframework", name="spock-junit4", version.ref="spock" }
4646
spock-platform = { group = "org.spockframework", name="spock-bom", version.ref="spock" }
4747
spotless-plugin = "com.diffplug.spotless:spotless-plugin-gradle:6.25.0"
48-
wiremock = "com.github.tomakehurst:wiremock-jre8-standalone:2.23.2"
49-
xmlunit-core = "org.xmlunit:xmlunit-core:2.8.2"
48+
wiremock = "com.github.tomakehurst:wiremock-jre8-standalone:2.35.2"
49+
xmlunit-core = "org.xmlunit:xmlunit-core:2.10.0"

0 commit comments

Comments
 (0)