-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #739 from newrelic/develop
Release 3.23.0
- Loading branch information
Showing
68 changed files
with
815 additions
and
372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,7 @@ | ||
module github.com/newrelic/go-agent/v3 | ||
|
||
go 1.18 | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.3 | ||
google.golang.org/grpc v1.54.0 | ||
) | ||
|
||
require ( | ||
golang.org/x/net v0.8.0 // indirect | ||
golang.org/x/sys v0.6.0 // indirect | ||
golang.org/x/text v0.8.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
) | ||
|
||
retract v3.22.0 // release process error corrected in v3.22.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter | ||
|
||
go 1.17 | ||
|
||
require github.com/newrelic/go-agent/v3 v3.19.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/logcontext/nrlogrusplugin | ||
|
||
// As of Dec 2019, the logrus go.mod file uses 1.13: | ||
// https://github.com/sirupsen/logrus/blob/master/go.mod | ||
go 1.13 | ||
|
||
require ( | ||
github.com/newrelic/go-agent/v3 v3.17.0 | ||
// v1.4.0 is required for for the log.WithContext. | ||
github.com/sirupsen/logrus v1.4.0 | ||
golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/nrb3 | ||
go 1.19 | ||
require github.com/newrelic/go-agent/v3 v3.21.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/nrecho-v3 | ||
|
||
// 1.7 is the earliest version of Go tested by v3.1.0: | ||
// https://github.com/labstack/echo/blob/v3.1.0/.travis.yml | ||
go 1.7 | ||
|
||
require ( | ||
// v3.1.0 is the earliest v3 version of Echo that works with modules due | ||
// to the github.com/rsc/letsencrypt import of v3.0.0. | ||
github.com/labstack/echo v3.1.0+incompatible | ||
github.com/labstack/gommon v0.3.0 // indirect | ||
github.com/newrelic/go-agent/v3 v3.17.0 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/nrgin | ||
|
||
// As of Dec 2019, the gin go.mod file uses 1.12: | ||
// https://github.com/gin-gonic/gin/blob/master/go.mod | ||
go 1.12 | ||
|
||
go 1.19 | ||
require ( | ||
github.com/gin-gonic/gin v1.9.0 | ||
github.com/newrelic/go-agent/v3 v3.18.2 | ||
github.com/newrelic/go-agent/v3 v3.23.0 | ||
) | ||
replace github.com/newrelic/go-agent/v3 => ../.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/nrgraphqlgo/example | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/graphql-go/graphql v0.7.9 | ||
github.com/graphql-go/graphql-go-handler v0.2.3 | ||
github.com/newrelic/go-agent/v3 v3.3.0 | ||
github.com/newrelic/go-agent/v3/integrations/nrgraphqlgo v1.0.0 | ||
) | ||
|
||
replace github.com/newrelic/go-agent/v3 => ../../../ | ||
|
||
replace github.com/newrelic/go-agent/v3/integrations/nrgraphqlgo => ../ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,11 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/nrgrpc | ||
|
||
// As of Dec 2019, the grpc go.mod file uses 1.11: | ||
// https://github.com/grpc/grpc-go/blob/master/go.mod | ||
go 1.17 | ||
|
||
go 1.19 | ||
require ( | ||
// protobuf v1.3.0 is the earliest version using modules, we use v1.3.1 | ||
// because all dependencies were removed in this version. | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/newrelic/go-agent/v3 v3.18.2 | ||
github.com/golang/protobuf v1.5.3 | ||
github.com/newrelic/go-agent/v3 v3.23.0 | ||
// v1.15.0 is the earliest version of grpc using modules. | ||
google.golang.org/grpc v1.49.0 | ||
) | ||
|
||
require ( | ||
golang.org/x/net v0.7.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
google.golang.org/grpc v1.54.0 | ||
) | ||
replace github.com/newrelic/go-agent/v3 => ../.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.