Skip to content

Commit cf52b47

Browse files
authored
Release v1.4.0 (#298)
* Added sample apps code * manual workflow * remove workflow file * release workflow * revert release workflow from master * manual workflow to run * remove release workflow * Release v1.4.0 * added spacing in README
1 parent 015dc2e commit cf52b47

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Release v1.4.0 (2021-05-03)
2+
================================
3+
### SDK Enhancements
4+
* No op trace id generation support for unsampled traces [PR #293](https://github.com/aws/aws-xray-sdk-go/pull/293)
5+
* Refactored `httpTrace` method [PR #296](https://github.com/aws/aws-xray-sdk-go/pull/296)
6+
7+
### SDK Bugs
8+
* Fix panic issue when call `AddError` function [PR #288](https://github.com/aws/aws-xray-sdk-go/pull/288)
9+
110
Release v1.3.0 (2021-02-02)
211
================================
312
### SDK Enhancements

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,10 @@ Note that customers using xray.BeginSegment API directly will only be able to ev
152152
seg.Close(nil)
153153
```
154154

155+
**Generate no-op trace and segment id**
156+
157+
X-Ray Go SDK will by default generate no-op trace and segment id for unsampled requests and secure random trace and entity id for sampled requests. If customer wants to enable generating secure random trace and entity id for all the (sampled/unsampled) requests (this is applicable for trace id injection into logs use case) then they achieve that by setting AWS_XRAY_NOOP_ID environment variable as False.
158+
155159
**Disabling XRay Tracing**
156160

157161
XRay tracing can be disabled by setting up environment variable `AWS_XRAY_SDK_DISABLED` . Disabling XRay can be useful for specific use case like if customer wants to stop tracing in their test environment they can do so just by setting up the environment variable.

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.3.0"
27+
const SDKVersion = "1.4.0"
2828

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

0 commit comments

Comments
 (0)