Skip to content

Commit e484e9e

Browse files
authored
Prepare for releasing v0.15.1 (#496)
* . Prepare for releasing v0.15.1 * Add diff link to CHANGELOG
1 parent 22c3914 commit e484e9e

File tree

34 files changed

+51
-44
lines changed

34 files changed

+51
-44
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,23 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
88

99
## [Unreleased]
1010

11+
## [0.15.1] - 2020-12-14
12+
1113
### Added
1214

1315
- Add registry link check to `Makefile` and pre-release script. (#446)
16+
- A new AWS X-Ray ID Generator (#459)
17+
18+
### Fixed
19+
20+
- Fixes the body replacement in otelhttp to not to mutate a nil body. (#484)
1421

1522
## [0.15.0] - 2020-12-11
1623

1724
### Added
1825

1926
- A new Amazon EKS resource detector. (#465)
2027
- A new `gcp.CloudRun` detector for detecting resource from a Cloud Run instance. (#455)
21-
- A new AWS X-Ray ID Generator (#459)
2228

2329
## [0.14.0] - 2020-11-20
2430

@@ -243,7 +249,8 @@ First official tagged release of `contrib` repository.
243249
- Prefix support for dogstatsd (#34)
244250
- Update Go Runtime package to use batch observer (#44)
245251

246-
[Unreleased]: https://github.com/open-telemetry/opentelemetry-go-contrib/compare/v0.15.0...HEAD
252+
[Unreleased]: https://github.com/open-telemetry/opentelemetry-go-contrib/compare/v0.15.1...HEAD
253+
[0.15.1]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v0.15.1
247254
[0.15.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v0.15.0
248255
[0.14.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v0.14.0
249256
[0.13.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v0.13.0

contrib.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package contrib // import "go.opentelemetry.io/contrib"
1818

1919
// Version is the current release version of OpenTelemetry Contrib in use.
2020
func Version() string {
21-
return "0.15.0"
21+
return "0.15.1"
2222
// This string is updated by the pre_release.sh script during release
2323
}
2424

exporters/metric/cortex/example/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ replace (
88
)
99

1010
require (
11-
go.opentelemetry.io/contrib/exporters/metric/cortex v0.15.0
12-
go.opentelemetry.io/contrib/exporters/metric/cortex/utils v0.15.0
11+
go.opentelemetry.io/contrib/exporters/metric/cortex v0.15.1
12+
go.opentelemetry.io/contrib/exporters/metric/cortex/utils v0.15.1
1313
go.opentelemetry.io/otel v0.15.0
1414
go.opentelemetry.io/otel/sdk v0.15.0
1515
gopkg.in/yaml.v2 v2.2.5 // indirect

exporters/metric/cortex/utils/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ require (
88
github.com/spf13/afero v1.5.1
99
github.com/spf13/viper v1.7.1
1010
github.com/stretchr/testify v1.6.1
11-
go.opentelemetry.io/contrib/exporters/metric/cortex v0.15.0
11+
go.opentelemetry.io/contrib/exporters/metric/cortex v0.15.1
1212
)

instrumentation/github.com/Shopify/sarama/otelsarama/example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ replace (
99

1010
require (
1111
github.com/Shopify/sarama v1.27.2
12-
go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama/otelsarama v0.15.0
12+
go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama/otelsarama v0.15.1
1313
go.opentelemetry.io/otel v0.15.0
1414
go.opentelemetry.io/otel/exporters/stdout v0.15.0
1515
go.opentelemetry.io/otel/sdk v0.15.0

instrumentation/github.com/Shopify/sarama/otelsarama/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ replace go.opentelemetry.io/contrib => ../../../../..
77
require (
88
github.com/Shopify/sarama v1.27.2
99
github.com/stretchr/testify v1.6.1
10-
go.opentelemetry.io/contrib v0.15.0
10+
go.opentelemetry.io/contrib v0.15.1
1111
go.opentelemetry.io/otel v0.15.0
1212
)

instrumentation/github.com/astaxie/beego/otelbeego/example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ replace (
1111

1212
require (
1313
github.com/astaxie/beego v1.12.3
14-
go.opentelemetry.io/contrib/instrumentation/github.com/astaxie/beego/otelbeego v0.15.0
14+
go.opentelemetry.io/contrib/instrumentation/github.com/astaxie/beego/otelbeego v0.15.1
1515
go.opentelemetry.io/otel v0.15.0
1616
go.opentelemetry.io/otel/exporters/stdout v0.15.0
1717
go.opentelemetry.io/otel/sdk v0.15.0

instrumentation/github.com/astaxie/beego/otelbeego/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ replace (
1111
require (
1212
github.com/astaxie/beego v1.12.3
1313
github.com/stretchr/testify v1.6.1
14-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.15.0
15-
go.opentelemetry.io/contrib/propagators v0.15.0
14+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.15.1
15+
go.opentelemetry.io/contrib/propagators v0.15.1
1616
go.opentelemetry.io/otel v0.15.0
1717
golang.org/x/net v0.0.0-20200707034311-ab3426394381 // indirect
1818
golang.org/x/sys v0.0.0-20200803210538-64077c9b5642 // indirect

instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ replace (
99

1010
require (
1111
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b
12-
go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache v0.15.0
12+
go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache v0.15.1
1313
go.opentelemetry.io/otel v0.15.0
1414
go.opentelemetry.io/otel/exporters/stdout v0.15.0
1515
go.opentelemetry.io/otel/sdk v0.15.0

instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ replace go.opentelemetry.io/contrib => ../../../../../../
77
require (
88
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b
99
github.com/stretchr/testify v1.6.1
10-
go.opentelemetry.io/contrib v0.15.0
10+
go.opentelemetry.io/contrib v0.15.1
1111
go.opentelemetry.io/otel v0.15.0
1212
)

instrumentation/github.com/emicklei/go-restful/otelrestful/example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ replace (
1010

1111
require (
1212
github.com/emicklei/go-restful/v3 v3.4.0
13-
go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful v0.15.0
13+
go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful v0.15.1
1414
go.opentelemetry.io/otel v0.15.0
1515
go.opentelemetry.io/otel/exporters/stdout v0.15.0
1616
go.opentelemetry.io/otel/sdk v0.15.0

instrumentation/github.com/emicklei/go-restful/otelrestful/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require (
1111
github.com/emicklei/go-restful/v3 v3.4.0
1212
github.com/json-iterator/go v1.1.10 // indirect
1313
github.com/stretchr/testify v1.6.1
14-
go.opentelemetry.io/contrib v0.15.0
15-
go.opentelemetry.io/contrib/propagators v0.15.0
14+
go.opentelemetry.io/contrib v0.15.1
15+
go.opentelemetry.io/contrib/propagators v0.15.1
1616
go.opentelemetry.io/otel v0.15.0
1717
)

instrumentation/github.com/gin-gonic/gin/otelgin/example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ replace (
1010

1111
require (
1212
github.com/gin-gonic/gin v1.6.3
13-
go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.15.0
13+
go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.15.1
1414
go.opentelemetry.io/otel v0.15.0
1515
go.opentelemetry.io/otel/exporters/stdout v0.15.0
1616
go.opentelemetry.io/otel/sdk v0.15.0

instrumentation/github.com/gin-gonic/gin/otelgin/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ replace (
1010
require (
1111
github.com/gin-gonic/gin v1.6.3
1212
github.com/stretchr/testify v1.6.1
13-
go.opentelemetry.io/contrib v0.15.0
14-
go.opentelemetry.io/contrib/propagators v0.15.0
13+
go.opentelemetry.io/contrib v0.15.1
14+
go.opentelemetry.io/contrib/propagators v0.15.1
1515
go.opentelemetry.io/otel v0.15.0
1616
)

instrumentation/github.com/gocql/gocql/otelgocql/example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ replace (
99

1010
require (
1111
github.com/gocql/gocql v0.0.0-20200624222514-34081eda590e
12-
go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql v0.15.0
12+
go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql v0.15.1
1313
go.opentelemetry.io/otel v0.15.0
1414
go.opentelemetry.io/otel/exporters/metric/prometheus v0.15.0
1515
go.opentelemetry.io/otel/exporters/trace/zipkin v0.15.0

instrumentation/github.com/gocql/gocql/otelgocql/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ require (
88
github.com/gocql/gocql v0.0.0-20200624222514-34081eda590e
99
github.com/golang/snappy v0.0.1 // indirect
1010
github.com/stretchr/testify v1.6.1
11-
go.opentelemetry.io/contrib v0.15.0
11+
go.opentelemetry.io/contrib v0.15.1
1212
go.opentelemetry.io/otel v0.15.0
1313
)

instrumentation/github.com/gorilla/mux/otelmux/example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ replace (
1010

1111
require (
1212
github.com/gorilla/mux v1.8.0
13-
go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux v0.15.0
13+
go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux v0.15.1
1414
go.opentelemetry.io/otel v0.15.0
1515
go.opentelemetry.io/otel/exporters/stdout v0.15.0
1616
go.opentelemetry.io/otel/sdk v0.15.0

instrumentation/github.com/gorilla/mux/otelmux/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require (
1111
github.com/felixge/httpsnoop v1.0.1
1212
github.com/gorilla/mux v1.8.0
1313
github.com/stretchr/testify v1.6.1
14-
go.opentelemetry.io/contrib v0.15.0
15-
go.opentelemetry.io/contrib/propagators v0.15.0
14+
go.opentelemetry.io/contrib v0.15.1
15+
go.opentelemetry.io/contrib/propagators v0.15.1
1616
go.opentelemetry.io/otel v0.15.0
1717
)

instrumentation/github.com/labstack/echo/otelecho/example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ replace (
1010

1111
require (
1212
github.com/labstack/echo/v4 v4.1.17
13-
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.15.0
13+
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.15.1
1414
go.opentelemetry.io/otel v0.15.0
1515
go.opentelemetry.io/otel/exporters/stdout v0.15.0
1616
go.opentelemetry.io/otel/sdk v0.15.0

instrumentation/github.com/labstack/echo/otelecho/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ replace (
1010
require (
1111
github.com/labstack/echo/v4 v4.1.17
1212
github.com/stretchr/testify v1.6.1
13-
go.opentelemetry.io/contrib v0.15.0
14-
go.opentelemetry.io/contrib/propagators v0.15.0
13+
go.opentelemetry.io/contrib v0.15.1
14+
go.opentelemetry.io/contrib/propagators v0.15.1
1515
go.opentelemetry.io/otel v0.15.0
1616
)

instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/stretchr/testify v1.6.1
99
github.com/xdg/stringprep v1.0.0 // indirect
1010
go.mongodb.org/mongo-driver v1.4.4
11-
go.opentelemetry.io/contrib v0.15.0
11+
go.opentelemetry.io/contrib v0.15.1
1212
go.opentelemetry.io/otel v0.15.0
1313
golang.org/x/crypto v0.0.0-20191105034135-c7e5f84aec59 // indirect
1414
)

instrumentation/google.golang.org/grpc/otelgrpc/example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ replace (
99

1010
require (
1111
github.com/golang/protobuf v1.4.3
12-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.15.0
12+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.15.1
1313
go.opentelemetry.io/otel v0.15.0
1414
go.opentelemetry.io/otel/exporters/stdout v0.15.0
1515
go.opentelemetry.io/otel/sdk v0.15.0

instrumentation/google.golang.org/grpc/otelgrpc/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace go.opentelemetry.io/contrib => ../../../../
77
require (
88
github.com/golang/protobuf v1.4.3
99
github.com/stretchr/testify v1.6.1
10-
go.opentelemetry.io/contrib v0.15.0
10+
go.opentelemetry.io/contrib v0.15.1
1111
go.opentelemetry.io/otel v0.15.0
1212
google.golang.org/grpc v1.34.0
1313
)

instrumentation/gopkg.in/macaron.v1/otelmacaron/example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ replace (
99
)
1010

1111
require (
12-
go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron v0.15.0
12+
go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron v0.15.1
1313
go.opentelemetry.io/otel v0.15.0
1414
go.opentelemetry.io/otel/exporters/stdout v0.15.0
1515
go.opentelemetry.io/otel/sdk v0.15.0

instrumentation/gopkg.in/macaron.v1/otelmacaron/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ replace (
99

1010
require (
1111
github.com/stretchr/testify v1.6.1
12-
go.opentelemetry.io/contrib v0.15.0
13-
go.opentelemetry.io/contrib/propagators v0.15.0
12+
go.opentelemetry.io/contrib v0.15.1
13+
go.opentelemetry.io/contrib/propagators v0.15.1
1414
go.opentelemetry.io/otel v0.15.0
1515
gopkg.in/macaron.v1 v1.4.0
1616
)

instrumentation/host/example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ replace (
88
)
99

1010
require (
11-
go.opentelemetry.io/contrib/instrumentation/host v0.15.0
11+
go.opentelemetry.io/contrib/instrumentation/host v0.15.1
1212
go.opentelemetry.io/otel/exporters/stdout v0.15.0
1313
go.opentelemetry.io/otel/sdk v0.15.0
1414
)

instrumentation/host/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/go-ole/go-ole v1.2.4 // indirect
1010
github.com/shirou/gopsutil v2.20.9+incompatible
1111
github.com/stretchr/testify v1.6.1
12-
go.opentelemetry.io/contrib v0.15.0
12+
go.opentelemetry.io/contrib v0.15.1
1313
go.opentelemetry.io/otel v0.15.0
1414
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a // indirect
1515
)

instrumentation/net/http/httptrace/otelhttptrace/example/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ replace (
99
)
1010

1111
require (
12-
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.15.0
13-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.15.0
12+
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.15.1
13+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.15.1
1414
go.opentelemetry.io/otel v0.15.0
1515
go.opentelemetry.io/otel/exporters/stdout v0.15.0
1616
go.opentelemetry.io/otel/sdk v0.15.0

instrumentation/net/http/httptrace/otelhttptrace/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ replace go.opentelemetry.io/contrib => ../../../../..
77
require (
88
github.com/google/go-cmp v0.5.4
99
github.com/stretchr/testify v1.6.1
10-
go.opentelemetry.io/contrib v0.15.0
10+
go.opentelemetry.io/contrib v0.15.1
1111
go.opentelemetry.io/otel v0.15.0
1212
)

instrumentation/net/http/otelhttp/example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ replace (
88
)
99

1010
require (
11-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.15.0
11+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.15.1
1212
go.opentelemetry.io/otel v0.15.0
1313
go.opentelemetry.io/otel/exporters/stdout v0.15.0
1414
go.opentelemetry.io/otel/sdk v0.15.0

instrumentation/net/http/otelhttp/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ replace go.opentelemetry.io/contrib => ../../../..
77
require (
88
github.com/felixge/httpsnoop v1.0.1
99
github.com/stretchr/testify v1.6.1
10-
go.opentelemetry.io/contrib v0.15.0
10+
go.opentelemetry.io/contrib v0.15.1
1111
go.opentelemetry.io/otel v0.15.0
1212
)

instrumentation/runtime/example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ replace (
88
)
99

1010
require (
11-
go.opentelemetry.io/contrib/instrumentation/runtime v0.15.0
11+
go.opentelemetry.io/contrib/instrumentation/runtime v0.15.1
1212
go.opentelemetry.io/otel/exporters/stdout v0.15.0
1313
go.opentelemetry.io/otel/sdk v0.15.0
1414
)

instrumentation/runtime/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ replace go.opentelemetry.io/contrib => ../..
66

77
require (
88
github.com/stretchr/testify v1.6.1
9-
go.opentelemetry.io/contrib v0.15.0
9+
go.opentelemetry.io/contrib v0.15.1
1010
go.opentelemetry.io/otel v0.15.0
1111
)

propagators/opencensus/examples/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ go 1.14
44

55
require (
66
go.opencensus.io v0.22.6-0.20201102222123-380f4078db9f
7-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.15.0
8-
go.opentelemetry.io/contrib/propagation/opencensus v0.15.0
7+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.15.1
8+
go.opentelemetry.io/contrib/propagation/opencensus v0.15.1
99
go.opentelemetry.io/otel v0.15.0
1010
go.opentelemetry.io/otel/exporters/stdout v0.15.0
1111
go.opentelemetry.io/otel/sdk v0.15.0

0 commit comments

Comments
 (0)