Skip to content

Commit 9c7c107

Browse files
Release 3.2.0
1 parent e41c0f7 commit 9c7c107

File tree

89 files changed

+135
-123
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+135
-123
lines changed

agent/agent_common/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.tank</groupId>
77
<artifactId>agent-parent</artifactId>
8-
<version>3.1.1-SNAPSHOT</version>
8+
<version>3.2.0</version>
99
</parent>
1010

1111
<artifactId>agent-common</artifactId>

agent/agent_standalone/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.tank</groupId>
77
<artifactId>agent-parent</artifactId>
8-
<version>3.1.1-SNAPSHOT</version>
8+
<version>3.2.0</version>
99
</parent>
1010

1111
<artifactId>agent-standalone</artifactId>

agent/agent_standalone_pkg/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.tank</groupId>
77
<artifactId>agent-parent</artifactId>
8-
<version>3.1.1-SNAPSHOT</version>
8+
<version>3.2.0</version>
99
</parent>
1010

1111
<artifactId>agent-standalone-pkg</artifactId>

agent/agent_startup/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.tank</groupId>
77
<artifactId>agent-parent</artifactId>
8-
<version>3.1.1-SNAPSHOT</version>
8+
<version>3.2.0</version>
99
</parent>
1010

1111
<artifactId>agent-startup</artifactId>

agent/agent_startup_pkg/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.tank</groupId>
77
<artifactId>agent-parent</artifactId>
8-
<version>3.1.1-SNAPSHOT</version>
8+
<version>3.2.0</version>
99
</parent>
1010

1111
<artifactId>agent-startup-pkg</artifactId>

agent/apiharness/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.tank</groupId>
77
<artifactId>agent-parent</artifactId>
8-
<version>3.1.1-SNAPSHOT</version>
8+
<version>3.2.0</version>
99
</parent>
1010

1111
<artifactId>agent</artifactId>

agent/apiharness_pkg/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.intuit.tank</groupId>
88
<artifactId>agent-parent</artifactId>
9-
<version>3.1.1-SNAPSHOT</version>
9+
<version>3.2.0</version>
1010
</parent>
1111

1212
<artifactId>apiharness</artifactId>

agent/http_client_3/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.tank</groupId>
77
<artifactId>agent-parent</artifactId>
8-
<version>3.1.1-SNAPSHOT</version>
8+
<version>3.2.0</version>
99
</parent>
1010

1111
<artifactId>http_client_apache_3</artifactId>

agent/http_client_4/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.tank</groupId>
77
<artifactId>agent-parent</artifactId>
8-
<version>3.1.1-SNAPSHOT</version>
8+
<version>3.2.0</version>
99
</parent>
1010

1111
<artifactId>http_client_apache_4</artifactId>

agent/http_client_5/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.tank</groupId>
77
<artifactId>agent-parent</artifactId>
8-
<version>3.1.1-SNAPSHOT</version>
8+
<version>3.2.0</version>
99
</parent>
1010

1111
<artifactId>http_client_apache_5</artifactId>

agent/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.intuit.tank</groupId>
88
<artifactId>tank-parent</artifactId>
9-
<version>3.1.1-SNAPSHOT</version>
9+
<version>3.2.0</version>
1010
</parent>
1111

1212
<artifactId>agent-parent</artifactId>

all-in-one.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ fi
88
mkdir -p $INSTALL_DIR 2>/dev/null
99
echo "Installing all in one in $INSTALL_DIR"
1010
echo "downloading and extracting tomcat 9..."
11-
wget -O /tmp/apache-tomcat.tgz http://archive.apache.org/dist/tomcat/tomcat-9/v9.0.39/bin/apache-tomcat-9.0.39.tar.gz 2>/dev/null
11+
wget -O /tmp/apache-tomcat.tgz http://archive.apache.org/dist/tomcat/tomcat-9/v9.0.64/bin/apache-tomcat-9.0.64.tar.gz 2>/dev/null
1212
tar -zxf /tmp/apache-tomcat.tgz -C $INSTALL_DIR 2>/dev/null
1313
rm -f /tmp/apache-tomcat.tgz 2>/dev/null
1414
ln -snf $INSTALL_DIR/apache-tomcat-9.0.39 $INSTALL_DIR/tomcat 2>/dev/null
1515
mkdir $INSTALL_DIR/tomcat/db 2>/dev/null
1616
mkdir $INSTALL_DIR/tomcat/jars 2>/dev/null
1717

