Skip to content

Commit 0d7de20

Browse files
author
Yogiraj Awati
committed
Releasing V1.0.0-rc.7
1 parent fe32e43 commit 0d7de20

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1+
Release v1.0.0-rc.7 (2018-09-27)
2+
================================
3+
### SDK Breaking changes
4+
* `samplingRule` is an exported type : PR[#67](https://github.com/aws/aws-xray-sdk-go/pull/67)
5+
* Renamed `SamplingRule` structure to `Properties`
6+
17
Release v1.0.0-rc.6 (2018-09-25)
28
================================
39
### SDK Breaking changes
410
* The default sampling strategy is `CentralizedStrategy` that launches background tasks to poll sampling rules from X-Ray backend. See the new default sampling strategy in more details
511
here: [Link](https://docs.aws.amazon.com/xray/latest/devguide/xray-sdk-go-configuration.html#xray-sdk-go-configuration-sampling)
612
* The `ShouldTrace()` function in the `Strategy` interface now takes a `Request` structure for sampling rule matching and returns `Decision` object
713
* Updated `aws-sdk-go` version in `glide.yaml` file to `1.15.23`.
14+
* Modified `Rule` structure : It contains `samplingRule` nested structure
815

916
### SDK Enhancements
1017
* Environment variable `AWS_XRAY_DAEMON_ADDRESS` now takes an additional notation in `tcp:127.0.0.1:2000 udp:127.0.0.2:2001` to set TCP and UDP destination separately. By default it assumes a X-Ray daemon listening to both UDP and TCP traffic on 127.0.0.1:2000.

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.6"
27+
const SDKVersion = "1.0.0-rc.7"
2828

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

0 commit comments

Comments
 (0)