Skip to content

Commit

Permalink
Merge pull request #726 from newrelic/develop
Browse files Browse the repository at this point in the history
Go agent 3.22.1 Release
  • Loading branch information
iamemilio committed Jun 2, 2023
2 parents cfbffd3 + d68bdd4 commit 33ca36a
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
## 3.22.1
* Corrects an error in the release process for 3.22.0.

### Support statement

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.

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.

## 3.22.0

### Added
* New Apache Kafka integration nrsarama that instruments the Sarama library https://github.com/Shopify/sarama
* New logs in context integration logcontext-v2/nrzap that instruments the zap logging framework https://github.com/uber-go/zap
* Integration tests created for the nrlogrus and nrzapintegrations
* Updated integration tests for nrlogxi

### Security Fixes
* Bumped sys package to v0.1.0 in the nrmssql integration
* Bumped net package to v0.7.0 in the nrgrpc, nrmssql , and nrnats integrations
* Bumped aws-sdk-go package to v1.34.0 in the nrawssdk-v1 integration
* Bumped text package to v0.3.8 in the nrnats, and nrpgx integrations
* Bumped gin package to v1.9.0 in the nrgin integration
* Bumped crypto package to v0.1.0 in the nrpgx integration
* Fixed integration tests in nrnats package not correctly showing code coverage

### Support statement

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.

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.

## 3.21.1

### Added
Expand Down
10 changes: 10 additions & 0 deletions v3/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,13 @@ 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
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.21.1"
Version = "3.22.1"
)

var (
Expand Down

0 comments on commit 33ca36a

Please sign in to comment.