Skip to content

Commit 05508f4

Browse files
authored
releasing 2.6.1 (#172)
1 parent ed18a1b commit 05508f4

File tree

21 files changed

+52
-48
lines changed

21 files changed

+52
-48
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 2.6.1 - 2020-06-20
4+
- Fixed JSON parsing logic for Centralized Sampling
5+
[PR 171](https://github.com/aws/aws-xray-sdk-java/pull/171)
6+
37
## 2.6.0 - 2020-06-10
48
- Added calls to X-Ray daemon for rules/targets with a simple JDK-based client
59
[PR 145](https://github.com/aws/aws-xray-sdk-java/pull/145)

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,67 +14,67 @@ Add the AWS X-Ray SDK dependencies to your pom.xml:
1414
<dependency>
1515
<groupId>com.amazonaws</groupId>
1616
<artifactId>aws-xray-recorder-sdk-core</artifactId>
17-
<version>2.6.0</version>
17+
<version>2.6.1</version>
1818
</dependency>
1919
<dependency>
2020
<groupId>com.amazonaws</groupId>
2121
<artifactId>aws-xray-recorder-sdk-apache-http</artifactId>
22-
<version>2.6.0</version>
22+
<version>2.6.1</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>com.amazonaws</groupId>
2626
<artifactId>aws-xray-recorder-sdk-aws-sdk</artifactId>
27-
<version>2.6.0</version>
27+
<version>2.6.1</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>com.amazonaws</groupId>
3131
<artifactId>aws-xray-recorder-sdk-aws-sdk-v2</artifactId>
32-
<version>2.6.0</version>
32+
<version>2.6.1</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>com.amazonaws</groupId>
3636
<artifactId>aws-xray-recorder-sdk-aws-sdk-instrumentor</artifactId>
37-
<version>2.6.0</version>
37+
<version>2.6.1</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>com.amazonaws</groupId>
4141
<artifactId>aws-xray-recorder-sdk-aws-sdk-v2-instrumentor</artifactId>
42-
<version>2.6.0</version>
42+
<version>2.6.1</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>com.amazonaws</groupId>
4646
<artifactId>aws-xray-recorder-sdk-sql</artifactId>
47-
<version>2.6.0</version>
47+
<version>2.6.1</version>
4848
</dependency>
4949
<dependency>
5050
<groupId>com.amazonaws</groupId>
5151
<artifactId>aws-xray-recorder-sdk-sql-mysql</artifactId>
52-
<version>2.6.0</version>
52+
<version>2.6.1</version>
5353
</dependency>
5454
<dependency>
5555
<groupId>com.amazonaws</groupId>
5656
<artifactId>aws-xray-recorder-sdk-sql-postgresql</artifactId>
57-
<version>2.6.0</version>
57+
<version>2.6.1</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>com.amazonaws</groupId>
6161
<artifactId>aws-xray-recorder-sdk-spring</artifactId>
62-
<version>2.6.0</version>
62+
<version>2.6.1</version>
6363
</dependency>
6464
<dependency>
6565
<groupId>com.amazonaws</groupId>
6666
<artifactId>aws-xray-recorder-sdk-log4j</artifactId>
67-
<version>2.6.0</version>
67+
<version>2.6.1</version>
6868
</dependency>
6969
<dependency>
7070
<groupId>com.amazonaws</groupId>
7171
<artifactId>aws-xray-recorder-sdk-slf4j</artifactId>
72-
<version>2.6.0</version>
72+
<version>2.6.1</version>
7373
</dependency>
7474
<dependency>
7575
<groupId>com.amazonaws</groupId>
7676
<artifactId>aws-xray-recorder-sdk-metrics</artifactId>
77-
<version>2.6.0</version>
77+
<version>2.6.1</version>
7878
</dependency>
7979
```
8080

aws-xray-recorder-sdk-apache-http/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<parent>
55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
7-
<version>2.6.0</version>
7+
<version>2.6.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-apache-http</artifactId>
11-
<version>2.6.0</version>
11+
<version>2.6.1</version>
1212
<name>AWS X-Ray Recorder SDK for Java - Apache HTTP Client Proxy</name>
1313
<build>
1414
<plugins>

aws-xray-recorder-sdk-aws-sdk-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
77
<groupId>com.amazonaws</groupId>
8-
<version>2.6.0</version>
8+
<version>2.6.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>aws-xray-recorder-sdk-aws-sdk-core</artifactId>
13-
<version>2.6.0</version>
13+
<version>2.6.1</version>
1414
<name>AWS X-Ray Recorder SDK for Java - AWS SDK Core</name>
1515
<build>
1616
<plugins>

aws-xray-recorder-sdk-aws-sdk-instrumentor/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<parent>
55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
7-
<version>2.6.0</version>
7+
<version>2.6.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-aws-sdk-instrumentor</artifactId>
11-
<version>2.6.0</version>
11+
<version>2.6.1</version>
1212
<name>AWS X-Ray Recorder SDK for Java - AWS SDK Instrumentor</name>
1313
<build>
1414
<plugins>

aws-xray-recorder-sdk-aws-sdk-v2-instrumentor/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
77
<groupId>com.amazonaws</groupId>
8-
<version>2.6.0</version>
8+
<version>2.6.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>aws-xray-recorder-sdk-aws-sdk-v2-instrumentor</artifactId>
13-
<version>2.6.0</version>
13+
<version>2.6.1</version>
1414
<name>AWS X-Ray Recorder SDK for Java - AWS SDK V2 Instrumentor</name>
1515
<build>
1616
<plugins>

aws-xray-recorder-sdk-aws-sdk-v2/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
77
<groupId>com.amazonaws</groupId>
8-
<version>2.6.0</version>
8+
<version>2.6.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>aws-xray-recorder-sdk-aws-sdk-v2</artifactId>
13-
<version>2.6.0</version>
13+
<version>2.6.1</version>
1414
<name>AWS X-Ray Recorder SDK for Java - AWS SDK V2</name>
1515
<build>
1616
<plugins>

aws-xray-recorder-sdk-aws-sdk/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<parent>
55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
7-
<version>2.6.0</version>
7+
<version>2.6.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-aws-sdk</artifactId>
11-
<version>2.6.0</version>
11+
<version>2.6.1</version>
1212
<name>AWS X-Ray Recorder SDK for Java - AWS SDK Handler</name>
1313
<build>
1414
<plugins>

aws-xray-recorder-sdk-benchmark/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
77
<groupId>com.amazonaws</groupId>
8-
<version>2.6.0</version>
8+
<version>2.6.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>aws-xray-recorder-sdk-benchmark</artifactId>
13-
<version>2.6.0</version>
13+
<version>2.6.1</version>
1414
<name>AWS X-Ray Recorder SDK for Java - AWS SDK Benchmark</name>
1515

1616
<packaging>jar</packaging>

aws-xray-recorder-sdk-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
7-
<version>2.6.0</version>
7+
<version>2.6.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-bom</artifactId>

aws-xray-recorder-sdk-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
7-
<version>2.6.0</version>
7+
<version>2.6.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-core</artifactId>
1111
<name>AWS X-Ray Recorder SDK for Java - Core</name>
12-
<version>2.6.0</version>
12+
<version>2.6.1</version>
1313
<build>
1414
<plugins>
1515
<plugin>

aws-xray-recorder-sdk-log4j/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<parent>
55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
7-
<version>2.6.0</version>
7+
<version>2.6.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-log4j</artifactId>
11-
<version>2.6.0</version>
11+
<version>2.6.1</version>
1212
<name>AWS X-Ray Recorder SDK for Java – Log4J Trace ID Injection</name>
1313
<build>
1414
<plugins>

aws-xray-recorder-sdk-metrics/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<parent>
55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
7-
<version>2.6.0</version>
7+
<version>2.6.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-metrics</artifactId>
11-
<version>2.6.0</version>
11+
<version>2.6.1</version>
1212
<name>AWS X-Ray Recorder SDK for Java - Segment Metrics</name>
1313
<build>
1414
<plugins>

aws-xray-recorder-sdk-slf4j/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<parent>
55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
7-
<version>2.6.0</version>
7+
<version>2.6.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-slf4j</artifactId>
11-
<version>2.6.0</version>
11+
<version>2.6.1</version>
1212
<name>AWS X-Ray Recorder SDK for Java - SLF4J Trace ID Injection</name>
1313
<build>
1414
<plugins>

aws-xray-recorder-sdk-spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
8-
<version>2.6.0</version>
8+
<version>2.6.1</version>
99
</parent>
1010

1111
<artifactId>aws-xray-recorder-sdk-spring</artifactId>

aws-xray-recorder-sdk-sql-mysql/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<parent>
55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
7-
<version>2.6.0</version>
7+
<version>2.6.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-sql-mysql</artifactId>
11-
<version>2.6.0</version>
11+
<version>2.6.1</version>
1212
<name>AWS X-Ray Recorder SDK for Java - AWS SDK MySQL Interceptor</name>
1313
<build>
1414
<plugins>

aws-xray-recorder-sdk-sql-postgres/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
8-
<version>2.6.0</version>
8+
<version>2.6.1</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-xray-recorder-sdk-sql-postgres</artifactId>
12-
<version>2.6.0</version>
12+
<version>2.6.1</version>
1313
<name>AWS X-Ray Recorder SDK for Java - AWS SDK PostgreSQL Interceptor</name>
1414
<build>
1515
<plugins>

aws-xray-recorder-sdk-sql/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<parent>
55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
7-
<version>2.6.0</version>
7+
<version>2.6.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-sql</artifactId>
11-
<version>2.6.0</version>
11+
<version>2.6.1</version>
1212
<name>AWS X-Ray Recorder SDK for Java - SQL Interceptor</name>
1313
<build>
1414
<plugins>

aws-xray-recorder-sdk/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.amazonaws</groupId>
55
<artifactId>aws-xray-recorder-sdk</artifactId>
6-
<version>2.6.0</version>
6+
<version>2.6.1</version>
77
<build>
88
<plugins>
99
<plugin>
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>com.amazonaws</groupId>
4747
<artifactId>aws-xray-recorder-sdk-bom</artifactId>
48-
<version>2.6.0</version>
48+
<version>2.6.1</version>
4949
<type>pom</type>
5050
<scope>import</scope>
5151
</dependency>

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = 2.6.1-SNAPSHOT
1+
version = 2.6.2-SNAPSHOT

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.amazonaws</groupId>
55
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
6-
<version>2.6.0</version>
6+
<version>2.6.1</version>
77
<packaging>pom</packaging>
88
<name>AWS X-Ray Recorder SDK for Java</name>
99
<description>The Amazon Web Services X-Ray Recorder SDK for Java provides Java APIs for emitting tracing data to AWS X-Ray. AWS X-Ray helps developers analyze and debug distributed applications. With X-Ray, you can understand how your application and its underlying services are performing to identify and troubleshoot the root cause of performance issues and errors.</description>
@@ -79,7 +79,7 @@
7979
</repository>
8080
</distributionManagement>
8181
<properties>
82-
<awsxrayrecordersdk.version>2.6.0</awsxrayrecordersdk.version>
82+
<awsxrayrecordersdk.version>2.6.1</awsxrayrecordersdk.version>
8383
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
8484
</properties>
8585
<build>

0 commit comments

Comments
 (0)