Skip to content

Commit d58680c

Browse files
committed
2 parents de1a35b + 7262ec0 commit d58680c

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
3636
### Maintenance
3737
- Bump `org.eclipse.platform:org.eclipse.core.runtime` from 3.33.0 to 3.33.100 ([#5400](https://github.com/opensearch-project/security/pull/5400))
3838
- Bump `org.eclipse.platform:org.eclipse.equinox.common` from 3.20.0 to 3.20.100 ([#5402](https://github.com/opensearch-project/security/pull/5402))
39-
- Bump `spring_version` from 6.2.7 to 6.2.8 ([#5403](https://github.com/opensearch-project/security/pull/5403))
39+
- Bump `spring_version` from 6.2.7 to 6.2.9 ([#5403](https://github.com/opensearch-project/security/pull/5403), [#5493](https://github.com/opensearch-project/security/pull/5493))
4040
- Bump `stefanzweifel/git-auto-commit-action` from 5 to 6 ([#5401](https://github.com/opensearch-project/security/pull/5401))
4141
- Bump `com.github.spotbugs` from 5.2.5 to 6.2.2 ([#5409](https://github.com/opensearch-project/security/pull/5409), [#5450](https://github.com/opensearch-project/security/pull/5450), [#5474](https://github.com/opensearch-project/security/pull/5474))
4242
- Bump `org.codehaus.plexus:plexus-utils` from 3.3.0 to 3.6.0 ([#5429](https://github.com/opensearch-project/security/pull/5429))
@@ -50,6 +50,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5050
- Bump `com.google.googlejavaformat:google-java-format` from 1.27.0 to 1.28.0 ([#5475](https://github.com/opensearch-project/security/pull/5475))
5151
- Bump `commons-validator:commons-validator` from 1.9.0 to 1.10.0 ([#5476](https://github.com/opensearch-project/security/pull/5476))
5252
- Bumps checkstyle to 10.26.1 that fixes CVE-2025-48734 ([#5485](https://github.com/opensearch-project/security/pull/5485))
53+
- Bump `commons-io:commons-io` from 2.19.0 to 2.20.0 ([#5494](https://github.com/opensearch-project/security/pull/5494))
54+
- Bump `org.xerial.snappy:snappy-java` from 1.1.10.7 to 1.1.10.8 ([#5495](https://github.com/opensearch-project/security/pull/5495))
5355

5456
### Documentation
5557

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ buildscript {
3333
jjwt_version = '0.12.6'
3434
guava_version = '33.4.8-jre'
3535
jaxb_version = '2.3.9'
36-
spring_version = '6.2.8'
36+
spring_version = '6.2.9'
3737

3838
if (buildVersionQualifier) {
3939
opensearch_build += "-${buildVersionQualifier}"
@@ -464,7 +464,7 @@ configurations {
464464
force "io.netty:netty-transport:${versions.netty}"
465465
force "io.netty:netty-transport-native-unix-common:${versions.netty}"
466466
force "com.github.luben:zstd-jni:${versions.zstd}"
467-
force "org.xerial.snappy:snappy-java:1.1.10.7"
467+
force "org.xerial.snappy:snappy-java:1.1.10.8"
468468
force "com.google.guava:guava:${guava_version}"
469469

470470
// for spotbugs dependency conflict
@@ -484,7 +484,7 @@ configurations {
484484
force "com.google.errorprone:error_prone_annotations:2.40.0"
485485
force "org.checkerframework:checker-qual:3.49.5"
486486
force "ch.qos.logback:logback-classic:1.5.18"
487-
force "commons-io:commons-io:2.19.0"
487+
force "commons-io:commons-io:2.20.0"
488488
force "com.carrotsearch.randomizedtesting:randomizedtesting-runner:2.8.3"
489489
force "org.hamcrest:hamcrest:2.2"
490490
force "org.mockito:mockito-core:5.18.0"
@@ -531,7 +531,7 @@ allprojects {
531531
exclude(group: 'org.slf4j', module: 'slf4j-api')
532532
}
533533
integrationTestImplementation "org.opensearch.plugin:percolator-client:${opensearch_version}"
534-
integrationTestImplementation 'commons-io:commons-io:2.19.0'
534+
integrationTestImplementation 'commons-io:commons-io:2.20.0'
535535
integrationTestImplementation "org.apache.logging.log4j:log4j-core:${versions.log4j}"
536536
integrationTestImplementation "org.apache.logging.log4j:log4j-jul:${versions.log4j}"
537537
integrationTestImplementation 'org.hamcrest:hamcrest:2.2'
@@ -708,7 +708,7 @@ dependencies {
708708
runtimeOnly 'org.lz4:lz4-java:1.8.0'
709709
runtimeOnly 'org.slf4j:slf4j-api:1.7.36'
710710
runtimeOnly "org.apache.logging.log4j:log4j-slf4j-impl:${versions.log4j}"
711-
runtimeOnly 'org.xerial.snappy:snappy-java:1.1.10.7'
711+
runtimeOnly 'org.xerial.snappy:snappy-java:1.1.10.8'
712712
runtimeOnly 'org.codehaus.woodstox:stax2-api:4.2.2'
713713
runtimeOnly "org.glassfish.jaxb:txw2:${jaxb_version}"
714714
runtimeOnly 'com.fasterxml.woodstox:woodstox-core:6.7.0'
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Version 2.19.3 Release Notes
2+
3+
Compatible with OpenSearch and OpenSearch Dashboards version 2.19.3
4+
5+
### Maintenance
6+
- Bump `com.nimbusds:nimbus-jose-jwt:9.48` from 9.48 to 10.0.2 ([#5480](https://github.com/opensearch-project/security/pull/5480))
7+
- Bump `checkstyle` from 10.3.3 to 10.26.1 ([#5480](https://github.com/opensearch-project/security/pull/5480))

0 commit comments

Comments
 (0)