Skip to content

Commit 9f1bcb1

Browse files
authored
Upgrade commons-lang to commons-lang3 (opensearch-project#1589)
Signed-off-by: Chloe Gao <[email protected]>
1 parent 4e1f5f3 commit 9f1bcb1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
3232

3333
- Remove commons-lang:commons-lang dependency and use gradle version catalog for commons-lang3 ([#1551](https://github.com/opensearch-project/neural-search/pull/1551))
3434
- Update Lucene101 codec path to backward path & force errorprone version to 2.21.1 to resolve conflict ([#1574](https://github.com/opensearch-project/neural-search/pull/1574))
35+
- Upgrade QA Gradle Dependency Version with commons-lang3 ([#1589](https://github.com/opensearch-project/neural-search/pull/1589))
3536

3637
### Refactoring

qa/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ dependencies {
4040
zipArchive group: 'org.opensearch.plugin', name:'opensearch-ml-plugin', version: "${opensearch_build}"
4141
compileOnly fileTree(dir: knnJarDirectory, include: ["opensearch-knn-${opensearch_build}.jar", "remote-index-build-client-${opensearch_build}.jar"])
4242
compileOnly group: 'com.google.guava', name: 'guava', version:'32.1.3-jre'
43-
compileOnly group: 'commons-lang', name: 'commons-lang', version: '2.6'
43+
compileOnly group: 'org.apache.commons', name: 'commons-lang3', version: "${versions.commonslang}"
4444
// json-path 2.9.0 depends on slf4j 2.0.11, which conflicts with the version used by OpenSearch core.
4545
// Excluding slf4j here since json-path is only used for testing, and logging failures in this context are acceptable.
4646
testRuntimeOnly('com.jayway.jsonpath:json-path:2.9.0') {

0 commit comments

Comments
 (0)