-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into fasthttpintegration
- Loading branch information
Showing
85 changed files
with
787 additions
and
280 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
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 | ||
|
||
go 1.18 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.3 | ||
github.com/valyala/fasthttp v1.49.0 | ||
google.golang.org/grpc v1.54.0 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.0.5 // indirect | ||
github.com/klauspost/compress v1.16.3 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/logWriter | ||
go 1.17 | ||
|
||
go 1.19 | ||
|
||
require ( | ||
github.com/newrelic/go-agent/v3 v3.19.1 | ||
github.com/newrelic/go-agent/v3 v3.24.1 | ||
github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter v1.0.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrlogrus | ||
go 1.17 | ||
|
||
go 1.19 | ||
|
||
require ( | ||
github.com/newrelic/go-agent/v3 v3.18.0 | ||
github.com/newrelic/go-agent/v3 v3.24.1 | ||
github.com/sirupsen/logrus v1.8.1 | ||
) | ||
|
||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter | ||
go 1.17 | ||
require github.com/newrelic/go-agent/v3 v3.19.1 | ||
|
||
go 1.19 | ||
|
||
require github.com/newrelic/go-agent/v3 v3.24.1 | ||
|
||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrzap | ||
go 1.18 | ||
|
||
go 1.19 | ||
|
||
require ( | ||
github.com/newrelic/go-agent/v3 v3.21.1 | ||
github.com/newrelic/go-agent/v3 v3.24.1 | ||
go.uber.org/zap v1.24.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrzerolog | ||
go 1.17 | ||
|
||
go 1.19 | ||
|
||
require ( | ||
github.com/newrelic/go-agent/v3 v3.18.0 | ||
github.com/newrelic/go-agent/v3 v3.24.1 | ||
github.com/rs/zerolog v1.26.1 | ||
) | ||
|
||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/zerologWriter | ||
go 1.17 | ||
|
||
go 1.19 | ||
|
||
require ( | ||
github.com/newrelic/go-agent/v3 v3.19.1 | ||
github.com/newrelic/go-agent/v3 v3.24.1 | ||
github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter v1.0.0 | ||
github.com/rs/zerolog v1.27.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
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 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/newrelic/go-agent/v3 v3.17.0 | ||
github.com/newrelic/go-agent/v3 v3.24.1 | ||
// v1.4.0 is required for for the log.WithContext. | ||
github.com/sirupsen/logrus v1.4.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
module github.com/newrelic/go-agent/v3/integrations/nrawssdk-v1 | ||
|
||
// As of Dec 2019, aws-sdk-go's go.mod does not specify a Go version. 1.6 is | ||
// the earliest version of Go tested by aws-sdk-go's CI: | ||
// https://github.com/aws/aws-sdk-go/blob/master/.travis.yml | ||
go 1.7 | ||
go 1.19 | ||
|
||
require ( | ||
// v1.15.0 is the first aws-sdk-go version with module support. | ||
github.com/aws/aws-sdk-go v1.34.0 | ||
github.com/newrelic/go-agent/v3 v3.16.0 | ||
github.com/newrelic/go-agent/v3 v3.24.1 | ||
) | ||
|
||
|
||
replace github.com/newrelic/go-agent/v3 => ../.. |
Oops, something went wrong.