Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to version 1.2.2 with log4j 2.16.0 #1525

Merged
merged 1 commit into from
Dec 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ plugins {
buildDir = 'gradle-build'

ext {
securityPluginVersion = '1.2.1.0'
securityPluginVersion = '1.2.2.0'
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
}

Expand Down Expand Up @@ -67,7 +67,7 @@ ospackage {
user 'root'
permissionGroup 'root'

requires('opensearch-oss', "1.2.1", EQUAL)
requires('opensearch-oss', "1.2.2", EQUAL)
packager = 'Amazon'
vendor = 'Amazon'
os = 'LINUX'
Expand Down
4 changes: 2 additions & 2 deletions plugin-descriptor.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
description=Provide access control related features for OpenSearch 1.0.0
#
# 'version': plugin's version
version=1.2.1.0-SNAPSHOT
version=1.2.2.0-SNAPSHOT
#
# 'name': the plugin name
name=opensearch-security
Expand All @@ -24,4 +24,4 @@ java.version=1.8
# OpenSearch release. This version is checked when the plugin
# is loaded so OpenSearch will refuse to start in the presence of
# plugins with the incorrect opensearch.version.
opensearch.version=1.2.1
opensearch.version=1.2.2
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<groupId>org.opensearch</groupId>
<artifactId>opensearch-security</artifactId>
<packaging>jar</packaging>
<version>1.2.1.0-SNAPSHOT</version>
<version>1.2.2.0-SNAPSHOT</version>
<name>OpenSearch Security</name>
<description>OpenSearch Security</description>
<url>https://github.com/opensearch-project/security</url>
Expand Down Expand Up @@ -68,12 +68,12 @@
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.release>8</maven.compiler.release>

<opensearch.version>1.2.1-SNAPSHOT</opensearch.version>
<opensearch.version>1.2.2-SNAPSHOT</opensearch.version>

<!-- deps -->
<netty-native.version>2.0.25.Final</netty-native.version>
<bc.version>1.67</bc.version>
<log4j.version>2.15.0</log4j.version>
<log4j.version>2.16.0</log4j.version>
<guava.version>25.1-jre</guava.version>
<commons.cli.version>1.3.1</commons.cli.version>
<jackson-databind.version>2.11.2</jackson-databind.version>
Expand Down Expand Up @@ -103,7 +103,7 @@
<url>https://github.com/opensearch-project/security</url>
<connection>scm:git:[email protected]:opensearch-project/security.git</connection>
<developerConnection>scm:git:[email protected]:opensearch-project/security.git</developerConnection>
<tag>1.2.1.0</tag>
<tag>1.2.2.0</tag>
</scm>

<repositories>
Expand Down
7 changes: 7 additions & 0 deletions release-notes/opensearch-security.release-notes-1.2.2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## 2021-12-14 Version 1.2.2.0

Compatible with OpenSearch 1.2.2

### Maintenance

* Bumping log4j to 2.16.0 ([#1525](https://github.com/opensearch-project/security/pull/1525))