Skip to content

Commit c6562b6

Browse files
committed
[#3677] 1.7.1 release
version updated (1.7.1-SNAPSHOT -> 1.7.1)
1 parent 5722a46 commit c6562b6

File tree

72 files changed

+78
-78
lines changed

Some content is hidden

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

72 files changed

+78
-78
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
* Install agents without changing a single line of code
99
* Minimal impact on performance (approximately 3% increase in resource usage)
1010

11-
## Latest Release (2017/12/29)
12-
We're happy to announce the release of Pinpoint v1.7.0.
13-
Please check the release note at (https://github.com/naver/pinpoint/releases/tag/1.7.0).
11+
## Latest Release (2018/01/04)
12+
We're happy to announce the release of Pinpoint v1.7.1.
13+
Please check the release note at (https://github.com/naver/pinpoint/releases/tag/1.7.1).
1414

15-
The current stable version is [**v1.7.0**](https://github.com/naver/pinpoint/releases/tag/1.7.0).
15+
The current stable version is [**v1.7.1**](https://github.com/naver/pinpoint/releases/tag/1.7.1).
1616

1717
### Plugin Development Guide (2016/03/18)
1818
We now have a [plugin development guide](https://github.com/naver/pinpoint/wiki/Pinpoint-Plugin-Developer-Guide "Pinpoint Plugin Development Guide"). Yay!

agent/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
7-
<version>1.7.1-SNAPSHOT</version>
7+
<version>1.7.1</version>
88
</parent>
99

1010
<artifactId>pinpoint-agent</artifactId>

annotations/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
7-
<version>1.7.1-SNAPSHOT</version>
7+
<version>1.7.1</version>
88
</parent>
99

1010
<!--

bootstrap-core-optional/pom.xml

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

1212
<artifactId>pinpoint-bootstrap-core-optional</artifactId>

bootstrap-core/pom.xml

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

1111
<artifactId>pinpoint-bootstrap-core</artifactId>

bootstrap/pom.xml

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

1111
<artifactId>pinpoint-bootstrap</artifactId>

collector/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
7-
<version>1.7.1-SNAPSHOT</version>
7+
<version>1.7.1</version>
88
</parent>
99

1010
<artifactId>pinpoint-collector</artifactId>

commons-hbase/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
7-
<version>1.7.1-SNAPSHOT</version>
7+
<version>1.7.1</version>
88
</parent>
99

1010
<artifactId>pinpoint-commons-hbase</artifactId>

commons-server/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
7-
<version>1.7.1-SNAPSHOT</version>
7+
<version>1.7.1</version>
88
</parent>
99

1010
<artifactId>pinpoint-commons-server</artifactId>

commons/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
7-
<version>1.7.1-SNAPSHOT</version>
7+
<version>1.7.1</version>
88
</parent>
99

1010
<artifactId>pinpoint-commons</artifactId>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package com.navercorp.pinpoint.common;
22
public final class Version {
3-
public static final String VERSION = "1.7.1-SNAPSHOT";
3+
public static final String VERSION = "1.7.1";
44
}

docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pinpoint-hbase:
22
container_name: pinpoint-hbase
33
hostname: hbase
4-
image: naver/pinpoint-hbase:1.7.1-SNAPSHOT
4+
image: naver/pinpoint-hbase:1.7.1
55
restart: always
66
expose:
77
- "2181"
@@ -25,7 +25,7 @@ pinpoint-mysql:
2525
pinpoint-collector:
2626
container_name: pinpoint-collector
2727
hostname: collector
28-
image: naver/pinpoint-collector:1.7.1-SNAPSHOT
28+
image: naver/pinpoint-collector:1.7.1
2929
restart: always
3030
expose:
3131
- "9994"
@@ -52,7 +52,7 @@ pinpoint-collector:
5252
pinpoint-web:
5353
container_name: pinpoint-web
5454
hostname: web
55-
image: naver/pinpoint-web:1.7.1-SNAPSHOT
55+
image: naver/pinpoint-web:1.7.1
5656
restart: always
5757
expose:
5858
- "8080"
@@ -75,7 +75,7 @@ pinpoint-web:
7575

7676
# only example
7777
#pinpoint-agent:
78-
# image: naver/pinpoint-agent:1.7.1-SNAPSHOT
78+
# image: naver/pinpoint-agent:1.7.1
7979
# net: "none"
8080
# restart: unless-stopped
8181
# volumes:

flink/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>pinpoint</artifactId>
2323
<groupId>com.navercorp.pinpoint</groupId>
24-
<version>1.7.1-SNAPSHOT</version>
24+
<version>1.7.1</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

hbase/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
7-
<version>1.7.1-SNAPSHOT</version>
7+
<version>1.7.1</version>
88
</parent>
99

1010
<artifactId>pinpoint-hbase</artifactId>

plugins/activemq-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>com.navercorp.pinpoint</groupId>
88
<artifactId>pinpoint</artifactId>
99
<relativePath>../..</relativePath>
10-
<version>1.7.1-SNAPSHOT</version>
10+
<version>1.7.1</version>
1111
</parent>
1212

1313
<artifactId>pinpoint-activemq-client-plugin</artifactId>

plugins/arcus/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-arcus-plugin</artifactId>

plugins/cassandra/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-cassandra-driver-plugin</artifactId>

plugins/cubrid-jdbc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-cubrid-jdbc-driver-plugin</artifactId>

plugins/cxf/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-cxf-plugin</artifactId>

plugins/dbcp/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-commons-dbcp-plugin</artifactId>

plugins/dbcp2/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<groupId>com.navercorp.pinpoint</groupId>
2222
<artifactId>pinpoint</artifactId>
2323
<relativePath>../..</relativePath>
24-
<version>1.7.1-SNAPSHOT</version>
24+
<version>1.7.1</version>
2525
</parent>
2626

2727
<properties>

plugins/dubbo/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-dubbo-plugin</artifactId>

plugins/google-httpclient/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-google-httpclient-plugin</artifactId>

plugins/gson/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-gson-plugin</artifactId>

plugins/hikaricp/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<groupId>com.navercorp.pinpoint</groupId>
2222
<artifactId>pinpoint</artifactId>
2323
<relativePath>../..</relativePath>
24-
<version>1.7.1-SNAPSHOT</version>
24+
<version>1.7.1</version>
2525
</parent>
2626

2727
<artifactId>pinpoint-hikaricp-plugin</artifactId>

plugins/httpclient3/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-httpclient3-plugin</artifactId>

plugins/httpclient4/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-httpclient4-plugin</artifactId>

plugins/hystrix/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-hystrix-plugin</artifactId>

plugins/ibatis/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-ibatis-plugin</artifactId>

plugins/jackson/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.navercorp.pinpoint</groupId>
77
<artifactId>pinpoint</artifactId>
88
<relativePath>../..</relativePath>
9-
<version>1.7.1-SNAPSHOT</version>
9+
<version>1.7.1</version>
1010
</parent>
1111

1212
<artifactId>pinpoint-jackson-plugin</artifactId>

plugins/jboss/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-jboss-plugin</artifactId>

plugins/jdk-http/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-jdk-http-plugin</artifactId>

plugins/jetty/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-jetty-plugin</artifactId>

plugins/json-lib/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-json-lib-plugin</artifactId>

plugins/jsp/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-jsp-plugin</artifactId>

plugins/jtds/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-jtds-plugin</artifactId>

plugins/log4j/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-log4j-plugin</artifactId>

plugins/logback/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-logback-plugin</artifactId>

plugins/mariadb-jdbc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-mariadb-jdbc-driver-plugin</artifactId>

plugins/mybatis/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.navercorp.pinpoint</groupId>
66
<artifactId>pinpoint</artifactId>
77
<relativePath>../..</relativePath>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.7.1</version>
99
</parent>
1010

1111
<artifactId>pinpoint-mybatis-plugin</artifactId>

0 commit comments

Comments
 (0)