Skip to content

Commit 4c69858

Browse files
authored
Releasing 2.5.0 (#143)
1 parent 26f9431 commit 4c69858

File tree

21 files changed

+353
-52
lines changed

21 files changed

+353
-52
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.5.0 - 2020-05-11
4+
- Added Spring interceptor without Spring data dependency
5+
[PR 115](https://github.com/aws/aws-xray-sdk-java/pull/115)
6+
- Handled null responses in sampling API requests
7+
[PR 122](https://github.com/aws/aws-xray-sdk-java/pull/122)
8+
- Fix NPE while handling LOG_ERROR in Spring module
9+
[PR 125](https://github.com/aws/aws-xray-sdk-java/pull/125)
10+
- Support trace ID injection during context propagation
11+
[PR 127](https://github.com/aws/aws-xray-sdk-java/pull/127)
12+
- Added IgnoreContextMissingStrategy
13+
[PR 129](https://github.com/aws/aws-xray-sdk-java/pull/129)
14+
- Fixed implementation of isWrapperFor and unwrap
15+
[PR 131](https://github.com/aws/aws-xray-sdk-java/pull/131)
16+
- Fixed subsegment streaming in Lambda
17+
[PR 133](https://github.com/aws/aws-xray-sdk-java/pull/133)
18+
- Added fully qualified & configurable trace ID injection
19+
[PR 135](https://github.com/aws/aws-xray-sdk-java/pull/135)
20+
- Fixed implementation of TracingStatement when no segment present
21+
[PR 137](https://github.com/aws/aws-xray-sdk-java/pull/137)
22+
- Improved Docker ID discovery in DockerUtils
23+
[PR 141](https://github.com/aws/aws-xray-sdk-java/pull/141)
24+
- Performance improvements to equals and hashcode usages
25+
[PR 142](https://github.com/aws/aws-xray-sdk-java/pull/142)
26+
327
## 2.4.0 - 2019-11-21
428
- Fix tags in pom.xml
529
[PR 83](https://github.com/aws/aws-xray-sdk-java/pull/87)

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

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

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

0 commit comments

Comments
 (0)