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>

0 commit comments

Comments
 (0)