Skip to content

Commit 21bf8ad

Browse files
authored
Merge pull request #940 from rittneje/bugfix/remove-extraneous-version-constraints
remove all extraneous version constraints
2 parents 6110044 + 3dcea2b commit 21bf8ad

File tree

6 files changed

+1
-22
lines changed

6 files changed

+1
-22
lines changed

v3/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/newrelic/go-agent/v3
33
go 1.20
44

55
require (
6-
github.com/golang/protobuf v1.5.3
6+
google.golang.org/protobuf v1.5.3
77
google.golang.org/grpc v1.56.3
88
)
99

v3/integrations/nrmssql/nrmssql.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// Copyright 2020 New Relic Corporation. All rights reserved.
22
// SPDX-License-Identifier: Apache-2.0
33

4-
//go:build go1.10
5-
// +build go1.10
6-
74
// Package nrmssql instruments github.com/microsoft/go-mssqldb.
85
//
96
// Use this package to instrument your MSSQL calls without having to manually

v3/newrelic/sql_driver.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// Copyright 2020 New Relic Corporation. All rights reserved.
22
// SPDX-License-Identifier: Apache-2.0
33

4-
//go:build go1.10
5-
// +build go1.10
6-
74
package newrelic
85

96
import (

v3/newrelic/trace_observer.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
// Copyright 2020 New Relic Corporation. All rights reserved.
22
// SPDX-License-Identifier: Apache-2.0
33

4-
//go:build go1.9
5-
// +build go1.9
6-
7-
// This build tag is necessary because GRPC/ProtoBuf libraries only support Go version 1.9 and up.
8-
94
package newrelic
105

116
import (

v3/newrelic/trace_observer_impl_test.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
// Copyright 2020 New Relic Corporation. All rights reserved.
22
// SPDX-License-Identifier: Apache-2.0
33

4-
//go:build go1.9
5-
// +build go1.9
6-
7-
// This build tag is necessary because Infinite Tracing is only supported for Go version 1.9 and up
8-
94
package newrelic
105

116
import (

v3/newrelic/trace_observer_test.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
// Copyright 2020 New Relic Corporation. All rights reserved.
22
// SPDX-License-Identifier: Apache-2.0
33

4-
//go:build go1.9
5-
// +build go1.9
6-
7-
// This build tag is necessary because Infinite Tracing is only supported for Go version 1.9 and up
8-
94
package newrelic
105

116
import (

0 commit comments

Comments
 (0)