Skip to content

Commit

Permalink
Release v3.16.1
Browse files Browse the repository at this point in the history
Release v3.16.1
  • Loading branch information
nr-swilloughby committed May 26, 2022
2 parents 41d47c0 + 3beb2c1 commit a0f3666
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# ChangeLog
## 3.16.1
### Fixed
* Changed dependency on gRPC from v1.27.0 to v1.39.0. This in turn changes gRPC's dependency on `x/crypto` to v0.0.0-20200622213623-75b288015ac9, which fixes a security vulnerability in the `x/crypto` standard library module. Fixes [issue #451](https://github.com/newrelic/go-agent/issues/451).
* Incremented version number of the `nrawssdk-v1` integration from v1.0.1 to v1.1.0 to resolve an incompatibility issue due to changes to underlying code. Fixes [issue #499](https://github.com/newrelic/go-agent/issues/499)

### 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.

## 3.16.0
### Added
* Distributed Tracing is now the default mode of operation. It may be disabled by user configuration if so desired. [PR #495](https://github.com/newrelic/go-agent/pull/495)
Expand Down
4 changes: 2 additions & 2 deletions v3/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ module github.com/newrelic/go-agent/v3
go 1.7

require (
github.com/golang/protobuf v1.3.3
google.golang.org/grpc v1.27.0
github.com/golang/protobuf v1.4.3
google.golang.org/grpc v1.39.0
)
2 changes: 1 addition & 1 deletion v3/integrations/nrgrpc/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ require (
github.com/golang/protobuf v1.3.3
github.com/newrelic/go-agent/v3 v3.12.0
// v1.15.0 is the earliest version of grpc using modules.
google.golang.org/grpc v1.27.0
google.golang.org/grpc v1.39.0
)
3 changes: 1 addition & 2 deletions v3/integrations/nrmongo/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ module github.com/newrelic/go-agent/v3/integrations/nrmongo
go 1.10

require (
github.com/go-stack/stack v1.8.0 // indirect
github.com/newrelic/go-agent/v3 v3.6.0
// mongo-driver does not support modules as of Nov 2019.
go.mongodb.org/mongo-driver v1.0.0
go.mongodb.org/mongo-driver v1.5.1
)
2 changes: 1 addition & 1 deletion v3/newrelic/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

const (
// Version is the full string version of this Go Agent.
Version = "3.16.0"
Version = "3.16.1"
)

var (
Expand Down

0 comments on commit a0f3666

Please sign in to comment.