Skip to content

Commit

Permalink
version 3.0.0: added release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterPaul-Perfana committed Apr 15, 2023
1 parent 1a4cd91 commit 593d45d
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 14 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,18 @@ For example (from [example-pom.xml](src/test/resources/example-pom.xml)):
<scheduleScript>
${eventScheduleScript}
</scheduleScript>
<testConfig>
<systemUnderTest>${systemUnderTest}</systemUnderTest>
<version>${version}</version>
<workload>${workload}</workload>
<testEnvironment>${testEnvironment}</testEnvironment>
<testRunId>${testRunId}</testRunId>
<buildResultsUrl>${buildResultsUrl}</buildResultsUrl>
<rampupTimeInSeconds>${rampupTimeInSeconds}</rampupTimeInSeconds>
<constantLoadTimeInSeconds>${constantLoadTimeInSeconds}</constantLoadTimeInSeconds>
<annotations>${annotations}</annotations>
<tags>${tags}</tags>
</testConfig>
<eventConfigs>
<eventConfig implementation="io.perfana.event.PerfanaEventConfig">
<name>PerfanaEvent1</name>
Expand All @@ -40,18 +52,6 @@ For example (from [example-pom.xml](src/test/resources/example-pom.xml)):
<var1>my_value</var1>
<__var2>my_value_2</__var2>
</variables>
<testConfig>
<systemUnderTest>${systemUnderTest}</systemUnderTest>
<version>${version}</version>
<workload>${workload}</workload>
<testEnvironment>${testEnvironment}</testEnvironment>
<testRunId>${testRunId}</testRunId>
<buildResultsUrl>${buildResultsUrl}</buildResultsUrl>
<rampupTimeInSeconds>${rampupTimeInSeconds}</rampupTimeInSeconds>
<constantLoadTimeInSeconds>${constantLoadTimeInSeconds}</constantLoadTimeInSeconds>
<annotations>${annotations}</annotations>
<tags>${tags}</tags>
</testConfig>
</eventConfig>
</eventConfigs>
</eventSchedulerConfig>
Expand Down
12 changes: 12 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Release notes Perfana Java Client

## 3.0.0 - April 2023

* use event-scheduler 4.0.0: no more TestConfig at Event level
* added init call to Perfana to fetch Perfana generated testRunId
* avoids issues with reused testRunIds
* if Perfana version with /init api call is present this will be used: if not the behavior is the same as before
* if not present, testRunId must be set in TestConfig
* use `<overrideTestRunId>true</overrideTestRunId>` to override the testRunId from Perfana
* fix message parsing for Perfana api benchmark 202 responses
* use java 11 instead of java 8
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<groupId>io.perfana</groupId>
<artifactId>perfana-java-client</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
<description>Perfana java client for integrating performance test tools</description>
<packaging>jar</packaging>

Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/example-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<encoding>UTF-8</encoding>

<event-scheduler-maven-plugin.version>1.1.1</event-scheduler-maven-plugin.version>
<perfana-java-client.version>1.6.0-SNAPSHOT</perfana-java-client.version>
<perfana-java-client.version>3.0.0-SNAPSHOT</perfana-java-client.version>

<buildResultsUrl>${BUILD_URL}</buildResultsUrl>

Expand Down

0 comments on commit 593d45d

Please sign in to comment.