Skip to content

Update tested Go version #787

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go_version: [1.14, 1.15]
go_version: [1.15, 1.16]
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

### Changed

- Supported minimum version of Go bumped from 1.14 to 1.15. (#787)

### Removed

- Remove service name from `otelmongodb` configuration and span attributes. (#763)
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,20 @@ This project is currently in a pre-GA phase. Our progress towards a GA release
candidate is tracked in [this project
board](https://github.com/orgs/open-telemetry/projects/5).

### Compatibility

This project is tested on the following systems.

| OS | Go Version | Architecture |
| ------- | ---------- | ------------ |
| Ubuntu | 1.16 | amd64 |
| Ubuntu | 1.15 | amd64 |
| Ubuntu | 1.16 | 386 |
| Ubuntu | 1.15 | 386 |

While this project should work for other systems, no compatibility guarantees
are made for those systems currently.

## Contributing

For information on how to contribute, consult [the contributing guidelines](./CONTRIBUTING.md)
2 changes: 1 addition & 1 deletion detectors/aws/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/detectors/aws

go 1.14
go 1.15

require (
github.com/aws/aws-sdk-go v1.38.40
Expand Down
2 changes: 1 addition & 1 deletion detectors/gcp/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/detectors/gcp

go 1.14
go 1.15

require (
cloud.google.com/go v0.81.0
Expand Down
2 changes: 1 addition & 1 deletion exporters/metric/cortex/example/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ version: "3"

services:
app:
image: golang:1.14-alpine
image: golang:1.15-alpine
volumes:
- .:/app
working_dir: /app
Expand Down
2 changes: 1 addition & 1 deletion exporters/metric/cortex/example/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/exporters/metric/cortex/example

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib/exporters/metric/cortex => ../
Expand Down
2 changes: 1 addition & 1 deletion exporters/metric/cortex/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/exporters/metric/cortex

go 1.14
go 1.15

require (
github.com/gogo/protobuf v1.3.2
Expand Down
2 changes: 1 addition & 1 deletion exporters/metric/cortex/utils/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/exporters/metric/cortex/utils

go 1.14
go 1.15

replace go.opentelemetry.io/contrib/exporters/metric/cortex => ../

Expand Down
2 changes: 1 addition & 1 deletion exporters/metric/datadog/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/exporters/metric/datadog

go 1.14
go 1.15

require (
github.com/DataDog/datadog-go v3.7.2+incompatible
Expand Down
2 changes: 1 addition & 1 deletion exporters/metric/dogstatsd/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/exporters/metric/dogstatsd

go 1.14
go 1.15

require (
github.com/stretchr/testify v1.7.0
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module go.opentelemetry.io/contrib

go 1.14
go 1.15
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama/otelsarama/example

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../../
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama/otelsarama

go 1.14
go 1.15

replace go.opentelemetry.io/contrib => ../../../../..

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.14-alpine AS base
FROM golang:1.15-alpine AS base
COPY . /src/
WORKDIR /src/instrumentation/github.com/astaxie/beego/otelbeego/example

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/astaxie/beego/example

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../../
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/github.com/astaxie/beego/otelbeego

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../..
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM golang:1.14-alpine AS base
FROM golang:1.15-alpine AS base
COPY . /src/
WORKDIR /src/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../..
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM golang:1.14-alpine AS base
FROM golang:1.15-alpine AS base
COPY . /src/
WORKDIR /src/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/opentelemetry-go-contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/example

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../../../
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache

go 1.14
go 1.15

replace go.opentelemetry.io/contrib => ../../../../../../

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM golang:1.14-alpine AS base
FROM golang:1.15-alpine AS base
COPY . /src/
WORKDIR /src/instrumentation/github.com/emicklei/go-restful/otelrestful

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
version: "3.7"
services:
go-restful-client:
image: golang:1.14-alpine
image: golang:1.15-alpine
networks:
- example
command:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/opentelemetry-go-contrib/instrumentation/github.com/emicklei/go-restful/otelrestful/example

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../../
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/opentelemetry-go-contrib/instrumentation/github.com/gin-gonic/gin/otelgin/example

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../../
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/github.com/go-kit/kit/otelkit/example

go 1.14
go 1.15

require (
github.com/gorilla/mux v1.8.0
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/github.com/go-kit/kit/otelkit/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/github.com/go-kit/kit/otelkit

go 1.14
go 1.15

require (
github.com/go-kit/kit v0.10.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql/example

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../../
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql

go 1.14
go 1.15

replace go.opentelemetry.io/contrib => ../../../../../

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/opentelemetry-go-contrib/instrumentation/github.com/gorilla/mux/otelmux/example

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../../
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../..
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/opentelemetry-go-contrib/instrumentation/github.com/labstack/echo/otelecho/example

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../../
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/example

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/google.golang.org/grpc/otelgrpc/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc

go 1.14
go 1.15

replace go.opentelemetry.io/contrib => ../../../../

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/opentelemetry-go-contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron/example

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/gopkg.in/macaron.v1/otelmacaron/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../..
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/host/example/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/opentelemetry-go-contrib/instrumentation/host/example

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/host/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/host

go 1.14
go 1.15

replace go.opentelemetry.io/contrib => ../..

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM golang:1.14-alpine AS base
FROM golang:1.15-alpine AS base
COPY . /src/
WORKDIR /src/instrumentation/net/http/httptrace/otelhttptrace/example

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace/example

go 1.14
go 1.15

replace (
go.opentelemetry.io/contrib => ../../../../../../
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/net/http/httptrace/otelhttptrace/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace

go 1.14
go 1.15

replace go.opentelemetry.io/contrib => ../../../../..

Expand Down
2 changes: 1 addition & 1 deletion instrumentation/net/http/otelhttp/example/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM golang:1.14-alpine AS base
FROM golang:1.15-alpine AS base
COPY . /src/
WORKDIR /src/instrumentation/net/http/otelhttp/example

Expand Down
Loading