Skip to content

Commit

Permalink
changed minimum go version to 1.17 as echo latest version is breaking…
Browse files Browse the repository at this point in the history
… in go.16
  • Loading branch information
nithinputhenveettil committed Dec 1, 2023
1 parent e4fb2cb commit 92b31b1
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
4 changes: 2 additions & 2 deletions instrumentation/instaecho/example_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// (c) Copyright IBM Corp. 2021
// (c) Copyright Instana Inc. 2016

//go:build go1.16
// +build go1.16
//go:build go1.17
// +build go1.17

package instaecho_test

Expand Down
18 changes: 17 additions & 1 deletion instrumentation/instaecho/go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,26 @@
module github.com/instana/go-sensor/instrumentation/instaecho

go 1.15
go 1.17

require (
github.com/instana/go-sensor v1.58.0
github.com/labstack/echo/v4 v4.11.3
github.com/opentracing/opentracing-go v1.2.0
github.com/stretchr/testify v1.8.4
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/labstack/gommon v0.4.0 // indirect
github.com/looplab/fsm v1.0.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
4 changes: 2 additions & 2 deletions instrumentation/instaecho/handler.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// (c) Copyright IBM Corp. 2021
// (c) Copyright Instana Inc. 2016

//go:build go1.16
// +build go1.16
//go:build go1.17
// +build go1.17

package instaecho

Expand Down
4 changes: 2 additions & 2 deletions instrumentation/instaecho/handler_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// (c) Copyright IBM Corp. 2021
// (c) Copyright Instana Inc. 2016

//go:build go1.16
// +build go1.16
//go:build go1.17
// +build go1.17

package instaecho_test

Expand Down

0 comments on commit 92b31b1

Please sign in to comment.