diff --git a/v3/go.mod b/v3/go.mod index afbca8df0..50c4379ff 100644 --- a/v3/go.mod +++ b/v3/go.mod @@ -3,7 +3,7 @@ module github.com/newrelic/go-agent/v3 go 1.20 require ( - github.com/golang/protobuf v1.5.3 + google.golang.org/protobuf v1.5.3 google.golang.org/grpc v1.56.3 ) diff --git a/v3/integrations/nrmssql/nrmssql.go b/v3/integrations/nrmssql/nrmssql.go index a78887432..72f7ef35c 100644 --- a/v3/integrations/nrmssql/nrmssql.go +++ b/v3/integrations/nrmssql/nrmssql.go @@ -1,9 +1,6 @@ // Copyright 2020 New Relic Corporation. All rights reserved. // SPDX-License-Identifier: Apache-2.0 -//go:build go1.10 -// +build go1.10 - // Package nrmssql instruments github.com/microsoft/go-mssqldb. // // Use this package to instrument your MSSQL calls without having to manually diff --git a/v3/newrelic/sql_driver.go b/v3/newrelic/sql_driver.go index c32fa1f08..d2b783f83 100644 --- a/v3/newrelic/sql_driver.go +++ b/v3/newrelic/sql_driver.go @@ -1,9 +1,6 @@ // Copyright 2020 New Relic Corporation. All rights reserved. // SPDX-License-Identifier: Apache-2.0 -//go:build go1.10 -// +build go1.10 - package newrelic import ( diff --git a/v3/newrelic/trace_observer.go b/v3/newrelic/trace_observer.go index 4274c05ed..7e73aa207 100644 --- a/v3/newrelic/trace_observer.go +++ b/v3/newrelic/trace_observer.go @@ -1,11 +1,6 @@ // Copyright 2020 New Relic Corporation. All rights reserved. // SPDX-License-Identifier: Apache-2.0 -//go:build go1.9 -// +build go1.9 - -// This build tag is necessary because GRPC/ProtoBuf libraries only support Go version 1.9 and up. - package newrelic import ( diff --git a/v3/newrelic/trace_observer_impl_test.go b/v3/newrelic/trace_observer_impl_test.go index 17b66035b..b6272bca4 100644 --- a/v3/newrelic/trace_observer_impl_test.go +++ b/v3/newrelic/trace_observer_impl_test.go @@ -1,11 +1,6 @@ // Copyright 2020 New Relic Corporation. All rights reserved. // SPDX-License-Identifier: Apache-2.0 -//go:build go1.9 -// +build go1.9 - -// This build tag is necessary because Infinite Tracing is only supported for Go version 1.9 and up - package newrelic import ( diff --git a/v3/newrelic/trace_observer_test.go b/v3/newrelic/trace_observer_test.go index ee1f9f2c1..00d918508 100644 --- a/v3/newrelic/trace_observer_test.go +++ b/v3/newrelic/trace_observer_test.go @@ -1,11 +1,6 @@ // Copyright 2020 New Relic Corporation. All rights reserved. // SPDX-License-Identifier: Apache-2.0 -//go:build go1.9 -// +build go1.9 - -// This build tag is necessary because Infinite Tracing is only supported for Go version 1.9 and up - package newrelic import (