Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Adding changes for ODFE 1.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditya Jindal committed Feb 2, 2021
1 parent 59f505a commit 6b0beae
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: ./gradlew publishToMavenLocal
- name: Build PA gradle using the new RCA jar
working-directory: ./tmp/pa
run: rm licenses/performanceanalyzer-rca-1.12.jar.sha1
run: rm licenses/performanceanalyzer-rca-1.13.jar.sha1
- name: Update SHA
working-directory: ./tmp/pa
run: ./gradlew updateShas
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: ./gradlew publishToMavenLocal
- name: Build PA gradle using the new RCA jar
working-directory: ./tmp/pa
run: rm licenses/performanceanalyzer-rca-1.12.jar.sha1
run: rm licenses/performanceanalyzer-rca-1.13.jar.sha1
- name: Update SHA
working-directory: ./tmp/pa
run: ./gradlew updateShas
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
buildscript {

ext {
es_version = System.getProperty("es.version", "7.10.0")
es_version = System.getProperty("es.version", "7.10.2")
}
// This isn't applying from repositories.gradle so repeating it here
repositories {
Expand Down Expand Up @@ -54,7 +54,7 @@ spotbugsTest {
}

ext {
opendistroVersion = '1.12.0'
opendistroVersion = '1.13.0'
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
}

Expand Down Expand Up @@ -216,7 +216,7 @@ dependencies {
compile 'org.apache.commons:commons-lang3:3.9'
compile 'org.bouncycastle:bcprov-jdk15on:1.68'
compile 'org.bouncycastle:bcpkix-jdk15on:1.68'
compile 'com.amazon.opendistro.elasticsearch:performanceanalyzer-rca:1.12'
compile 'com.amazon.opendistro.elasticsearch:performanceanalyzer-rca:1.13'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.10.5'
compile 'com.fasterxml.jackson.core:jackson-databind:2.10.5.1'
compile 'com.fasterxml.jackson.module:jackson-module-paranamer:2.10.5'
Expand Down Expand Up @@ -307,7 +307,7 @@ task buildRca() {
exec {
def licenseDir = "$projectDir/licenses"
workingDir("$licenseDir")
commandLine 'rm', "performanceanalyzer-rca-1.12.jar.sha1"
commandLine 'rm', "performanceanalyzer-rca-1.13.jar.sha1"
}
exec {
workingDir("$projectDir")
Expand Down
1 change: 0 additions & 1 deletion licenses/performanceanalyzer-rca-1.12.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions licenses/performanceanalyzer-rca-1.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0ca252df95b9c0743d7b29452c7637504d5ba50f
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 2020-11-17 Version 1.12.0.0 (Current)
## 2020-11-17 Version 1.12.0.0

Supported Elasticsearch version 7.10.0

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## 2020-11-17 Version 1.13.0.0 (Current)

Supported Elasticsearch version 7.10.2

### Features

### Enhancements

### Bug fixes

### Infrastructure
* Improve Test coverage ([#251](https://github.com/opendistro-for-elasticsearch/performance-analyzer/pull/251))
* Improve Test coverage up to 48% ([#255](https://github.com/opendistro-for-elasticsearch/performance-analyzer/pull/255))
* Changes for the Performance Analyzer IT to run with newer versions of ES ([#256](https://github.com/opendistro-for-elasticsearch/performance-analyzer/pull/256))
* Improve test coverage up to 62% ([#257](https://github.com/opendistro-for-elasticsearch/performance-analyzer/pull/257))
* Improve Test Coverage to 81% ([#258](https://github.com/opendistro-for-elasticsearch/performance-analyzer/pull/258))
* Add integ tests for OS metrics(cpu, page fault) ([#252](https://github.com/opendistro-for-elasticsearch/performance-analyzer/pull/252))


### Documentation

### Maintenance

### Refactoring

4 changes: 2 additions & 2 deletions src/main/resources/plugin-descriptor.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
description=Performance Analyzer Plugin
#
# 'version': plugin's version
version=7.10.0
version=7.10.2
#
# 'name': the plugin name
name=performance-analyzer
Expand All @@ -42,4 +42,4 @@ classname=com.amazon.opendistro.elasticsearch.performanceanalyzer.PerformanceAna
java.version=1.8
#
# 'elasticsearch.version' version of elasticsearch compiled against
elasticsearch.version=7.10.0
elasticsearch.version=7.10.2

0 comments on commit 6b0beae

Please sign in to comment.