From 9499c837625a2696b54655488cda38a29996ddae Mon Sep 17 00:00:00 2001 From: Steve Willoughby Date: Tue, 15 Nov 2022 10:28:51 -0800 Subject: [PATCH 1/2] release 3.20.1 changelog and version increment --- CHANGELOG.md | 12 +++++++++++- v3/newrelic/version.go | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1fa9becf..9670337b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ -## Unreleased (working notes) +## 3.20.1 + +### Added +* New integration `nrpgx5` v1.0.0 to instrument `github.com/jackc/pgx/v5`. ### Changed @@ -10,6 +13,13 @@ * No CLM attributes at all will be attached to a trace if the `code.function` attribute is empty or is longer than 255 characters. * No CLM attributes at all will be attached to a trace if both `code.namespace` and `code.filepath` are longer than 255 characters. +### 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. + +We also recommend using the latest version of the Go language. At minimum, you should at least 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.20.0 **PLEASE READ** these changes, and verify your config settings to ensure your application behaves how you intend it to. This release changes some default behaviors in the go agent. diff --git a/v3/newrelic/version.go b/v3/newrelic/version.go index 135afe0a8..d1cc2dfce 100644 --- a/v3/newrelic/version.go +++ b/v3/newrelic/version.go @@ -11,7 +11,7 @@ import ( const ( // Version is the full string version of this Go Agent. - Version = "3.20.0" + Version = "3.20.1" ) var ( From fd8c44aa4f5368a2ebd196ba6a8182ffaa378bd3 Mon Sep 17 00:00:00 2001 From: Steve Willoughby Date: Tue, 15 Nov 2022 10:37:35 -0800 Subject: [PATCH 2/2] added readme update for nrpgx5 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 732a7843b..d8880328f 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,7 @@ package primitives can be found [here](GUIDE.md#datastore-segments). | ------------- | ------------- | - | | [lib/pq](https://github.com/lib/pq) | [v3/integrations/nrpq](https://godoc.org/github.com/newrelic/go-agent/v3/integrations/nrpq) | Instrument PostgreSQL driver (`pq` driver for `database/sql`) | | [jackc/pgx](https://github.com/jackc/pgx) | [v3/integrations/nrpgx](https://godoc.org/github.com/newrelic/go-agent/v3/integrations/nrpgx) | Instrument PostgreSQL driver (`pgx` driver for `database/sql`)| +| [jackc/pgx/v5](https://github.com/jackc/pgx/v5) | [v3/integrations/nrpgx5](https://godoc.org/github.com/newrelic/go-agent/v3/integrations/nrpgx5) | Instrument PostgreSQL driver (`pgx/v5` driver for `database/sql`)| | [go-mssqldb](github.com/denisenkom/go-mssqldb) | [v3/integrations/nrmssql](https://godoc.org/github.com/newrelic/go-agent/v3/integrations/nrmssql) | Instrument MS SQL driver | | [go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) | [v3/integrations/nrmysql](https://godoc.org/github.com/newrelic/go-agent/v3/integrations/nrmysql) | Instrument MySQL driver | | [elastic/go-elasticsearch](https://github.com/elastic/go-elasticsearch) | [v3/integrations/nrelasticsearch-v7](https://godoc.org/github.com/newrelic/go-agent/v3/integrations/nrelasticsearch-v7) | Instrument Elasticsearch datastore calls |