1818
echo "downloading and extracting agent-standalone..."
19-
wget -O /tmp/agent-standalone-pkg.zip https://github.com/intuit/Tank/releases/download/3.1.1-SNAPSHOT/agent-standalone-pkg.zip 2>/dev/null
19+
wget -O /tmp/agent-standalone-pkg.zip https://github.com/intuit/Tank/releases/download/3.2.0/agent-standalone-pkg.zip 2>/dev/null
2020
unzip -q -d $INSTALL_DIR /tmp/agent-standalone-pkg 2>/dev/null
2121
rm -f /tmp/agent-standalone-pkg 2>/dev/null
2222

@@ -26,7 +26,7 @@ wget -O /$INSTALL_DIR/tomcat/settings.xml https://github.com/intuit/Tank/blob/ma
2626

2727
echo "downloading and installing tank war file..."
2828
rm -fr $INSTALL_DIR/tomcat/webapps/docs $INSTALL_DIR/tomcat/webapps/examples $INSTALL_DIR/tomcat/webapps/ROOT 2>/dev/null
29-
wget -O $INSTALL_DIR/tomcat/webapps/ROOT.war https://github.com/intuit/Tank/releases/download/3.1.1-SNAPSHOT/tank.war 2>/dev/null
29+
wget -O $INSTALL_DIR/tomcat/webapps/ROOT.war https://github.com/intuit/Tank/releases/download/3.2.0/tank.war 2>/dev/null
3030

3131
echo "Creating context file at $INSTALL_DIR/start.sh ..."
3232
cat << EOF > $INSTALL_DIR/tomcat/conf/context.xml

api/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.intuit.tank</groupId>
88
<artifactId>tank-parent</artifactId>
9-
<version>3.1.1-SNAPSHOT</version>
9+
<version>3.2.0</version>
1010
</parent>
1111

1212
<artifactId>api</artifactId>

aws-config/tank_instanceProfiles.yml

+12
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,18 @@ Resources:
6060
ManagedPolicyArns:
6161
- arn:aws:iam::aws:policy/AmazonS3FullAccess
6262
- arn:aws:iam::aws:policy/CloudWatchAgentServerPolicy
63+
Policies:
64+
-
65+
PolicyName: tank-agent-role
66+
PolicyDocument:
67+
Version: 2012-10-17
68+
Statement:
69+
-
70+
Effect: Allow
71+
Action:
72+
- cloudwatch:PutMetricData
73+
- cloudwatch:PutMetricStream
74+
Resource: "*"
6375

6476
Outputs:
6577
TankControllerProfile:

data_access/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.intuit.tank</groupId>
88
<artifactId>tank-parent</artifactId>
9-
<version>3.1.1-SNAPSHOT</version>
9+
<version>3.2.0</version>
1010
</parent>
1111

1212

data_model/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.intuit.tank</groupId>
88
<artifactId>tank-parent</artifactId>
9-
<version>3.1.1-SNAPSHOT</version>
9+
<version>3.2.0</version>
1010
</parent>
1111

1212
<artifactId>data-model</artifactId>

doc/doc_xslt/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.intuit.tank</groupId>
88
<artifactId>tank-parent-doc</artifactId>
9-
<version>3.1.1-SNAPSHOT</version>
9+
<version>3.2.0</version>
1010
</parent>
1111

1212
<artifactId>pressgang-xslt-ns</artifactId>

doc/jdocbook_style/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.intuit.tank</groupId>
88
<artifactId>tank-parent-doc</artifactId>
9-
<version>3.1.1-SNAPSHOT</version>
9+
<version>3.2.0</version>
1010
</parent>
1111

1212
<artifactId>tank-common-jdocbook-style</artifactId>

doc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.tank</groupId>
77
<artifactId>tank-parent</artifactId>
8-
<version>3.1.1-SNAPSHOT</version>
8+
<version>3.2.0</version>
99
</parent>
1010

1111
<artifactId>tank-parent-doc</artifactId>

doc/tank_installation_guide/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.tank</groupId>
77
<artifactId>tank-parent-doc</artifactId>
8-
<version>3.1.1-SNAPSHOT</version>
8+
<version>3.2.0</version>
99
</parent>
1010

1111
<artifactId>tank-installation-guide</artifactId>

doc/tank_user_guide/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.tank</groupId>
77
<artifactId>tank-parent-doc</artifactId>
8-
<version>3.1.1-SNAPSHOT</version>
8+
<version>3.2.0</version>
99
</parent>
1010

1111
<artifactId>tank-user-guide</artifactId>

harness_data/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.tank</groupId>
77
<artifactId>tank-parent</artifactId>
8-
<version>3.1.1-SNAPSHOT</version>
8+
<version>3.2.0</version>
99
</parent>
1010

1111
<artifactId>harness-data</artifactId>

0 commit comments

Comments
 (0)