Skip to content

fix(deps): update opentelemetry-go monorepo#235

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/opentelemetry-go-monorepo
Open

fix(deps): update opentelemetry-go monorepo#235
renovate[bot] wants to merge 1 commit intomainfrom
renovate/opentelemetry-go-monorepo

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 13, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
go.opentelemetry.io/otel v1.33.0v1.42.0 age confidence
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.8.0v0.18.0 age confidence
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp v0.8.0v0.18.0 age confidence
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.32.0v1.42.0 age confidence
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.32.0v1.42.0 age confidence
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.32.0v1.42.0 age confidence
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.32.0v1.42.0 age confidence
go.opentelemetry.io/otel/log v0.8.0v0.18.0 age confidence
go.opentelemetry.io/otel/metric v1.33.0v1.42.0 age confidence
go.opentelemetry.io/otel/sdk v1.33.0v1.42.0 age confidence
go.opentelemetry.io/otel/sdk/log v0.8.0v0.18.0 age confidence
go.opentelemetry.io/otel/sdk/metric v1.33.0v1.42.0 age confidence
go.opentelemetry.io/otel/trace v1.33.0v1.42.0 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

open-telemetry/opentelemetry-go (go.opentelemetry.io/otel)

v1.42.0

Compare Source

v1.41.0: /v0.63.0/v0.17.0/v0.0.15

Compare Source

This release is the last to support Go 1.24.
The next release will require at least Go 1.25.

