Skip to content

Commit a6883a4

Browse files
authored
Releasing 2.6.0 (#165)
* Modified Changelog * Modified version of pom.xml * Added gradle version bump * Added benchmark README and update changelog
1 parent f841179 commit a6883a4

File tree

22 files changed

+679
-49
lines changed

22 files changed

+679
-49
lines changed

CHANGELOG.md

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

3+
## 2.6.0 - 2020-06-10
4+
- Added calls to X-Ray daemon for rules/targets with a simple JDK-based client
5+
[PR 145](https://github.com/aws/aws-xray-sdk-java/pull/145)
6+
- Added a public API for creating Emitter without exposing implementation details
7+
[PR 146](https://github.com/aws/aws-xray-sdk-java/pull/146)
8+
- Exposed sampling manifest URL for testing
9+
[PR 149](https://github.com/aws/aws-xray-sdk-java/pull/149)
10+
- Added utility executors for context propagation
11+
[PR 150](https://github.com/aws/aws-xray-sdk-java/pull/150)
12+
- Modified exception handling in UDPEmitter
13+
[PR 151](https://github.com/aws/aws-xray-sdk-java/issues/151)
14+
- Added more safety in UnsignedXrayClient
15+
[PR 154](https://github.com/aws/aws-xray-sdk-java/pull/154)
16+
- Added IMDSv2 Support
17+
[PR 155](https://github.com/aws/aws-xray-sdk-java/pull/155)
18+
- Applied checkstyle and prepare for license header check
19+
[PR 156](https://github.com/aws/aws-xray-sdk-java/pull/156)
20+
- Avoid String.split when parsing header to reduce garbage generation
21+
[PR 160](https://github.com/aws/aws-xray-sdk-java/pull/160)
22+
- Modified support for allocate new traceID when traceID parse fail
23+
[PR 161](https://github.com/aws/aws-xray-sdk-java/pull/161)
24+
- Use singleton SecureRandom
25+
[PR 162](https://github.com/aws/aws-xray-sdk-java/pull/162)
26+
327
## 2.5.0 - 2020-05-11
428
- Added Spring interceptor without Spring data dependency
529
[PR 115](https://github.com/aws/aws-xray-sdk-java/pull/115)

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.5.0</version>
17+
<version>2.6.0</version>
1818
</dependency>
1919
<dependency>
2020
<groupId>com.amazonaws</groupId>
2121
<artifactId>aws-xray-recorder-sdk-apache-http</artifactId>
22-
<version>2.5.0</version>
22+
<version>2.6.0</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>com.amazonaws</groupId>
2626
<artifactId>aws-xray-recorder-sdk-aws-sdk</artifactId>
27-
<version>2.5.0</version>
27+
<version>2.6.0</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>com.amazonaws</groupId>
3131
<artifactId>aws-xray-recorder-sdk-aws-sdk-v2</artifactId>
32-
<version>2.5.0</version>
32+
<version>2.6.0</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>com.amazonaws</groupId>
3636
<artifactId>aws-xray-recorder-sdk-aws-sdk-instrumentor</artifactId>
37-
<version>2.5.0</version>
37+
<version>2.6.0</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>com.amazonaws</groupId>
4141
<artifactId>aws-xray-recorder-sdk-aws-sdk-v2-instrumentor</artifactId>
42-
<version>2.5.0</version>
42+
<version>2.6.0</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>com.amazonaws</groupId>
4646
<artifactId>aws-xray-recorder-sdk-sql</artifactId>
47-
<version>2.5.0</version>
47+
<version>2.6.0</version>
4848
</dependency>
4949
<dependency>
5050
<groupId>com.amazonaws</groupId>
5151
<artifactId>aws-xray-recorder-sdk-sql-mysql</artifactId>
52-
<version>2.5.0</version>
52+
<version>2.6.0</version>
5353
</dependency>
5454
<dependency>
5555
<groupId>com.amazonaws</groupId>
5656
<artifactId>aws-xray-recorder-sdk-sql-postgresql</artifactId>
57-
<version>2.5.0</version>
57+
<version>2.6.0</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>com.amazonaws</groupId>
6161
<artifactId>aws-xray-recorder-sdk-spring</artifactId>
62-
<version>2.5.0</version>
62+
<version>2.6.0</version>
6363
</dependency>
6464
<dependency>
6565
<groupId>com.amazonaws</groupId>
6666
<artifactId>aws-xray-recorder-sdk-log4j</artifactId>
67-
<version>2.5.0</version>
67+
<version>2.6.0</version>
6868
</dependency>
6969
<dependency>
7070
<groupId>com.amazonaws</groupId>
7171
<artifactId>aws-xray-recorder-sdk-slf4j</artifactId>
72-
<version>2.5.0</version>
72+
<version>2.6.0</version>
7373
</dependency>
7474
<dependency>
7575
<groupId>com.amazonaws</groupId>
7676
<artifactId>aws-xray-recorder-sdk-metrics</artifactId>
77-
<version>2.5.0</version>
77+
<version>2.6.0</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.5.0</version>
7+
<version>2.6.0</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-apache-http</artifactId>
11-
<version>2.5.0</version>
11+
<version>2.6.0</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.5.0</version>
8+
<version>2.6.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>aws-xray-recorder-sdk-aws-sdk-core</artifactId>
13-
<version>2.5.0</version>
13+
<version>2.6.0</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.5.0</version>
7+
<version>2.6.0</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-aws-sdk-instrumentor</artifactId>
11-
<version>2.5.0</version>
11+
<version>2.6.0</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.5.0</version>
8+
<version>2.6.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>aws-xray-recorder-sdk-aws-sdk-v2-instrumentor</artifactId>
13-
<version>2.5.0</version>
13+
<version>2.6.0</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.5.0</version>
8+
<version>2.6.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>aws-xray-recorder-sdk-aws-sdk-v2</artifactId>
13-
<version>2.5.0</version>
13+
<version>2.6.0</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.5.0</version>
7+
<version>2.6.0</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-aws-sdk</artifactId>
11-
<version>2.5.0</version>
11+
<version>2.6.0</version>
1212
<name>AWS X-Ray Recorder SDK for Java - AWS SDK Handler</name>
1313
<build>
1414
<plugins>

0 commit comments

Comments
 (0)