Skip to content

Commit

Permalink
Release PR for v2.12.0 (#358)
Browse files Browse the repository at this point in the history
Co-authored-by: Jonathan Lee <jjllee@amazon.com>
  • Loading branch information
jj22ee and jj22ee authored Oct 7, 2022
1 parent 8161976 commit 5dce456
Show file tree
Hide file tree
Showing 3 changed files with 376 additions and 13 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Change Log

## 2.12.0 - 2022-10-07
- Allow list TopicArn for SNS Publish and PublishBatch
[PR 357](https://github.com/aws/aws-xray-sdk-java/pull/357)
- Oversampling mitigation
[PR 354](https://github.com/aws/aws-xray-sdk-java/pull/354)
- Change missing context default behavior to log error
[PR 353](https://github.com/aws/aws-xray-sdk-java/pull/353)
- Revert subsegment synchronization changes
[PR 350](https://github.com/aws/aws-xray-sdk-java/pull/350)
- Update README with manual configuration for log groups
[PR 349](https://github.com/aws/aws-xray-sdk-java/pull/349)
- Add Nullable annotation to AWSXray.setTraceEntity() parameter
[PR 345](https://github.com/aws/aws-xray-sdk-java/pull/345)
- Add javadoc to Subsegment.close() method
[PR 342](https://github.com/aws/aws-xray-sdk-java/pull/342)
- Send subsegments separately from segments when the serialized size is larger than the UDP packet size limit
[PR 344](https://github.com/aws/aws-xray-sdk-java/pull/344)
- Improve the emitter sendData failure log message
[PR 343](https://github.com/aws/aws-xray-sdk-java/pull/343)
- Throw ClientProtocolException instead of returning null to avoid possible NPE in Apache HTTP instrumentation
[PR 338](https://github.com/aws/aws-xray-sdk-java/pull/338)

## 2.11.2 - 2022-06-02
- Upgrade AWS Java SDK to 1.12.228
[PR 334](https://github.com/aws/aws-xray-sdk-java/pull/334)
Expand Down
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,67 +20,67 @@ Add the AWS X-Ray SDK dependencies to your pom.xml:
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-core</artifactId>
<version>2.11.0</version>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-apache-http</artifactId>
<version>2.11.0</version>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-aws-sdk</artifactId>
<version>2.11.0</version>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-aws-sdk-v2</artifactId>
<version>2.11.0</version>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-aws-sdk-instrumentor</artifactId>
<version>2.11.0</version>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-aws-sdk-v2-instrumentor</artifactId>
<version>2.11.0</version>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-sql</artifactId>
<version>2.11.0</version>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-sql-mysql</artifactId>
<version>2.11.0</version>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-sql-postgres</artifactId>
<version>2.11.0</version>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-spring</artifactId>
<version>2.11.0</version>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-log4j</artifactId>
<version>2.11.0</version>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-slf4j</artifactId>
<version>2.11.0</version>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-metrics</artifactId>
<version>2.11.0</version>
<version>2.12.0</version>
</dependency>
```

Expand Down
Loading

0 comments on commit 5dce456

Please sign in to comment.