Skip to content

Commit

Permalink
Version bump to 1.2.4.0 (#1558)
Browse files Browse the repository at this point in the history
* Version bump to 1.2.4.0
* Fix to prevent timeouts in GitHub actions (#1554)
Cherry-pick from 07be53e

Signed-off-by: Dave Lago <davelago@amazon.com>
  • Loading branch information
Dave Lago committed Jan 5, 2022
1 parent f2704cb commit cc22487
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
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

0 comments on commit cc22487

Please sign in to comment.