diff --git a/CHANGELOG.md b/CHANGELOG.md index c44e2fac..0e6e9bbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ Unreleased ### SDK Bugs +Release v1.8.3 (2023-11-13) +================================ +### SDK Enhancements + +### SDK Bugs +* Update AWS SDK for Go depdencies [#PR 430](https://github.com/aws/aws-xray-sdk-go/pull/430) +* Fix HTTP2 rapid reset vulnerability [#PR 428](https://github.com/aws/aws-xray-sdk-go/pull/428) +* Omit URL's password when stringifying URL for segment name [#PR 422](https://github.com/aws/aws-xray-sdk-go/pull/422) + + Release v1.8.2 (2023-09-28) ================================ ### SDK Enhancements diff --git a/xray/config.go b/xray/config.go index 23965194..d3a0dce4 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.8.2" +const SDKVersion = "1.8.3" // SDKType records which X-Ray SDK customer uses. const SDKType = "X-Ray for Go"