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

Version bump to 1.2.4.0 #1558

Merged
merged 2 commits into from
Jan 5, 2022
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
3 changes: 3 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
tags:
- '*'

env:
MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3

jobs:
build:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
- main
- opendistro-*

env:
MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3

jobs:
build:
name: build
Expand Down
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.3.0'
securityPluginVersion = '1.2.4.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.3", EQUAL)
requires('opensearch-oss', "1.2.4", 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.3.0-SNAPSHOT
version=1.2.4.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.3
opensearch.version=1.2.4
6 changes: 3 additions & 3 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.3.0-SNAPSHOT</version>
<version>1.2.4.0-SNAPSHOT</version>
<name>OpenSearch Security</name>
<description>OpenSearch Security</description>
<url>https://github.com/opensearch-project/security</url>
Expand Down Expand Up @@ -68,7 +68,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.release>8</maven.compiler.release>

<opensearch.version>1.2.3-SNAPSHOT</opensearch.version>
<opensearch.version>1.2.4-SNAPSHOT</opensearch.version>

<!-- deps -->
<netty-native.version>2.0.25.Final</netty-native.version>
Expand Down Expand Up @@ -103,7 +103,7 @@
<url>https://github.com/opensearch-project/security</url>
<connection>scm:git:git@github.com:opensearch-project/security.git</connection>
<developerConnection>scm:git:git@github.com:opensearch-project/security.git</developerConnection>
<tag>1.2.3.0</tag>
<tag>1.2.4.0</tag>
</scm>

<repositories>
Expand Down