Skip to content

Commit fbbbb5c

Browse files
authored
Merge pull request #615 from iamemilio/readme
3.20.2 Release
2 parents 9fd0003 + dff95d1 commit fbbbb5c

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 3.20.2
2+
3+
### Added
4+
* New `NoticeExpectedError()` method allows you to capture errors that you are expecting to handle, without triggering alerts
5+
6+
### Fixed
7+
* More defensive harvest cycle code that will avoid crashing even in the event of a panic.
8+
* Update `nats-server` version to avoid known zip-slip exploit
9+
* Update `labstack/echo` version to mitigate known open redirect exploit
10+
11+
### Support Statement
12+
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.
13+
14+
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.
15+
16+
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.
17+
118
## 3.20.1
219

320
### Added

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Before submitting an Issue, please search for similar ones in the
2424

2525
## Pull Requests
2626

27-
Pull requests must pass all automated tests and must be reviewed by at least one maintaining engineer before being merged.
27+
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.
2828

2929
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.
3030

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
[![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)
1+
[![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)
32

43
# 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)
54

v3/newrelic/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
const (
1313
// Version is the full string version of this Go Agent.
14-
Version = "3.20.1"
14+
Version = "3.20.2"
1515
)
1616

1717
var (

0 commit comments

Comments
 (0)