Overview
This release is the last to support Go 1.22.
The next release will require at least Go 1.23.
Warning
This is the last version to use Semantic Conventions v1.20.0 for HTTP libraries
by default. The next version (0.61.0) will default to v1.26.0, and the
following one (0.62.0) will drop support for Semantic Conventions v1.20.0
You can switch to the new Semantic Conventions right now by setting the
OTEL_SEMCONV_STABILITY_OPT_IN=http/dup
environment variable in your
application.
See also the HTTP semantic conventions stability
migration
Added
- Add support for configuring
ClientCertificate
andClientKey
field for OTLP exporters ingo.opentelemetry.io/contrib/config
. (#6378) - Add
WithAttributeBuilder
,AttributeBuilder
,DefaultAttributeBuilder
,DynamoDBAttributeBuilder
,SNSAttributeBuilder
to support adding attributes based on SDK input and output ingo.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws
. (#6543) - Support for the
OTEL_SEMCONV_STABILITY_OPT_IN=http/dup
environment variable ingo.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux
to emit attributes for both the v1.20.0 and v1.26.0 semantic conventions. (#6652) - Added the
WithMeterProvider
option to allow passing a custom meter provider togo.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux
. (#6648) - Added the
WithMetricAttributesFn
option to allow setting dynamic, per-request metric attributes ingo.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux
. (#6648) - Added metrics support, and emit all stable metrics from the Semantic Conventions in
go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux
. (#6648) - Add support for configuring
Insecure
field for OTLP exporters ingo.opentelemetry.io/contrib/config
. (#6658) - Support for the
OTEL_SEMCONV_STABILITY_OPT_IN=http/dup
environment variable ininstrumentation/net/http/httptrace/otelhttptrace
to emit attributes for both the v1.20.0 and v1.26.0 semantic conventions. (#6720) - Support for the
OTEL_SEMCONV_STABILITY_OPT_IN=http/dup
environment variable ininstrumentation/github.com/emicklei/go-restful/otelrestful
to emit attributes for both the v1.20.0 and v1.26.0 semantic conventions. (#6710) - Added metrics support, and emit all stable metrics from the Semantic Conventions in
go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin
. (#6747) - Support for the
OTEL_SEMCONV_STABILITY_OPT_IN=http/dup
environment variable ingo.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin
to emit attributes for both the v1.20.0 and v1.26.0 semantic conventions. (#6778) - Support
OTEL_SEMCONV_STABILITY_OPT_IN
to emit telemetry following bothgo.opentelemetry.io/otel/semconv/v1.21.0
(default) andgo.opentelemetry.io/otel/semconv/v1.26.0
(opt-in) ingo.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo
per the Database semantic convention stability migration guide. (#6172) - Support Go 1.24. (#6765)
- Add support for configuring
HeadersList
field for OTLP exporters ingo.opentelemetry.io/contrib/config
. (#6657) - Add
go.opentelemetry.io/contrib/otelconf
module which is a replacement forgo.opentelemetry.io/contrib/config
. (#6796) - Added
WithFallbackLogExporter
to allow setting a fallback log exporter whenOTEL_LOGS_EXPORTER
is unset ingo.opentelemetry.io/contrib/exporters/autoexport
. (#6844)
Changed
- Add custom attribute to the span after execution of the SDK rather than before in
go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws
. (#6543) - The
code.function
attribute emitted bygo.opentelemetry.io/contrib/bridges/otelslog
now stores the package path-qualified function name instead of just the function name.
Thecode.namespace
attribute is no longer added. (#6870) - The
code.function
attribute emitted bygo.opentelemetry.io/contrib/bridges/otelzap
now stores the package path-qualified function name instead of just the function name.
Thecode.namespace
attribute is no longer added. (#6870) - Improve performance by reducing allocations for common request protocols in the modules below. (#6845)
go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful
go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin
go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
Deprecated
- Deprecate
WithAttributeSetter
,AttributeSetter
,DefaultAttributeSetter
,DynamoDBAttributeSetter
,SNSAttributeSetter
in favor ofWithAttributeBuilder
,AttributeBuilder
,DefaultAttributeBuilder
,DynamoDBAttributeBuilder
,SNSAttributeBuilder
ingo.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws
. (#6543) - Deprecate
go.opentelemetry.io/contrib/config
module in favor ofgo.opentelemetry.io/contrib/otelconf
. This is the last release of this module. (#6796)
Fixed
- Use
context.Background()
as default context instead of nil ingo.opentelemetry.io/contrib/bridges/otellogr
. (#6527) - Convert Prometheus histogram buckets to non-cumulative otel histogram buckets in
go.opentelemetry.io/contrib/bridges/prometheus
. (#6685) - Don't start spans that never end for filtered out gRPC stats handler in
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc
. (#6695) - Fix a possible nil dereference panic in
NewSDK
ofgo.opentelemetry.io/contrib/config/v0.3.0
. (#6752) - Fix prometheus endpoint with an IPv6 address in
go.opentelemetry.io/contrib/config
. (#6815)
What's Changed
- chore(deps): update golang.org/x/telemetry digest to 04cd7ba by @renovate in #6642
- fix(deps): update aws-sdk-go-v2 monorepo by @renovate in #6643
- chore(deps): update module github.com/cloudwego/base64x to v0.1.5 by @renovate in #6647
- config: add tests for socket endpoint by @dmathieu in #6636
- otellogr: Fix nil context panic by @flc1125 in #6527
- config: add support for extra TLS configuration by @mattsains in #6378
- chore(deps): update module github.com/grpc-ecosystem/grpc-gateway/v2 to v2.26.0 by @renovate in #6655
- chore(deps): update module github.com/pjbgf/sha1cd to v0.3.2 by @renovate in #6656
- fix(deps): update module github.com/aws/aws-sdk-go-v2/service/sns to v1.33.14 by @renovate in #6659
- chore(deps): update dependency codespell to v2.4.0 by @renovate in #6660
- fix(deps): update module github.com/aws/smithy-go to v1.22.2 by @renovate in #6661
- chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.118.0 by @renovate in #6662
- chore(deps): update module go.opentelemetry.io/build-tools to v0.17.0 by @renovate in #6666
- fix(deps): update googleapis to 138b5a5 by @renovate in #6664
- chore(deps): update codecov/codecov-action action to v5.2.0 by @renovate in #6665
- fix(deps): update module github.com/aws/aws-sdk-go-v2/service/s3 to v1.74.0 by @renovate in #6667
- fix(deps): update module go.opentelemetry.io/build-tools/crosslink to v0.17.0 by @renovate in #6668
- fix(deps): update module go.opentelemetry.io/build-tools/gotmpl to v0.17.0 by @renovate in #6669
- chore: Group renovate build-tools update by @MrAlias in #6670
- fix(deps): update module go.opentelemetry.io/build-tools/multimod to v0.17.0 by @renovate in #6674
- chore(deps): update module github.com/go-git/go-git/v5 to v5.13.2 by @renovate in #6672
- Count code owners approvals towards the two required approvals by @dmathieu in #6675
- chore(deps): update codecov/codecov-action action to v5.3.0 by @renovate in #6676
- fix(deps): update module google.golang.org/grpc to v1.70.0 by @renovate in #6677
- Remove the instrgen module by @MrAlias in #6671
- Support output value in AttributeSetter by @SodaDev in #6543
- fix(deps): update googleapis to 65684f5 by @renovate in #6679
- fix(deps): update module google.golang.org/protobuf to v1.36.4 by @renovate in #6681
- fix(deps): update aws-sdk-go-v2 monorepo by @renovate in #6682
- chore(deps): update codecov/codecov-action action to v5.3.1 by @renovate in #6680
- Make the package dynamic in internal/shared/semconv by @dmathieu in #6663
- chore(deps): update module github.com/bytedance/sonic to v1.12.8 by @renovate in #6684
- fix(deps): update module github.com/googlecloudplatform/opentelemetry-operations-go/detectors/gcp to v1.26.0 by @renovate in #6687
- fix(deps): update googleapis to 29210b9 by @renovate in #6688
- chore(deps): update module github.com/goccy/go-json to v0.10.5 by @renovate in #6689
- chore(deps): update module github.com/cyphar/filepath-securejoin to v0.4.1 by @renovate in #6690
- fix(deps): update golang.org/x to 3edf0e9 by @renovate in #6691
- chore(deps): update dependency codespell to v2.4.1 by @renovate in #6694
- fix(deps): update golang.org/x to e0ece0d by @renovate in #6693
- fix(deps): update module github.com/aws/aws-sdk-go-v2/service/s3 to v1.75.0 by @renovate in #6697
- chore(deps): update module github.com/spf13/pflag to v1.0.6 by @renovate in #6696
- Setup body wrapper in otelmux by @martinyonatann in #6650
- Add documentation on runtime.Start for scheduling metrics by @anuraaga in #6686
- otelgrpc: only start span if not filtered out by @vianamjr in #6695
- [chore] Update codespell target by @MrAlias in #6698
- fix(deps): update aws-sdk-go-v2 monorepo by @renovate in #6700
- fix: convert Prometheus histograms to non-cumulative otel histogram by @mehran-prs in #6685
- chore(deps): update module github.com/skeema/knownhosts to v1.3.1 by @renovate in #6701
- chore(deps): update module github.com/goccy/go-yaml to v1.15.16 by @renovate in #6702
- fix(deps): update module github.com/shirou/gopsutil/v4 to v4.25.1 by @renovate in #6706
- fix(deps): update aws-sdk-go-v2 monorepo by @renovate in #6705
- chore(deps): update module github.com/polyfloyd/go-errorlint to v1.7.1 by @renovate in #6703
- Migrate to
semconv
forotelmux
and implement the package intracing
by @martinyonatann in #6652 - chore(deps): update module github.com/goccy/go-yaml to v1.15.17 by @renovate in #6708
- Templateize the request http package by @dmathieu in #6709
- Remove trailing space from changelog by @dmathieu in #6711
- chore(deps): update golang.org/x by @renovate in #6714
- fix(deps): update aws-sdk-go-v2 monorepo by @renovate in #6715
- fix(deps): update googleapis to 7023788 by @renovate in #6713
- chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.119.0 by @renovate in #6716
- chore(deps): update golang.org/x/telemetry digest to 3af0d96 by @renovate in #6717
- chore(deps): update lycheeverse/lychee-action action to v2.3.0 by @renovate in #6718
- feat: support metrics for otelmux by @martinyonatann in #6648
- chore(deps): update module github.com/cloudflare/circl to v1.6.0 by @renovate in #6719
- config: add support for Insecure by @mattsains in #6658
- chore(deps): update module github.com/catenacyber/perfsprint to v0.8.0 by @renovate in #6721
- fix(deps): update aws-sdk-go-v2 monorepo by @renovate in #6724
- chore(deps): update golang.org/x/telemetry digest to c67c2d1 by @renovate in #6723
- fix(deps): update build-tools to v0.18.0 by @renovate in #6726
- fix(deps): update module google.golang.org/protobuf to v1.36.5 by @renovate in #6729
- chore(deps): update golang.org/x/telemetry digest to 557cf9c by @renovate in #6730
- fix(deps): update module github.com/aws/aws-sdk-go-v2/service/s3 to v1.76.0 by @renovate in #6733
- fix(deps): update golang.org/x to f9890c6 by @renovate in #6735
- chore(deps): update python docker tag to v3.13.2 by @renovate in #6734
- Use semconv migration package for httptrace by @dmathieu in #6720
- chore(deps): update module golang.org/x/sys to v0.30.0 by @renovate in #6736
- Use semconv package for otelrestful by @dmathieu in #6710
- chore(deps): update module golang.org/x/sys to v0.30.0 by @renovate in #6738
- chore(deps): update module github.com/grpc-ecosystem/grpc-gateway/v2 to v2.26.1 by @renovate in #6739
- fix(deps): update googleapis to e9438ea by @renovate in #6740
- chore(deps): update module golang.org/x/crypto to v0.33.0 by @renovate in #6741
- chore(deps): update module 4d63.com/gochecknoglobals to v0.2.2 by @renovate in #6742
- chore(deps): update module github.com/goccy/go-yaml to v1.15.19 by @renovate in #6743
- chore(deps): update module go-simpler.org/sloglint to v0.9.0 by @renovate in #6744
- chore(deps): update module github.com/catenacyber/perfsprint to v0.8.1 by @renovate in #6745
- Close stale issues and PRs after 2 years of inactivity by @dmathieu in #6746
- fix(deps): update module golang.org/x/net to v0.35.0 by @renovate in #6748
- fix(deps): update golang.org/x by @renovate in #6749
- fix(deps): update aws-sdk-go-v2 monorepo by @renovate in #6751
- fix(deps): update golang.org/x/exp digest to 939b2ce by @renovate in #6750
- chore(deps): update module github.com/goccy/go-yaml to v1.15.20 by @renovate in #6753
- fix(deps): update module github.com/aws/aws-sdk-go-v2/service/dynamodb to v1.40.1 by @renovate in #6755
- chore(deps): update module github.com/ldez/exptostd to v0.4.1 by @renovate in #6754
- config: fix issue causing a crash on invalid value by @codeboten in #6752
- chore(deps): update module github.com/goccy/go-yaml to v1.15.22 by @renovate in #6761
- fix(deps): update module github.com/golangci/golangci-lint to v1.64.2 by @renovate in #6758
- chore(deps): update golang.org/x/telemetry digest to 7530529 by @renovate in #6766
- chore(deps): update module github.com/go-critic/go-critic to v0.12.0 by @renovate in #6768
- chore(deps): update module github.com/sanity-io/litter to v1.5.7 by @renovate in #6771
- chore(deps): update module github.com/nunnatsa/ginkgolinter to v0.19.0 by @renovate in #6774
- chore(deps): update golang docker tag to v1.24 by @renovate in #6773
- chore(deps): update module github.com/gostaticanalysis/forcetypeassert to v0.2.0 by @renovate in #6775
- fix(deps): update googleapis to 5a70512 by @renovate in #6770
- fix(deps): update module github.com/golangci/golangci-lint to v1.64.4 by @renovate in #6772
- Add support for Go 1.24 by @dmathieu in #6765
- Replace tenv linter with usetesting by @dmathieu in #6776
- chore(deps): update module github.com/securego/gosec/v2 to v2.22.1 by @renovate in #6777
- chore(deps): update module github.com/tdakkota/asciicheck to v0.4.0 by @renovate in #6779
- fix(deps): update module github.com/golangci/golangci-lint to v1.64.5 by @renovate in #6781
- feat(otelgin): add metrics recording for HTTP server by @flc1125 in #6747
- refactor(otelgin): refactor HTTP server attributes to use new
semconv
package by @flc1125 in #6778 - fix(deps): update aws-sdk-go-v2 monorepo by @renovate in #6783
- chore(deps): update golang.org/x/telemetry digest to 6f9b61d by @renovate in #6782
- chore(deps): update module github.com/goccy/go-yaml to v1.15.23 by @renovate in #6784
- chore(deps): update module github.com/tdakkota/asciicheck to v0.4.1 by @renovate in #6785
- chore(deps): update module github.com/sanity-io/litter to v1.5.8 by @renovate in #6789
- chore(deps): update module github.com/mgechev/revive to v1.7.0 by @renovate in #6793
- chore(deps): update module github.com/spf13/cobra to v1.9.0 by @renovate in #6792
- fix(deps): update golang.org/x to eff6e97 by @renovate in #6791
- chore(deps): update module github.com/tetafro/godot to v1.5.0 by @renovate in #6787
- chore(deps): update module github.com/go-playground/validator/v10 to v10.25.0 by @renovate in #6790
- chore(deps): update module github.com/spf13/cobra to v1.9.1 by @renovate in #6794
- chore(deps): update module github.com/4meepo/tagalign to v1.4.2 by @renovate in #6795
- [chore] Rename traceProvider to tracerProvider by @pellared in #6801
- fix(deps): update module github.com/aws/smithy-go to v1.22.3 by @renovate in #6798
- chore(deps): update module github.com/nunnatsa/ginkgolinter to v0.19.1 by @renovate in #6803
- chore(deps): update prom/prometheus docker tag to v3.2.0 by @renovate in #6797
- fix(deps): update golang.org/x to aa4b98e by @renovate in #6804
- config: support HeadersList by @mattsains in #6657
- Remove otelhttp/test module by @pellared in #6763
- fix(deps): update googleapis to 56aae31 by @renovate in #6806
- chore(deps): update module github.com/catenacyber/perfsprint to v0.8.2 by @renovate in #6805
- fix(deps): update aws-sdk-go-v2 monorepo by @renovate in #6807
- chore(deps): update module github.com/bytedance/sonic to v1.12.9 by @renovate in #6809
- chore(deps): update module golang.org/x/sys to v0.30.0 by @renovate in #6808
- chore(deps): update module github.com/kisielk/errcheck to v1.9.0 by @renovate in #6810
- Add FOSSA scanning workflow by @opentelemetrybot in #6799
- chore(otelgin): rename files for improved clarity and consistency by @flc1125 in #6786
- fix(deps): update module github.com/prometheus/client_golang to v1.21.0 by @renovate in #6811
- chore(deps): update module github.com/klauspost/compress to v1.18.0 by @renovate in #6812
- chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.120.0 by @renovate in #6814
- chore(deps): update module github.com/quasilyte/go-ruleguard to v0.4.4 by @renovate in #6816
- chore(deps): update golang.org/x/telemetry digest to 165e2f8 by @renovate in #6819
- Add http semantic conventions notice to changelog by @dmathieu in #6737
- [chore] Add OSS-Fuzz badge by @pellared in #6817
- [config] Allow prometheus to configure IPv6 by using the standard net host port joining by @bogdandrutu in #6815
- [chore] Reuse contributing docs from Core repo by @pellared in #6818
- otelconfig: new module as a copy of config module which is being deprecated by @mikeblum in #6796
- chore(deps): update module github.com/ldez/exptostd to v0.4.2 by @renovate in #6825
- fix(deps): update module github.com/google/go-cmp to v0.7.0 by @renovate in #6826
- chore(deps): update module github.com/gaijinentertainment/go-exhaustruct/v3 to v3.3.1 by @renovate in #6832
- chore(deps): update github.com/lufia/plan9stats digest to a661cff by @renovate in #6831
- chore(deps): update module github.com/rogpeppe/go-internal to v1.14.0 by @renovate in #6834
- fix(deps): update module go.mongodb.org/mongo-driver to v1.17.3 by @renovate in #6837
- chore(deps): update module github.com/klauspost/cpuid/v2 to v2.2.10 by @renovate in #6836
- minsev: Update to use sdk/log.FilterProcessor by @pellared in #6833
- fix(deps): update build-tools to v0.19.0 by @renovate in #6842
- chore(deps): update module github.com/bombsimon/wsl/v4 to v4.6.0 by @renovate in #6843
- chore(deps): update module github.com/rogpeppe/go-internal to v1.14.1 by @renovate in #6840
- chore(deps): update module github.com/catenacyber/perfsprint to v0.9.0 by @renovate in #6848
- chore(deps): update codecov/codecov-action action to v5.4.0 by @renovate in #6851
- fix(deps): update module github.com/googlecloudplatform/opentelemetry-operations-go/detectors/gcp to v1.27.0 by @renovate in #6850
- fix(deps): update module github.com/emicklei/go-restful/v3 to v3.12.2 by @renovate in #6849
- chore(deps): update prom/prometheus docker tag to v3.2.1 by @renovate in #6847
- Added WithFallbackLogExporter func by @sonalgaud12 in #6844
- chore(deps): update module github.com/go-git/go-git/v5 to v5.14.0 by @renovate in #6855
- chore(deps): update module github.com/protonmail/go-crypto to v1.1.6 by @renovate in #6854
- fix(deps): update aws-sdk-go-v2 monorepo by @renovate in #6856
- chore(deps): update module github.com/kkhaike/contextcheck to v1.1.6 by @renovate in #6858
- chore(deps): update module 4d63.com/gocheckcompilerdirectives to v1.3.0 by @renovate in #6861
- fix(deps): update module github.com/shirou/gopsutil/v4 to v4.25.2 by @renovate in #6863
- chore(deps): update mvdan.cc/unparam digest to 0df0534 by @renovate in #6864
- chore(deps): update module github.com/bytedance/sonic to v1.12.10 by @renovate in #6865
- fix(deps): update module github.com/golangci/golangci-lint to v1.64.6 by @renovate in #6867
- chore(deps): update github.com/lufia/plan9stats digest to 876f3ea by @renovate in #6872
- chore(deps): update github.com/golangci/dupl digest to 44c6a0b by @renovate in #6874
- otelslog, otelzap: align with code attributes semantic conventions by @pellared in #6870
- Look at stale issues in ascending order by @dmathieu in #6871
- fix(deps): update build-tools to v0.20.0 by @renovate in #6877
- improve netProtocol performance for well-known protocols by @boekkooi-impossiblecloud in #6845
- chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.121.0 by @renovate in #6885
- chore(deps): update module sigs.k8s.io/structured-merge-diff/v4 to v4.6.0 by @renovate in #6884
- chore(deps): update module github.com/ryancurrah/gomodguard to v1.4.1 by @renovate in #6883
- fix(deps): update module google.golang.org/grpc to v1.71.0 by @renovate in #6886
- fix(deps): update module github.com/prometheus/client_golang to v1.21.1 by @renovate in #6879
- fix(deps): update aws-sdk-go-v2 monorepo by @renovate in #6882
- chore(deps): update k8s.io/kube-openapi digest to e5f78fe by @renovate in #6880
- otelmongo: support OTEL_SEMCONV_STABILITY_OPT_IN for v1.26.0 semconv by @prestonvasquez in #6172
- fix OTEL_HTTP_CLIENT_COMPATIBILITY_MODE to OTEL_SEMCONV_STABILITY_OPT_IN in the changelog by @dmathieu in #6887
- chore(deps): update module github.com/securego/gosec/v2 to v2.22.2 by @renovate in #6888
- Release v1.35.0/v0.60.0/v0.29.0/v0.15.0/v0.10.0/v0.8.0/v0.7.0 by @XSAM in #6889
New Contributors
- @mattsains made their first contribution in #6378
- @SodaDev made their first contribution in #6543
- @martinyonatann made their first contribution in #6650
- @anuraaga made their first contribution in #6686
- @vianamjr made their first contribution in #6695
- @mehran-prs made their first contribution in #6685
- @mikeblum made their first contribution in #6796
- @sonalgaud12 made their first contribution in #6844
- @boekkooi-impossiblecloud made their first contribution in #6845
Full Changelog: v1.34.0...v1.35.0