Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Change Log

## 2.6.0 - 2020-06-10
- Added calls to X-Ray daemon for rules/targets with a simple JDK-based client
[PR 145](https://github.com/aws/aws-xray-sdk-java/pull/145)
- Added a public API for creating Emitter without exposing implementation details
[PR 146](https://github.com/aws/aws-xray-sdk-java/pull/146)
- Exposed sampling manifest URL for testing
[PR 149](https://github.com/aws/aws-xray-sdk-java/pull/149)
- Added utility executors for context propagation
[PR 150](https://github.com/aws/aws-xray-sdk-java/pull/150)
- Modified exception handling in UDPEmitter
[PR 151](https://github.com/aws/aws-xray-sdk-java/issues/151)
- Added more safety in UnsignedXrayClient
[PR 154](https://github.com/aws/aws-xray-sdk-java/pull/154)
- Added IMDSv2 Support
[PR 155](https://github.com/aws/aws-xray-sdk-java/pull/155)
- Applied checkstyle and prepare for license header check
[PR 156](https://github.com/aws/aws-xray-sdk-java/pull/156)
- Avoid String.split when parsing header to reduce garbage generation
[PR 160](https://github.com/aws/aws-xray-sdk-java/pull/160)
- Modified support for allocate new traceID when traceID parse fail
[PR 161](https://github.com/aws/aws-xray-sdk-java/pull/161)
- Use singleton SecureRandom
[PR 162](https://github.com/aws/aws-xray-sdk-java/pull/162)

## 2.5.0 - 2020-05-11
- Added Spring interceptor without Spring data dependency
[PR 115](https://github.com/aws/aws-xray-sdk-java/pull/115)
Expand Down
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,67 +14,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.5.0</version>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-apache-http</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-aws-sdk</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-aws-sdk-v2</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-aws-sdk-instrumentor</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-aws-sdk-v2-instrumentor</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-sql</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-sql-mysql</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-sql-postgresql</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-spring</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-log4j</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-slf4j</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-metrics</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions aws-xray-recorder-sdk-apache-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-apache-http</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
<name>AWS X-Ray Recorder SDK for Java - Apache HTTP Client Proxy</name>
<build>
<plugins>
Expand Down
4 changes: 2 additions & 2 deletions aws-xray-recorder-sdk-aws-sdk-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
<groupId>com.amazonaws</groupId>
<version>2.5.0</version>
<version>2.6.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>aws-xray-recorder-sdk-aws-sdk-core</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
<name>AWS X-Ray Recorder SDK for Java - AWS SDK Core</name>
<build>
<plugins>
Expand Down
4 changes: 2 additions & 2 deletions aws-xray-recorder-sdk-aws-sdk-instrumentor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-aws-sdk-instrumentor</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
<name>AWS X-Ray Recorder SDK for Java - AWS SDK Instrumentor</name>
<build>
<plugins>
Expand Down
4 changes: 2 additions & 2 deletions aws-xray-recorder-sdk-aws-sdk-v2-instrumentor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
<groupId>com.amazonaws</groupId>
<version>2.5.0</version>
<version>2.6.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>aws-xray-recorder-sdk-aws-sdk-v2-instrumentor</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
<name>AWS X-Ray Recorder SDK for Java - AWS SDK V2 Instrumentor</name>
<build>
<plugins>
Expand Down
4 changes: 2 additions & 2 deletions aws-xray-recorder-sdk-aws-sdk-v2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
<groupId>com.amazonaws</groupId>
<version>2.5.0</version>
<version>2.6.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>aws-xray-recorder-sdk-aws-sdk-v2</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
<name>AWS X-Ray Recorder SDK for Java - AWS SDK V2</name>
<build>
<plugins>
Expand Down
4 changes: 2 additions & 2 deletions aws-xray-recorder-sdk-aws-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-aws-sdk</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
<name>AWS X-Ray Recorder SDK for Java - AWS SDK Handler</name>
<build>
<plugins>
Expand Down
Loading