diff --git a/CHANGELOG.md b/CHANGELOG.md index 41f694d70..7a195fc39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 3.19.1 - Hotfix Release + +### Changed +* Moved the v3/internal/logcontext/nrwriter module to v3/integrations/logcontext-v2/nrwriter + +### Support Statement +New Relic recommends that you upgrade the agent regularly to ensure that you’re getting the latest features and performance benefits. Additionally, older releases will no longer be supported when they reach end-of-life. + +See the [Go Agent EOL Policy](https://docs.newrelic.com/docs/apm/agents/go-agent/get-started/go-agent-eol-policy/) for details about supported versions of the Go Agent and third-party components. + ## 3.19.0 ### Added @@ -13,7 +23,6 @@ New Relic recommends that you upgrade the agent regularly to ensure that you’r See the [Go Agent EOL Policy](https://docs.newrelic.com/docs/apm/agents/go-agent/get-started/go-agent-eol-policy/) for details about supported versions of the Go Agent and third-party components. - ## 3.18.2 ### Added diff --git a/v3/integrations/logcontext-v2/logWriter/go.mod b/v3/integrations/logcontext-v2/logWriter/go.mod index a4d609331..7d7910322 100644 --- a/v3/integrations/logcontext-v2/logWriter/go.mod +++ b/v3/integrations/logcontext-v2/logWriter/go.mod @@ -3,6 +3,6 @@ module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/logWriter go 1.17 require ( - github.com/newrelic/go-agent/v3 v3.19.0 + github.com/newrelic/go-agent/v3 v3.19.1 github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter v1.0.0 ) diff --git a/v3/integrations/logcontext-v2/nrwriter/go.mod b/v3/integrations/logcontext-v2/nrwriter/go.mod index 82ef63390..82df2d4e8 100644 --- a/v3/integrations/logcontext-v2/nrwriter/go.mod +++ b/v3/integrations/logcontext-v2/nrwriter/go.mod @@ -2,4 +2,4 @@ module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter go 1.17 -require github.com/newrelic/go-agent/v3 v3.19.0 +require github.com/newrelic/go-agent/v3 v3.19.1 diff --git a/v3/integrations/logcontext-v2/zerologWriter/go.mod b/v3/integrations/logcontext-v2/zerologWriter/go.mod index 3d07f81c5..afbbe5166 100644 --- a/v3/integrations/logcontext-v2/zerologWriter/go.mod +++ b/v3/integrations/logcontext-v2/zerologWriter/go.mod @@ -3,7 +3,7 @@ module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/zerologWriter go 1.17 require ( - github.com/newrelic/go-agent/v3 v3.19.0 + github.com/newrelic/go-agent/v3 v3.19.1 github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter v1.0.0 github.com/rs/zerolog v1.27.0 )