From 55bbc84ca915c60ebe57ebf5c881c48404049608 Mon Sep 17 00:00:00 2001 From: Yogiraj Awati Date: Fri, 28 Jun 2019 13:20:41 -0700 Subject: [PATCH] Release commit V3.1.0 --- CHANGELOG.md | 8 ++++++++ VERSION | 2 +- daemon/cfg/cfg.go | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bad15d5..cf6848c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Change Log All notable changes to this project will be documented in this file. +## 3.1.0 (2019-07-01) +- STS credentials are fetched from STS regional endpoint instead of global endpoint. If the configured region is disabled for the STS token, the credentials are +fetched from primary regional endpoint in that AWS partition. The primary regional endpoint cannot be disabled for STS token. +- Updated AWS Go dependency to version 1.20.10 +- Added debug log on request received for HTTP proxy server +- Added info log for the X-Ray service endpoint used by HTTP Proxy server +- Updated X-Ray service endpoint resolution for HTTP Proxy server + ## 3.0.2 (2019-06-19) - Reconfiguring ring buffer channel size to number of buffers allocated to the daemon instead of fix 250 traces diff --git a/VERSION b/VERSION index d9c62ed..a0cd9f0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.2 \ No newline at end of file +3.1.0 \ No newline at end of file diff --git a/daemon/cfg/cfg.go b/daemon/cfg/cfg.go index 69342ae..4260870 100644 --- a/daemon/cfg/cfg.go +++ b/daemon/cfg/cfg.go @@ -24,7 +24,7 @@ import ( ) // Version number of the X-Ray daemon. -const Version = "3.0.2" +const Version = "3.1.0" var cfgFileVersions = [...]int{1, 2} // Supported versions of cfg.yaml file.