Skip to content

Commit

Permalink
[1.2] Bump log4j to 2.16 and plugin to 1.2.2 (#337)
Browse files Browse the repository at this point in the history
* [1.2] Bump log4j to 2.16 and plugin to 1.2.2

Signed-off-by: Joshua Li <[email protected]>

* Add release notes

Signed-off-by: Joshua Li <[email protected]>
  • Loading branch information
joshuali925 authored Dec 15, 2021
1 parent 89f4642 commit a8edf6c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sql-test-and-build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: SQL Java CI
on: [push, pull_request]

env:
OPENSEARCH_VERSION: '1.2.1-SNAPSHOT'
OPENSEARCH_VERSION: '1.2.2-SNAPSHOT'

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

buildscript {
ext {
opensearch_version = System.getProperty("opensearch.version", "1.2.1-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "1.2.2-SNAPSHOT")
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies {
compile "org.antlr:antlr4-runtime:4.7.1"
// https://github.com/google/guava/wiki/CVE-2018-10237
compile group: 'com.google.guava', name: 'guava', version: '29.0-jre'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version:'2.15.0'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version:'2.16.0'

testCompile group: 'junit', name: 'junit', version: '4.12'
}
2 changes: 1 addition & 1 deletion integ-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dependencies {
testCompile group: 'org.opensearch.client', name: 'opensearch-rest-high-level-client', version: "${opensearch_version}"
testCompile group: 'org.opensearch.client', name: 'opensearch-rest-client', version: "${opensearch_version}"
testCompile group: 'org.hamcrest', name: 'hamcrest', version: '2.1'
testCompile group: 'org.apache.logging.log4j', name: 'log4j-core', version:'2.15.0'
testCompile group: 'org.apache.logging.log4j', name: 'log4j-core', version:'2.16.0'
testCompile project(':plugin')
testCompile project(':legacy')
testImplementation('org.junit.jupiter:junit-jupiter-api:5.6.2')
Expand Down
2 changes: 1 addition & 1 deletion ppl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ dependencies {
compile group: 'org.json', name: 'json', version: '20180813'
compile group: 'org.springframework', name: 'spring-context', version: '5.2.5.RELEASE'
compile group: 'org.springframework', name: 'spring-beans', version: '5.2.5.RELEASE'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version:'2.15.0'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version:'2.16.0'
compile project(':common')
compile project(':core')
compile project(':protocol')
Expand Down
6 changes: 6 additions & 0 deletions release-notes/opensearch-sql.release-notes-1.2.2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
### Version 1.2.2.0 Release Notes
Compatible with OpenSearch and OpenSearch Dashboards Version 1.2.2

### Bug fixes

* Bump log4j to 2.16 and plugin to 1.2.2 ([#338](https://github.com/opensearch-project/sql/pull/338))

0 comments on commit a8edf6c

Please sign in to comment.