Skip to content

Commit 7507847

Browse files
committed
Release commit for v1.3.1
1 parent c882cbe commit 7507847

File tree

12 files changed

+29
-25
lines changed

12 files changed

+29
-25
lines changed

CHANGELOG.md

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

3+
## 1.3.1 - 2018-01-12
4+
### Changed
5+
- Fixed a bug in `AbstractXRayInterceptor` so that `generateMetadata` can be overriden. [PR6](https://github.com/aws/aws-xray-sdk-java/pull/6)
6+
37
## 1.3.0 - 2018-01-08
48
### Added
59
- Support for Spring Framework which enables the usage of aspects to trace requests down a call stack. Classes can either implement an interface or be annotated to identify themselves as available to the aspect for tracing. [PR1](https://github.com/aws/aws-xray-sdk-java/pull/1)

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,37 +12,37 @@ Add the AWS X-Ray SDK dependencies to your pom.xml:
1212
<dependency>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-xray-sdk-core</artifactId>
15-
<version>1.3.0</version>
15+
<version>1.3.1</version>
1616
</dependency>
1717
<dependency>
1818
<groupId>com.amazonaws</groupId>
1919
<artifactId>aws-xray-sdk-apache-http</artifactId>
20-
<version>1.3.0</version>
20+
<version>1.3.1</version>
2121
</dependency>
2222
<dependency>
2323
<groupId>com.amazonaws</groupId>
2424
<artifactId>aws-xray-sdk-aws-sdk</artifactId>
25-
<version>1.3.0</version>
25+
<version>1.3.1</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>com.amazonaws</groupId>
2929
<artifactId>aws-xray-sdk-aws-sdk-instrumentor</artifactId>
30-
<version>1.3.0</version>
30+
<version>1.3.1</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>com.amazonaws</groupId>
3434
<artifactId>aws-xray-sdk-sql-mysql</artifactId>
35-
<version>1.3.0</version>
35+
<version>1.3.1</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>com.amazonaws</groupId>
3939
<artifactId>aws-xray-sdk-sql-postgresql</artifactId>
40-
<version>1.3.0</version>
40+
<version>1.3.1</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>com.amazonaws</groupId>
4444
<artifactId>aws-xray-recorder-sdk-spring</artifactId>
45-
<version>1.3.0</version>
45+
<version>1.3.1</version>
4646
</dependency>
4747
```
4848

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>1.3.0</version>
7+
<version>1.3.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-apache-http</artifactId>
11-
<version>1.3.0</version>
11+
<version>1.3.1</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-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>1.3.0</version>
7+
<version>1.3.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-aws-sdk-instrumentor</artifactId>
11-
<version>1.3.0</version>
11+
<version>1.3.1</version>
1212
<name>AWS X-Ray Recorder SDK for Java - AWS SDK Instrumentor</name>
1313
<build>
1414
<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>1.3.0</version>
7+
<version>1.3.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-aws-sdk</artifactId>
11-
<version>1.3.0</version>
11+
<version>1.3.1</version>
1212
<name>AWS X-Ray Recorder SDK for Java - AWS SDK Handler</name>
1313
<build>
1414
<plugins>

aws-xray-recorder-sdk-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
7-
<version>1.3.0</version>
7+
<version>1.3.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-bom</artifactId>

aws-xray-recorder-sdk-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
7-
<version>1.3.0</version>
7+
<version>1.3.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-core</artifactId>
1111
<name>AWS X-Ray Recorder SDK for Java - Core</name>
12-
<version>1.3.0</version>
12+
<version>1.3.1</version>
1313
<build>
1414
<plugins>
1515
<plugin>

aws-xray-recorder-sdk-spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
8-
<version>1.3.0</version>
8+
<version>1.3.1</version>
99
</parent>
1010

1111
<artifactId>aws-xray-recorder-sdk-spring</artifactId>

aws-xray-recorder-sdk-sql-mysql/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>1.3.0</version>
7+
<version>1.3.1</version>
88
</parent>
99
<groupId>com.amazonaws</groupId>
1010
<artifactId>aws-xray-recorder-sdk-sql-mysql</artifactId>
11-
<version>1.3.0</version>
11+
<version>1.3.1</version>
1212
<name>AWS X-Ray Recorder SDK for Java - AWS SDK MySQL Interceptor</name>
1313
<build>
1414
<plugins>

aws-xray-recorder-sdk-sql-postgres/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<parent>
66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
8-
<version>1.3.0</version>
8+
<version>1.3.1</version>
99
</parent>
1010
<groupId>com.amazonaws</groupId>
1111
<artifactId>aws-xray-recorder-sdk-sql-postgres</artifactId>
12-
<version>1.3.0</version>
12+
<version>1.3.1</version>
1313
<name>AWS X-Ray Recorder SDK for Java - AWS SDK PostgreSQL Interceptor</name>
1414
<build>
1515
<plugins>

aws-xray-recorder-sdk/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.amazonaws</groupId>
55
<artifactId>aws-xray-recorder-sdk</artifactId>
6-
<version>1.3.0</version>
6+
<version>1.3.1</version>
77
<build>
88
<plugins>
99
<plugin>
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>com.amazonaws</groupId>
4747
<artifactId>aws-xray-recorder-sdk-bom</artifactId>
48-
<version>1.3.0</version>
48+
<version>1.3.1</version>
4949
<type>pom</type>
5050
<scope>import</scope>
5151
</dependency>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.amazonaws</groupId>
55
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
6-
<version>1.3.0</version>
6+
<version>1.3.1</version>
77
<packaging>pom</packaging>
88
<name>AWS X-Ray Recorder SDK for Java</name>
99
<description>The Amazon Web Services X-Ray Recorder SDK for Java provides Java APIs for emitting tracing data to AWS X-Ray. AWS X-Ray helps developers analyze and debug distributed applications. With X-Ray, you can understand how your application and its underlying services are performing to identify and troubleshoot the root cause of performance issues and errors.</description>
@@ -46,7 +46,7 @@
4646
</repository>
4747
</distributionManagement>
4848
<properties>
49-
<awsxrayrecordersdk.version>1.3.0</awsxrayrecordersdk.version>
49+
<awsxrayrecordersdk.version>1.3.1</awsxrayrecordersdk.version>
5050
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5151
</properties>
5252
<build>

0 commit comments

Comments
 (0)