From 6da0a72da87456f5365381301ac5853d7a57e53c Mon Sep 17 00:00:00 2001 From: Prashant Srivastava Date: Wed, 24 Apr 2024 13:33:42 -0700 Subject: [PATCH] Release 1.8.4 --- CHANGELOG.md | 15 +++++++++++++-- xray/config.go | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e6e9bbc..f52d1881 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,16 +6,27 @@ Unreleased ### SDK Bugs -Release v1.8.3 (2023-11-13) +Release v1.8.4 (2024-04-24) ================================ ### SDK Enhancements ### SDK Bugs -* Update AWS SDK for Go depdencies [#PR 430](https://github.com/aws/aws-xray-sdk-go/pull/430) +* Updated go-sqlmock to v1.5.1 [#PR 451](https://github.com/aws/aws-xray-sdk-go/pull/451) * 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.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 fatal error: concurrent map iteration and map write [#PR 457](https://github.com/aws/aws-xray-sdk-go/pull/457) +* Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 [#PR 459](https://github.com/aws/aws-xray-sdk-go/pull/459) +* Bump golang.org/x/net from 0.18.0 to 0.23.0 [#PR 464](https://github.com/aws/aws-xray-sdk-go/pull/464) + + Release v1.8.2 (2023-09-28) ================================ ### SDK Enhancements diff --git a/xray/config.go b/xray/config.go index d3a0dce4..7efaea3c 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.3" +const SDKVersion = "1.8.4" // SDKType records which X-Ray SDK customer uses. const SDKType = "X-Ray for Go"