Added
Fixed
  • Update Baggage in go.opentelemetry.io/otel/propagation and Parse and New in go.opentelemetry.io/otel/baggage to comply with W3C Baggage specification limits.
    New and Parse now return partial baggage along with an error when limits are exceeded.
    Errors from baggage extraction are reported to the global error handler. (#​7880)

What's Changed

New Contributors

Full Changelog: open-telemetry/opentelemetry-go@v1.40.0...v1.41.0

v1.40.0

Compare Source

v1.39.0

Compare Source

Overview

Added
  • Greatly reduce the cost of recording metrics in go.opentelemetry.io/otel/sdk/metric using hashing for map keys. (#​7175)
  • Add WithInstrumentationAttributeSet option to go.opentelemetry.io/otel/log, go.opentelemetry.io/otel/metric, and go.opentelemetry.io/otel/trace packages. This provides a concurrent-safe and performant alternative to WithInstrumentationAttributes by accepting a pre-constructed attribute.Set. (#​7287)
  • Add experimental observability for the Prometheus exporter in go.opentelemetry.io/otel/exporters/prometheus. Check the go.opentelemetry.io/otel/exporters/prometheus/internal/x package documentation for more information. (#​7345)
  • Add experimental observability metrics in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc. (#​7353)
  • Add temporality selector functions DeltaTemporalitySelector, CumulativeTemporalitySelector, LowMemoryTemporalitySelector to go.opentelemetry.io/otel/sdk/metric. (#​7434)
  • Add experimental observability metrics for simple log processor in go.opentelemetry.io/otel/sdk/log. (#​7548)
  • Add experimental observability metrics in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc. (#​7459)
  • Add experimental observability metrics in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#​7486)
  • Add experimental observability metrics for simple span processor in go.opentelemetry.io/otel/sdk/trace. (#​7374)
  • Add experimental observability metrics in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#​7512)
  • Add experimental observability metrics for manual reader in go.opentelemetry.io/otel/sdk/metric. (#​7524)
  • Add experimental observability metrics for periodic reader in go.opentelemetry.io/otel/sdk/metric. (#​7571)
  • Support OTEL_EXPORTER_OTLP_LOGS_INSECURE and OTEL_EXPORTER_OTLP_INSECURE environmental variables in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#​7608)
  • Add Enabled method to the Processor interface in go.opentelemetry.io/otel/sdk/log. All Processor implementations now include an Enabled method. (#​7639)
  • The go.opentelemetry.io/otel/semconv/v1.38.0 package. The package contains semantic conventions from the v1.38.0 version of the OpenTelemetry Semantic Conventions. See the migration documentation for information on how to upgrade from go.opentelemetry.io/otel/semconv/v1.37.0.(#​7648)
Changed
  • Distinct in go.opentelemetry.io/otel/attribute is no longer guaranteed to uniquely identify an attribute set. Collisions between Distinct values for different Sets are possible with extremely high cardinality (billions of series per instrument), but are highly unlikely. (#​7175)
  • WithInstrumentationAttributes in go.opentelemetry.io/otel/trace synchronously de-duplicates the passed attributes instead of delegating it to the returned TracerOption. (#​7266)
  • WithInstrumentationAttributes in go.opentelemetry.io/otel/meter synchronously de-duplicates the passed attributes instead of delegating it to the returned MeterOption. (#​7266)
  • WithInstrumentationAttributes in go.opentelemetry.io/otel/log synchronously de-duplicates the passed attributes instead of delegating it to the returned LoggerOption. (#​7266)
  • Rename the OTEL_GO_X_SELF_OBSERVABILITY environment variable to OTEL_GO_X_OBSERVABILITY in go.opentelemetry.io/otel/sdk/trace, go.opentelemetry.io/otel/sdk/log, and go.opentelemetry.io/otel/exporters/stdout/stdouttrace. (#​7302)
  • Improve performance of histogram Record in go.opentelemetry.io/otel/sdk/metric when min and max are disabled using NoMinMax. (#​7306)
  • Improve error handling for dropped data during translation by using prometheus.NewInvalidMetric in go.opentelemetry.io/otel/exporters/prometheus. ⚠️ Breaking Change: Previously, these cases were only logged and scrapes succeeded. Now, when translation would drop data (e.g., invalid label/value), the exporter emits a NewInvalidMetric, and Prometheus scrapes fail with HTTP 500 by default. To preserve the prior behavior (scrapes succeed while errors are logged), configure your Prometheus HTTP handler with: promhttp.HandlerOpts{ ErrorHandling: promhttp.ContinueOnError }. (#​7363)
  • Replace fnv hash with xxhash in go.opentelemetry.io/otel/attribute for better performance. (#​7371)
  • The default TranslationStrategy in go.opentelemetry.io/exporters/prometheus is changed from otlptranslator.NoUTF8EscapingWithSuffixes to otlptranslator.UnderscoreEscapingWithSuffixes. (#​7421)
  • Improve performance of concurrent measurements in go.opentelemetry.io/otel/sdk/metric. (#​7427)
  • Include W3C TraceFlags (bits 0–7) in the OTLP Span.Flags field in go.opentelemetry.io/exporters/otlp/otlptrace/otlptracehttp and go.opentelemetry.io/exporters/otlp/otlptrace/otlptracegrpc. (#​7438)
  • The ErrorType function in go.opentelemetry.io/otel/semconv/v1.37.0 now handles custom error types.
    If an error implements an ErrorType() string method, the return value of that method will be used as the error type. (#​7442)
Fixed
  • Fix WithInstrumentationAttributes options in go.opentelemetry.io/otel/trace, go.opentelemetry.io/otel/metric, and go.opentelemetry.io/otel/log to properly merge attributes when passed multiple times instead of replacing them. Attributes with duplicate keys will use the last value passed. (#​7300)
  • The equality of attribute.Set when using the Equal method is not affected by the user overriding the empty set pointed to by attribute.EmptySet in go.opentelemetry.io/otel/attribute. (#​7357)
  • Return partial OTLP export errors to the caller in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc. (#​7372)
  • Return partial OTLP export errors to the caller in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#​7372)
  • Return partial OTLP export errors to the caller in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc. (#​7372)
  • Return partial OTLP export errors to the caller in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp. (#​7372)
  • Return partial OTLP export errors to the caller in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc. (#​7372)
  • Return partial OTLP export errors to the caller in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#​7372)
  • Fix AddAttributes, SetAttributes, SetBody on Record in go.opentelemetry.io/otel/sdk/log to not mutate input. (#​7403)
  • Do not double record measurements of RecordSet methods in go.opentelemetry.io/otel/semconv/v1.37.0. (#​7655)
  • Do not double record measurements of RecordSet methods in go.opentelemetry.io/otel/semconv/v1.36.0. (#​7656)
Removed
  • Drop support for [Go 1.23]. (#​7274)
  • Remove the FilterProcessor interface in go.opentelemetry.io/otel/sdk/log. The Enabled method has been added to the Processor interface instead. All Processor implementations must now implement the Enabled method. Custom processors that do not filter records can implement Enabled to return true. (#​7639)

What's Changed


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Contributor Author

renovate bot commented Mar 13, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: ci/go.sum
Command failed: go get -t ./...
go: module go.opentelemetry.io/otel@v1.42.0 requires go >= 1.25.0; switching to go1.25.8
go: downloading go1.25.8 (linux/amd64)
go: downloading github.com/stuttgart-things/machineshop v1.8.0
go: downloading github.com/stuttgart-things/sthingsCli v0.3.0
go: downloading github.com/pterm/pterm v0.12.79
go: downloading github.com/stuttgart-things/sthingsBase v0.1.41
go: downloading filippo.io/age v1.2.1
go: downloading github.com/AlecAivazis/survey/v2 v2.3.7
go: downloading github.com/RediSearch/redisearch-go v1.1.1
go: downloading github.com/allegro/bigcache/v3 v3.1.0
go: downloading github.com/atc0005/go-teams-notify/v2 v2.13.0
go: downloading github.com/getsops/sops/v3 v3.9.3
go: downloading github.com/go-git/go-billy/v5 v5.6.1
go: downloading github.com/go-git/go-git/v5 v5.13.1
go: downloading github.com/gomodule/redigo v1.9.2
go: downloading github.com/google/go-github/v68 v68.0.0
go: downloading github.com/hashicorp/vault/api v1.15.0
go: downloading github.com/jedib0t/go-pretty/v6 v6.6.5
go: downloading github.com/minio/minio-go/v7 v7.0.83
go: downloading github.com/nitishm/go-rejson/v4 v4.2.0
go: downloading github.com/redis/go-redis/v9 v9.7.0
go: downloading github.com/schollz/progressbar/v3 v3.18.0
go: downloading github.com/spf13/viper v1.19.0
go: downloading github.com/stuttgart-things/redisqueue v0.0.0-20230628084515-1d31f7874df7
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading sigs.k8s.io/yaml v1.4.0
go: downloading atomicgo.dev/cursor v0.2.0
go: downloading atomicgo.dev/keyboard v0.2.9
go: downloading atomicgo.dev/schedule v0.1.0
go: downloading github.com/gookit/color v1.5.4
go: downloading github.com/lithammer/fuzzysearch v1.1.8
go: downloading github.com/mattn/go-runewidth v0.0.16
go: downloading golang.org/x/term v0.40.0
go: downloading golang.org/x/text v0.34.0
go: downloading github.com/mattn/go-colorable v0.1.14
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/snowzach/rotatefilehook v0.0.0-20220211133110-53752135082d
go: downloading golang.org/x/sys v0.41.0
go: downloading golang.org/x/crypto v0.48.0
go: downloading github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: downloading github.com/fatih/color v1.18.0
go: downloading github.com/goware/prefixer v0.0.0-20160118172347-395022866408
go: downloading github.com/mitchellh/go-wordwrap v1.0.1
go: downloading golang.org/x/net v0.51.0
go: downloading github.com/urfave/cli v1.22.16
go: downloading google.golang.org/grpc v1.79.2
go: downloading google.golang.org/protobuf v1.36.11
go: downloading dario.cat/mergo v1.0.1
go: downloading github.com/ProtonMail/go-crypto v1.1.3
go: downloading github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3
go: downloading github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8
go: downloading github.com/google/go-querystring v1.1.0
go: downloading github.com/cenkalti/backoff/v4 v4.3.0
go: downloading github.com/go-jose/go-jose/v4 v4.1.3
go: downloading github.com/hashicorp/errwrap v1.1.0
go: downloading github.com/hashicorp/go-cleanhttp v0.5.2
go: downloading github.com/hashicorp/go-multierror v1.1.1
go: downloading github.com/hashicorp/go-retryablehttp v0.7.7
go: downloading github.com/hashicorp/go-rootcerts v1.0.2
go: downloading github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8
go: downloading github.com/hashicorp/go-secure-stdlib/strutil v0.1.2
go: downloading github.com/hashicorp/hcl v1.0.0
go: downloading github.com/mitchellh/mapstructure v1.5.0
go: downloading golang.org/x/time v0.8.0
go: downloading github.com/dustin/go-humanize v1.0.1
go: downloading github.com/goccy/go-json v0.10.4
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/klauspost/compress v1.17.11
go: downloading github.com/minio/md5-simd v1.1.2
go: downloading github.com/go-ini/ini v1.67.0
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f
go: downloading github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
go: downloading github.com/rivo/uniseg v0.4.7
go: downloading github.com/fsnotify/fsnotify v1.7.0
go: downloading github.com/sagikazarmark/locafero v0.4.0
go: downloading github.com/sagikazarmark/slog-shim v0.1.0
go: downloading github.com/spf13/afero v1.11.0
go: downloading github.com/spf13/cast v1.6.0
go: downloading github.com/spf13/pflag v1.0.5
go: downloading github.com/git-chglog/git-chglog v0.15.4
go: downloading github.com/mattn/goveralls v0.0.12
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/containerd/console v1.0.3
go: downloading github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e
go: downloading github.com/mattn/go-isatty v0.0.20
go: downloading gopkg.in/natefinch/lumberjack.v2 v2.2.1
go: downloading github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b
go: downloading github.com/lib/pq v1.10.9
go: downloading github.com/getsops/gopgagent v0.0.0-20241224165529-7044f28e491e
go: downloading github.com/aws/aws-sdk-go-v2 v1.32.7
go: downloading github.com/aws/aws-sdk-go-v2/config v1.28.7
go: downloading github.com/aws/aws-sdk-go-v2/credentials v1.17.48
go: downloading github.com/aws/aws-sdk-go-v2/service/kms v1.37.8
go: downloading github.com/aws/aws-sdk-go-v2/service/sts v1.33.3
go: downloading gopkg.in/ini.v1 v1.67.0
go: downloading github.com/blang/semver v3.5.1+incompatible
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.6
go: downloading github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.3.0
go: downloading cloud.google.com/go/kms v1.20.3
go: downloading cloud.google.com/go v0.117.0
go: downloading google.golang.org/api v0.214.0
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20260209200024-4cfbd4190f57
go: downloading google.golang.org/genproto v0.0.0-20241223144023-3abc09e42ca8
go: downloading github.com/cyphar/filepath-securejoin v0.3.6
go: downloading github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376
go: downloading github.com/pjbgf/sha1cd v0.3.0
go: downloading github.com/emirpasic/gods v1.18.1
go: downloading github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
go: downloading github.com/hashicorp/go-sockaddr v1.0.7
go: downloading github.com/ryanuber/go-glob v1.0.0
go: downloading github.com/klauspost/cpuid/v2 v2.2.9
go: downloading github.com/rs/xid v1.6.0
go: downloading github.com/sourcegraph/conc v0.3.0
go: downloading golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
go: downloading github.com/subosito/gotenv v1.6.0
go: downloading github.com/magiconair/properties v1.8.7
go: downloading github.com/pelletier/go-toml/v2 v2.2.2
go: downloading github.com/imdario/mergo v0.3.15
go: downloading github.com/tsuyoshiwada/go-gitcmd v0.0.0-20180205145712-5f1f5f9475df
go: downloading github.com/urfave/cli/v2 v2.27.5
go: downloading golang.org/x/mod v0.32.0
go: downloading golang.org/x/tools v0.41.0
go: downloading cloud.google.com/go/storage v1.49.0
go: downloading github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.44
go: downloading github.com/aws/aws-sdk-go-v2/service/s3 v1.71.1
go: downloading github.com/google/go-cmp v0.7.0
go: downloading github.com/aws/smithy-go v1.22.1
go: downloading github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.22
go: downloading github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1
go: downloading github.com/aws/aws-sdk-go-v2/service/sso v1.24.8
go: downloading github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.7
go: downloading github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.26
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.7
go: downloading github.com/russross/blackfriday/v2 v2.1.0
go: downloading github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0
go: downloading github.com/AzureAD/microsoft-authentication-library-for-go v1.3.2
go: downloading github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.1.0
go: downloading cloud.google.com/go/iam v1.3.0
go: downloading cloud.google.com/go/longrunning v0.6.3
go: downloading github.com/googleapis/gax-go/v2 v2.14.1
go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20260209200024-4cfbd4190f57
go: downloading cloud.google.com/go/auth v0.13.0
go: downloading golang.org/x/oauth2 v0.35.0
go: downloading github.com/cloudflare/circl v1.5.0
go: downloading gopkg.in/warnings.v0 v0.1.2
go: downloading github.com/kevinburke/ssh_config v1.2.0
go: downloading github.com/skeema/knownhosts v1.3.0
go: downloading github.com/xanzy/ssh-agent v0.3.3
go: downloading github.com/Masterminds/sprig/v3 v3.2.3
go: downloading github.com/andygrunwald/go-jira v1.16.0
go: downloading github.com/coreos/go-semver v0.3.1
go: downloading github.com/kyokomi/emoji/v2 v2.2.11
go: downloading github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1
go: downloading cloud.google.com/go/compute/metadata v0.9.0
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.49.0
go: downloading go.opentelemetry.io/contrib/detectors/gcp v1.39.0
go: downloading go.opentelemetry.io/otel v1.42.0
go: downloading go.opentelemetry.io/otel/sdk/metric v1.42.0
go: downloading go.opentelemetry.io/otel/sdk v1.42.0
go: downloading github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.7
go: downloading github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.26
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.4.7
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.7
go: downloading github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.26
go: downloading github.com/kylelemons/godebug v1.1.0
go: downloading github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
go: downloading cloud.google.com/go/auth/oauth2adapt v0.2.6
go: downloading go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0
go: downloading go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0
go: downloading github.com/google/s2a-go v0.1.8
go: downloading github.com/Microsoft/go-winio v0.6.2
go: downloading go.uber.org/multierr v1.9.0
go: downloading github.com/Masterminds/goutils v1.1.1
go: downloading github.com/Masterminds/semver/v3 v3.2.0
go: downloading github.com/huandu/xstrings v1.3.3
go: downloading github.com/mitchellh/copystructure v1.0.0
go: downloading github.com/shopspring/decimal v1.2.0
go: downloading github.com/fatih/structs v1.1.0
go: downloading github.com/golang-jwt/jwt/v4 v4.4.2
go: downloading github.com/trivago/tgo v1.0.7
go: downloading go.opentelemetry.io/otel/trace v1.42.0
go: downloading cloud.google.com/go/monitoring v1.22.0
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.49.0
go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.30.0
go: downloading go.opentelemetry.io/otel/metric v1.42.0
go: downloading github.com/golang-jwt/jwt/v5 v5.2.1
go: downloading github.com/felixge/httpsnoop v1.0.4
go: downloading github.com/googleapis/enterprise-certificate-proxy v0.3.4
go: downloading go.uber.org/atomic v1.9.0
go: downloading github.com/mitchellh/reflectwalk v1.0.0
go: downloading github.com/go-logr/logr v1.4.3
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading go.opentelemetry.io/auto/sdk v1.2.1
go: downloading github.com/envoyproxy/go-control-plane v0.14.0
go: downloading github.com/envoyproxy/go-control-plane/envoy v1.36.0
go: downloading github.com/cncf/xds/go v0.0.0-20251210132809-ee656c7534f5
go: downloading github.com/envoyproxy/protoc-gen-validate v1.3.0
go: downloading github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10
go: downloading github.com/spiffe/go-spiffe/v2 v2.6.0
go: downloading golang.org/x/sync v0.19.0
go: downloading cel.dev/expr v0.25.1
go: dagger/ci imports
	dagger/ci/internal/dagger: package dagger/ci/internal/dagger is not in std (/runner/cache/others/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.25.8.linux-amd64/src/dagger/ci/internal/dagger)

@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch 2 times, most recently from 8324508 to 9b127cc Compare March 31, 2025 11:54
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch 3 times, most recently from 902a752 to 67cf233 Compare May 22, 2025 08:23
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch from 67cf233 to 51b612e Compare June 25, 2025 08:46
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch 2 times, most recently from ab3fd31 to 8a2c818 Compare August 5, 2025 00:52
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch from 8a2c818 to 399511d Compare August 31, 2025 09:37
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch 4 times, most recently from 476aefb to 148998a Compare September 10, 2025 10:24
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch 4 times, most recently from fdf1454 to 21ffd01 Compare September 26, 2025 04:35
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch 5 times, most recently from 01777b6 to 6b0d14e Compare October 21, 2025 23:45
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch 2 times, most recently from f53b86d to de02374 Compare November 11, 2025 06:37
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch 2 times, most recently from d032fd6 to ddd1389 Compare November 23, 2025 09:42
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch 2 times, most recently from a7eef5b to 9c9604b Compare December 8, 2025 21:49
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch 2 times, most recently from 22d15a3 to 0fc802b Compare December 19, 2025 05:46
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch from 0fc802b to 6156b8f Compare February 2, 2026 20:30
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch 5 times, most recently from 903e5fe to c2dfb79 Compare March 5, 2026 22:36
@renovate renovate bot force-pushed the renovate/opentelemetry-go-monorepo branch from c2dfb79 to b8ab56a Compare March 6, 2026 22:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants