diff --git a/CHANGELOG.md b/CHANGELOG.md index 88a4cca0..c4d28867 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,24 @@ Unreleased =============================== ### SDK Breaking Changes -* Removes support for go [dep](https://github.com/golang/dep). [PR #343](https://github.com/aws/aws-xray-sdk-go/pull/343) + +### SDK Enhancements + +### SDK Bugs + + +Release v1.7.0 (2021-04-11) +================================ +### SDK Enhancements +* Removes deprecated method checks in SQL instrumentation [PR #341](https://github.com/aws/aws-xray-sdk-go/pull/341) +* Migrates private API named httpTrace public [PR #329](https://github.com/aws/aws-xray-sdk-go/pull/329) +* Migrates to use `grpc.SetHeader` API [PR #312](https://github.com/aws/aws-xray-sdk-go/pull/312) +* Removes support for go dep [PR #343](https://github.com/aws/aws-xray-sdk-go/pull/343) +* Replace error type assertions with `errors.As` [PR #353](https://github.com/aws/aws-xray-sdk-go/pull/353) + +### SDK Bugs +* Fixes segment leaking issues in `BeginSegmentWithSampling` API [PR #327](https://github.com/aws/aws-xray-sdk-go/pull/327) +* Updates github.com/valyala/fasthttp dependency to v1.34.0 to fix security vulnerability issue [PR #351](https://github.com/aws/aws-xray-sdk-go/pull/351) Release v1.6.0 (2021-07-07) diff --git a/xray/config.go b/xray/config.go index 8cd996bf..a83a9c5b 100644 --- a/xray/config.go +++ b/xray/config.go @@ -24,7 +24,7 @@ import ( ) // SDKVersion records the current X-Ray Go SDK version. -const SDKVersion = "1.6.0" +const SDKVersion = "1.7.0" // SDKType records which X-Ray SDK customer uses. const SDKType = "X-Ray for Go"