Skip to content

Commit 45ed3ee

Browse files
Merge pull request #739 from newrelic/develop
Release 3.23.0
2 parents 66bd1f8 + d850ce9 commit 45ed3ee

File tree

68 files changed

+815
-372
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+815
-372
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 3.23.0
2+
### Added
3+
* Adds the `nrsecurityagent` integration for performing Interactive Application Security Testing (IAST) of your application.
4+
* This action increments the version numbers of the following integrations:
5+
* `nrgin` v1.2.0
6+
* `nrgrpc` v1.4.0
7+
* `nrmicro` v1.2.0
8+
* `nrmongo` v1.2.0
9+
* `nrsqlite3` v1.2.0
10+
11+
To learn how to use IAST with the New Relic Go Agent, [check out our documentation](https://docs.newrelic.com/docs/iast/use-iast/).
12+
13+
### Support statement
14+
15+
We use the latest version of the Go language. At minimum, you should be using no version of Go older than what is supported by the Go team themselves (i.e., Go versions 1.19 and later are supported).
16+
17+
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.
18+
19+
120
## 3.22.1
221
* Corrects an error in the release process for 3.22.0.
322

v3/go.mod

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,7 @@
11
module github.com/newrelic/go-agent/v3
2-
32
go 1.18
4-
53
require (
64
github.com/golang/protobuf v1.5.3
75
google.golang.org/grpc v1.54.0
86
)
9-
10-
require (
11-
golang.org/x/net v0.8.0 // indirect
12-
golang.org/x/sys v0.6.0 // indirect
13-
golang.org/x/text v0.8.0 // indirect
14-
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
15-
google.golang.org/protobuf v1.28.1 // indirect
16-
)
17-
187
retract v3.22.0 // release process error corrected in v3.22.1

v3/integrations/logcontext-v2/logWriter/go.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/logWriter
2-
32
go 1.17
4-
53
require (
64
github.com/newrelic/go-agent/v3 v3.19.1
75
github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter v1.0.0

v3/integrations/logcontext-v2/nrlogrus/go.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrlogrus
2-
32
go 1.17
4-
53
require (
64
github.com/newrelic/go-agent/v3 v3.18.0
75
github.com/sirupsen/logrus v1.8.1
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter
2-
32
go 1.17
4-
53
require github.com/newrelic/go-agent/v3 v3.19.1

v3/integrations/logcontext-v2/nrzap/go.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrzap
2-
32
go 1.18
4-
53
require (
64
github.com/newrelic/go-agent/v3 v3.21.1
75
go.uber.org/zap v1.24.0

v3/integrations/logcontext-v2/nrzerolog/go.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrzerolog
2-
32
go 1.17
4-
53
require (
64
github.com/newrelic/go-agent/v3 v3.18.0
75
github.com/rs/zerolog v1.26.1

v3/integrations/logcontext-v2/zerologWriter/go.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
module github.com/newrelic/go-agent/v3/integrations/logcontext-v2/zerologWriter
2-
32
go 1.17
4-
53
require (
64
github.com/newrelic/go-agent/v3 v3.19.1
75
github.com/newrelic/go-agent/v3/integrations/logcontext-v2/nrwriter v1.0.0
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
module github.com/newrelic/go-agent/v3/integrations/logcontext/nrlogrusplugin
2-
32
// As of Dec 2019, the logrus go.mod file uses 1.13:
43
// https://github.com/sirupsen/logrus/blob/master/go.mod
54
go 1.13
6-
75
require (
86
github.com/newrelic/go-agent/v3 v3.17.0
97
// v1.4.0 is required for for the log.WithContext.
108
github.com/sirupsen/logrus v1.4.0
11-
golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e // indirect
129
)

v3/integrations/nrawssdk-v1/go.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
module github.com/newrelic/go-agent/v3/integrations/nrawssdk-v1
2-
32
// As of Dec 2019, aws-sdk-go's go.mod does not specify a Go version. 1.6 is
43
// the earliest version of Go tested by aws-sdk-go's CI:
54
// https://github.com/aws/aws-sdk-go/blob/master/.travis.yml
65
go 1.7
7-
86
require (
97
// v1.15.0 is the first aws-sdk-go version with module support.
108
github.com/aws/aws-sdk-go v1.34.0

0 commit comments

Comments
 (0)