Skip to content

Commit

Permalink
Release Version 2.3.1
Browse files Browse the repository at this point in the history
* Security Issue Resolved [CVE-2017-12629, CVE-2019-0199, CVE-2019-0232]

* Upgrade lucene to 8.0.0

* upgrade tomcat-embed-core [CVE-2019-0199, CVE-2019-0232]

* Async kill/stop instances (#69)

* Thread start behavior (#70)

* Create user threads only as they are being started. Rather than all in advance.

* Replace killed threads throughout the duration of the test at the defined ramp-rate

* Library updates & Cleanup

* Java 8 language migration aids (intellij)

* patch for [CVE-2019-12402]

* #79: Path creation for `agent-standalone/run.sh` addresses issue. (#82)

* Refactored creation of `start.sh`, `stop.sh`, `agent-standalone/run.sh'
to use heredocs in favor of `echo`. Easier to read and maintain.

* update rsyntaxtextarea to 3.0.4

* increment version [2.3.1]
  • Loading branch information
kevin-mcgoldrick authored Oct 24, 2019
1 parent 490546a commit a9e3ea4
Show file tree
Hide file tree
Showing 655 changed files with 166,029 additions and 219,208 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ language: java
jdk:
- openjdk8

script: mvn clean cobertura:cobertura -P default,coverage
script: mvn clean install -P default,coverage
20 changes: 1 addition & 19 deletions agent/agent_common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>2.3.0</version>
<version>2.3.1</version>
</parent>

<artifactId>agent-common</artifactId>
Expand All @@ -22,12 +22,6 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tank-common</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
Expand All @@ -38,22 +32,10 @@
<artifactId>json-simple</artifactId>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>27.0-jre</version>
</dependency>

<dependency>
<groupId>jdom</groupId>
<artifactId>jdom</artifactId>
</dependency>

<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</dependency>

</dependencies>

</project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.intuit.tank.http;

import java.io.IOException;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package com.intuit.tank.http.multipart;

import org.picketlink.common.util.Base64;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;

import com.intuit.tank.test.TestGroups;

import java.util.Base64;

public class MultiPartRequestTest {
@DataProvider(name = "data")
private Object[][] csvData() {
Expand Down Expand Up @@ -52,7 +53,7 @@ private Object[][] csvData() {
@Test(groups = TestGroups.FUNCTIONAL, dataProvider = "data")
public void test(String body, int numParts) {
MultiPartRequest multiPartRequest = new MultiPartRequest(null, null);
multiPartRequest.setBody(new String(Base64.encodeObject(body)));
multiPartRequest.setBody(Base64.getEncoder().encodeToString(body.getBytes()));
}

}
2 changes: 1 addition & 1 deletion agent/agent_standalone/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>2.3.0</version>
<version>2.3.1</version>
</parent>

<artifactId>agent-standalone</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/agent_standalone_pkg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>2.3.0</version>
<version>2.3.1</version>
</parent>

<artifactId>agent-standalone-pkg</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/agent_startup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>2.3.0</version>
<version>2.3.1</version>
</parent>

<artifactId>agent-startup</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/agent_startup_pkg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>2.3.0</version>
<version>2.3.1</version>
</parent>

<artifactId>agent-startup-pkg</artifactId>
Expand Down
44 changes: 1 addition & 43 deletions agent/apiharness/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>2.3.0</version>
<version>2.3.1</version>
</parent>

<artifactId>agent</artifactId>
Expand All @@ -15,12 +15,6 @@


<dependencies>

<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>reporting-rest</artifactId>
Expand Down Expand Up @@ -97,42 +91,6 @@
<groupId>org.simpleframework</groupId>
<artifactId>simple-http</artifactId>
</dependency>

<dependency>
<groupId>commons-jxpath</groupId>
<artifactId>commons-jxpath</artifactId>
</dependency>

<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
</dependency>

<dependency>
<groupId>jdom</groupId>
<artifactId>jdom</artifactId>
</dependency>

<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</dependency>

<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
</dependency>

<dependency>
<groupId>saxpath</groupId>
<artifactId>saxpath</artifactId>
</dependency>

<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
</dependency>

</dependencies>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

import java.util.Date;

import com.intuit.tank.vm.api.enumerated.VMRegion;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

Expand Down
Loading

0 comments on commit a9e3ea4

Please sign in to comment.