Skip to content

Commit c2d101b

Browse files
authored
Release PR for v2.10.0 (#307)
1 parent d5ccae2 commit c2d101b

File tree

3 files changed

+368
-13
lines changed

3 files changed

+368
-13
lines changed

CHANGELOG.md

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

3+
## 2.10.0 - 2021-10-19
4+
- Optimize the lock in segment
5+
[PR 306](https://github.com/aws/aws-xray-sdk-java/pull/306)
6+
- Optimize the regex in util method
7+
[PR 305](https://github.com/aws/aws-xray-sdk-java/pull/305)
8+
- Add Automatic-Module-Name to JAR Manifest
9+
[PR 297](https://github.com/aws/aws-xray-sdk-java/pull/297)
10+
- Improvements to no-op subsegment behavior
11+
[PR 294](https://github.com/aws/aws-xray-sdk-java/pull/294)
12+
- Prevent crashes on serializing empty beans
13+
[PR 293](https://github.com/aws/aws-xray-sdk-java/pull/293)
14+
- Opt-in support to collect SQL queries
15+
[PR 283](https://github.com/aws/aws-xray-sdk-java/pull/283)
16+
317
## 2.9.1 - 2021-06-02
418
- Improve handling of entity `emitted` field
519
[PR 279](https://github.com/aws/aws-xray-sdk-java/pull/279)

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.9.1</version>
17+
<version>2.10.0</version>
1818
</dependency>
1919
<dependency>
2020
<groupId>com.amazonaws</groupId>
2121
<artifactId>aws-xray-recorder-sdk-apache-http</artifactId>
22-
<version>2.9.1</version>
22+
<version>2.10.0</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>com.amazonaws</groupId>
2626
<artifactId>aws-xray-recorder-sdk-aws-sdk</artifactId>
27-
<version>2.9.1</version>
27+
<version>2.10.0</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>com.amazonaws</groupId>
3131
<artifactId>aws-xray-recorder-sdk-aws-sdk-v2</artifactId>
32-
<version>2.9.1</version>
32+
<version>2.10.0</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>com.amazonaws</groupId>
3636
<artifactId>aws-xray-recorder-sdk-aws-sdk-instrumentor</artifactId>
37-
<version>2.9.1</version>
37+
<version>2.10.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.9.1</version>
42+
<version>2.10.0</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>com.amazonaws</groupId>
4646
<artifactId>aws-xray-recorder-sdk-sql</artifactId>
47-
<version>2.9.1</version>
47+
<version>2.10.0</version>
4848
</dependency>
4949
<dependency>
5050
<groupId>com.amazonaws</groupId>
5151
<artifactId>aws-xray-recorder-sdk-sql-mysql</artifactId>
52-
<version>2.9.1</version>
52+
<version>2.10.0</version>
5353
</dependency>
5454
<dependency>
5555
<groupId>com.amazonaws</groupId>
5656
<artifactId>aws-xray-recorder-sdk-sql-postgres</artifactId>
57-
<version>2.9.1</version>
57+
<version>2.10.0</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>com.amazonaws</groupId>
6161
<artifactId>aws-xray-recorder-sdk-spring</artifactId>
62-
<version>2.9.1</version>
62+
<version>2.10.0</version>
6363
</dependency>
6464
<dependency>
6565
<groupId>com.amazonaws</groupId>
6666
<artifactId>aws-xray-recorder-sdk-log4j</artifactId>
67-
<version>2.9.1</version>
67+
<version>2.10.0</version>
6868
</dependency>
6969
<dependency>
7070
<groupId>com.amazonaws</groupId>
7171
<artifactId>aws-xray-recorder-sdk-slf4j</artifactId>
72-
<version>2.9.1</version>
72+
<version>2.10.0</version>
7373
</dependency>
7474
<dependency>
7575
<groupId>com.amazonaws</groupId>
7676
<artifactId>aws-xray-recorder-sdk-metrics</artifactId>
77-
<version>2.9.1</version>
77+
<version>2.10.0</version>
7878
</dependency>
7979
```
8080

0 commit comments

Comments
 (0)