Skip to content

Commit dd6e323

Browse files
Merge pull request #628 from newrelic/develop
Release 3.20.3
2 parents b972074 + c622b37 commit dd6e323

File tree

12 files changed

+121
-358
lines changed

12 files changed

+121
-358
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 102 deletions
Original file line numberDiff line numberDiff line change
@@ -6,107 +6,6 @@ name: Go Agent CI
66
on: pull_request
77

88
jobs:
9-
go-agent:
10-
runs-on: ubuntu-18.04
11-
env:
12-
# Required when using older versions of Go that do not support gomod.
13-
GOPATH: ${{ github.workspace }}
14-
15-
strategy:
16-
# if one test fails, do not abort the rest
17-
fail-fast: false
18-
matrix:
19-
include:
20-
21-
# v2 agent
22-
# 1.3.x and 1.4.x are failing with a linker error, skip those for now
23-
# - go-version: 1.3.x
24-
# dirs: .
25-
# - go-version: 1.4.x
26-
# dirs: .
27-
- go-version: 1.5.x
28-
dirs: .
29-
- go-version: 1.6.x
30-
dirs: .
31-
- go-version: 1.7.x
32-
dirs: .
33-
- go-version: 1.8.x
34-
dirs: .
35-
- go-version: 1.9.x
36-
dirs: .
37-
- go-version: 1.10.x
38-
dirs: .
39-
- go-version: 1.11.x
40-
dirs: .
41-
- go-version: 1.12.x
42-
dirs: .
43-
- go-version: 1.13.x
44-
dirs: .
45-
46-
# v2 integrations
47-
- go-version: 1.13.x
48-
# only versions up to 0.24.0 of awssdkv2 are supported by this code
49-
pin: github.com/aws/[email protected]
50-
dirs: _integrations/nrawssdk
51-
- go-version: 1.13.x
52-
dirs: _integrations/nrecho
53-
pin: github.com/labstack/[email protected]
54-
- go-version: 1.13.x
55-
dirs: _integrations/nrgorilla/v1
56-
- go-version: 1.13.x
57-
dirs: _integrations/nrlogrus
58-
- go-version: 1.13.x
59-
dirs: _integrations/nrlogxi/v1
60-
- go-version: 1.13.x
61-
dirs: _integrations/nrpkgerrors
62-
- go-version: 1.13.x
63-
dirs: _integrations/nrlambda
64-
- go-version: 1.13.x
65-
dirs: _integrations/nrmysql
66-
- go-version: 1.13.x
67-
dirs: _integrations/nrpq
68-
- go-version: 1.13.x
69-
dirs: _integrations/nrsqlite3
70-
- go-version: 1.13.x
71-
dirs: _integrations/nrgrpc
72-
# As of October 2019, errors result from go get -u github.com/micro/go-micro
73-
# As of June 2020, confirmed errors still result
74-
# - go-version: 1.13.x
75-
# dirs: _integrations/nrmicro
76-
# As of Jul 2022, we have depreciated the legacy nrnats,nrmssql, nrzap, and nrstan integrations tests.
77-
# These tests still exist under the v3 versions of the integrations.
78-
- go-version: 1.13.x
79-
dirs: _integrations/logcontext
80-
- go-version: 1.13.x
81-
dirs: _integrations/nrhttprouter
82-
- go-version: 1.13.x
83-
dirs: _integrations/nrb3
84-
- go-version: 1.13.x
85-
dirs: _integrations/nrmongo
86-
steps:
87-
- name: Install Go
88-
uses: actions/setup-go@v1
89-
with:
90-
go-version: ${{ matrix.go-version }}
91-
92-
- name: Checkout Code
93-
uses: actions/checkout@v1
94-
with:
95-
# Required when using older versions of Go that do not support gomod.
96-
# Note the required presence of the /go-agent/ directory at the
97-
# beginning of this path. It is required in order to match the
98-
# ${{ github.workspace }} used by the GOPATH env var. pwd when cloning
99-
# the repo is <something>/go-agent/ whereas ${{ github.workspace }}
100-
# returns <something/go-agent/go-agent/.
101-
path: ./go-agent/src/github.com/newrelic/go-agent
102-
103-
- name: Run Tests
104-
run: bash build-script.sh
105-
env:
106-
DIRS: ${{ matrix.dirs }}
107-
EXTRATESTING: ${{ matrix.extratesting }}
108-
PIN: ${{ matrix.pin }}
109-
1109
go-agent-v3:
11110
runs-on: ubuntu-18.04
11211
env:
@@ -198,7 +97,6 @@ jobs:
19897
extratesting: go get -u github.com/mattn/go-sqlite3@master
19998
- go-version: 1.17.x
20099
dirs: v3/integrations/nrsnowflake
201-
extratesting: go get -u github.com/snowflakedb/gosnowflake@master
202100
- go-version: 1.17.x
203101
dirs: v3/integrations/nrgrpc
204102
extratesting: go get -u google.golang.org/grpc@master

.travis.yml

Lines changed: 0 additions & 235 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 3.20.3
2+
3+
Please note that the v2 go agent is no longer supported according to our EOL policy.
4+
5+
### Fixed
6+
* Performance Improvements for compression
7+
* nrsnowflake updated to golang 1.17 versions of packages
8+
9+
### Support Statement
10+
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.
11+
12+
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.
13+
14+
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.
15+
16+
117
## 3.20.2
218

319
### Added

0 commit comments

Comments
 (0)