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

Commit 4288991

Browse files
adityaj1107Aditya Jindal
and
Aditya Jindal
authored
Adding changes for ODFE 1.13 release (#272)
Adding changes for ODFE 1.13 release * Verified that metricsdb files are available with data. * Verified the data can be queried * Verified no errors in logs and service logs Co-authored-by: Aditya Jindal <“[email protected]”>
1 parent 59f505a commit 4288991

8 files changed

+35
-10
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: ./gradlew publishToMavenLocal
3232
- name: Build PA gradle using the new RCA jar
3333
working-directory: ./tmp/pa
34-
run: rm licenses/performanceanalyzer-rca-1.12.jar.sha1
34+
run: rm licenses/performanceanalyzer-rca-1.13.jar.sha1
3535
- name: Update SHA
3636
working-directory: ./tmp/pa
3737
run: ./gradlew updateShas

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: ./gradlew publishToMavenLocal
3535
- name: Build PA gradle using the new RCA jar
3636
working-directory: ./tmp/pa
37-
run: rm licenses/performanceanalyzer-rca-1.12.jar.sha1
37+
run: rm licenses/performanceanalyzer-rca-1.13.jar.sha1
3838
- name: Update SHA
3939
working-directory: ./tmp/pa
4040
run: ./gradlew updateShas

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
buildscript {
1717

1818
ext {
19-
es_version = System.getProperty("es.version", "7.10.0")
19+
es_version = System.getProperty("es.version", "7.10.2")
2020
}
2121
// This isn't applying from repositories.gradle so repeating it here
2222
repositories {
@@ -54,7 +54,7 @@ spotbugsTest {
5454
}
5555

5656
ext {
57-
opendistroVersion = '1.12.0'
57+
opendistroVersion = '1.13.0'
5858
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
5959
}
6060

@@ -216,7 +216,7 @@ dependencies {
216216
compile 'org.apache.commons:commons-lang3:3.9'
217217
compile 'org.bouncycastle:bcprov-jdk15on:1.68'
218218
compile 'org.bouncycastle:bcpkix-jdk15on:1.68'
219-
compile 'com.amazon.opendistro.elasticsearch:performanceanalyzer-rca:1.12'
219+
compile 'com.amazon.opendistro.elasticsearch:performanceanalyzer-rca:1.13'
220220
compile 'com.fasterxml.jackson.core:jackson-annotations:2.10.5'
221221
compile 'com.fasterxml.jackson.core:jackson-databind:2.10.5.1'
222222
compile 'com.fasterxml.jackson.module:jackson-module-paranamer:2.10.5'
@@ -307,7 +307,7 @@ task buildRca() {
307307
exec {
308308
def licenseDir = "$projectDir/licenses"
309309
workingDir("$licenseDir")
310-
commandLine 'rm', "performanceanalyzer-rca-1.12.jar.sha1"
310+
commandLine 'rm', "performanceanalyzer-rca-1.13.jar.sha1"
311311
}
312312
exec {
313313
workingDir("$projectDir")

licenses/performanceanalyzer-rca-1.12.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0ca252df95b9c0743d7b29452c7637504d5ba50f

release-notes/opendistro-for-elasticsearch-performance-analyzer.release-notes-1.12.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 2020-11-17 Version 1.12.0.0 (Current)
1+
## 2020-11-17 Version 1.12.0.0
22

33
Supported Elasticsearch version 7.10.0
44

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## 2021-02-02 Version 1.13.0.0 (Current)
2+
3+
Supported Elasticsearch version 7.10.2
4+
5+
### Features
6+
7+
### Enhancements
8+
9+
### Bug fixes
10+
11+
### Infrastructure
12+
* Improve Test coverage ([#251](https://github.com/opendistro-for-elasticsearch/performance-analyzer/pull/251))
13+
* Improve Test coverage up to 48% ([#255](https://github.com/opendistro-for-elasticsearch/performance-analyzer/pull/255))
14+
* Changes for the Performance Analyzer IT to run with newer versions of ES ([#256](https://github.com/opendistro-for-elasticsearch/performance-analyzer/pull/256))
15+
* Improve test coverage up to 62% ([#257](https://github.com/opendistro-for-elasticsearch/performance-analyzer/pull/257))
16+
* Improve Test Coverage to 81% ([#258](https://github.com/opendistro-for-elasticsearch/performance-analyzer/pull/258))
17+
* Add integ tests for OS metrics(cpu, page fault) ([#252](https://github.com/opendistro-for-elasticsearch/performance-analyzer/pull/252))
18+
19+
20+
### Documentation
21+
22+
### Maintenance
23+
24+
### Refactoring
25+

src/main/resources/plugin-descriptor.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
description=Performance Analyzer Plugin
2828
#
2929
# 'version': plugin's version
30-
version=7.10.0
30+
version=7.10.2
3131
#
3232
# 'name': the plugin name
3333
name=performance-analyzer
@@ -42,4 +42,4 @@ classname=com.amazon.opendistro.elasticsearch.performanceanalyzer.PerformanceAna
4242
java.version=1.8
4343
#
4444
# 'elasticsearch.version' version of elasticsearch compiled against
45-
elasticsearch.version=7.10.0
45+
elasticsearch.version=7.10.2

0 commit comments

Comments
 (0)