Skip to content

Commit 5281da0

Browse files
authored
release note for v1.0.0-rc.12 (#122)
release version v1.0.0-rc.12
1 parent b7b479f commit 5281da0

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ script:
5656

5757
matrix:
5858
allow_failures:
59-
- go: tip
59+
- go: tip

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
Release v1.0.0-rc.12 (2019-06-11)
2+
================================
3+
### SDK Breaking Changes
4+
* Updates `sampling.NewProxy` method to be private. [PR #93](https://github.com/aws/aws-xray-sdk-go/pull/93)
5+
6+
### SDK Enhancements
7+
* Fixes a bug for failing to close in-progress `connect` subsegments in some cases. [PR #102](https://github.com/aws/aws-xray-sdk-go/pull/102)
8+
* Fixes data races condition. [PR #103](https://github.com/aws/aws-xray-sdk-go/pull/103)
9+
* Fixes a nil pointer issue. [PR #109](https://github.com/aws/aws-xray-sdk-go/pull/109)
10+
* Refactors `newGlobalConfig` to avoid initializing log. [PR #96](https://github.com/aws/aws-xray-sdk-go/pull/96)
11+
* Adds `-race` to travis test script. [PR #104](https://github.com/aws/aws-xray-sdk-go/pull/104)
12+
* Fixes data race condition for parallel http client request. [PR #100](https://github.com/aws/aws-xray-sdk-go/pull/100)
13+
* Adds support for `tx.Prepare`. [PR #95](https://github.com/aws/aws-xray-sdk-go/pull/95)
14+
* Fixes race bugs with `ClientTrace`. [PR #115](https://github.com/aws/aws-xray-sdk-go/pull/115)
15+
* Updates lock abstraction for `defaultLogger`. [PR #113](https://github.com/aws/aws-xray-sdk-go/pull/113)
16+
* Adds `golangci-lint` into travis CI. [PR #114](https://github.com/aws/aws-xray-sdk-go/pull/114)
17+
* Fixes uncaught error on SQL url parse. [PR #121](https://github.com/aws/aws-xray-sdk-go/pull/121)
18+
119
Release v1.0.0-rc.11 (2019-03-15)
220
================================
321
### SDK Breaking Changes

xray/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
)
2525

2626
// SDKVersion records the current X-Ray Go SDK version.
27-
const SDKVersion = "1.0.0-rc.11"
27+
const SDKVersion = "1.0.0-rc.12"
2828

2929
// SDKType records which X-Ray SDK customer uses.
3030
const SDKType = "X-Ray for Go"

0 commit comments

Comments
 (0)