diff --git a/CHANGELOG.md b/CHANGELOG.md index 9670337b2..7e7068b87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## 3.20.2 + +### Added +* New `NoticeExpectedError()` method allows you to capture errors that you are expecting to handle, without triggering alerts + +### Fixed +* More defensive harvest cycle code that will avoid crashing even in the event of a panic. +* Update `nats-server` version to avoid known zip-slip exploit +* Update `labstack/echo` version to mitigate known open redirect exploit + +### 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. + +We also recommend using the latest version of the Go language. At minimum, you should at least be using no version of Go older than what is supported by the Go team themselves. + +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.20.1 ### Added diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e457032e7..766c8b2de 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -24,7 +24,7 @@ Before submitting an Issue, please search for similar ones in the ## Pull Requests -Pull requests must pass all automated tests and must be reviewed by at least one maintaining engineer before being merged. +Pull requests must pass all automated tests and must be reviewed by at least one maintaining engineer before being merged. Please contribute all pull requests against the `develop` branch, which is where we stage changes ahead of a release and run our most complete suite of tests. When contributing a new integration package, please follow the [Writing a New Integration Package](https://github.com/newrelic/go-agent/wiki/Writing-a-New-Integration-Package) wiki page. diff --git a/README.md b/README.md index d8880328f..08ef49578 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ - -[![Community Plus header](https://github.com/newrelic/opensource-website/raw/master/src/images/categories/Community_Plus.png)](https://opensource.newrelic.com/oss-category/#community-plus) +[![Community Plus header](https://github.com/newrelic/opensource-website/raw/main/src/images/categories/Community_Plus.png)](https://opensource.newrelic.com/oss-category/#community-plus) # New Relic Go Agent [![GoDoc](https://godoc.org/github.com/newrelic/go-agent?status.svg)](https://godoc.org/github.com/newrelic/go-agent/v3/newrelic/) [![Go Report Card](https://goreportcard.com/badge/github.com/newrelic/go-agent)](https://goreportcard.com/report/github.com/newrelic/go-agent) diff --git a/v3/newrelic/version.go b/v3/newrelic/version.go index d1cc2dfce..afd00ee60 100644 --- a/v3/newrelic/version.go +++ b/v3/newrelic/version.go @@ -11,7 +11,7 @@ import ( const ( // Version is the full string version of this Go Agent. - Version = "3.20.1" + Version = "3.20.2" ) var (