Skip to content

fix(deps): Update opentelemetry-go monorepo to v1.41.0 - #622

Open
renovate-bot wants to merge 1 commit into
GoogleCloudPlatform:mainfrom
renovate-bot:renovate/opentelemetry-go-monorepo
Open

fix(deps): Update opentelemetry-go monorepo to v1.41.0#622
renovate-bot wants to merge 1 commit into
GoogleCloudPlatform:mainfrom
renovate-bot:renovate/opentelemetry-go-monorepo

Conversation

@renovate-bot

@renovate-bot renovate-bot commented Mar 17, 2026

Copy link
Copy Markdown
Contributor

ℹ️ 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.31.0v1.41.0 age confidence
go.opentelemetry.io/otel/bridge/opencensus v1.31.0v1.41.0 age confidence
go.opentelemetry.io/otel/sdk/metric v1.31.0v1.41.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.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

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • 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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

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

@forking-renovate forking-renovate Bot added the dependencies Pull requests that update a dependency file label Mar 17, 2026
@renovate-bot
renovate-bot requested a review from apeabody as a code owner March 17, 2026 17:24
@forking-renovate

forking-renovate Bot commented Mar 17, 2026

Copy link
Copy Markdown

ℹ️ Artifact update notice

File name: modules/htc-infra/agent/src/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 6 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Due to Go's usage of Minimal Version Selection (MVS), these packages have been updated to the minimum version available, so will still abide by minimumReleaseAge=7 days

Details:

Package Change
go 1.24 -> 1.24.0
go (toolchain) 1.24.1 -> 1.24.13
go.opentelemetry.io/otel/sdk v1.31.0 -> v1.41.0
github.com/go-logr/logr v1.4.2 -> v1.4.3
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da -> v0.0.0-20241129210726-2c02b8208cf8
go.opentelemetry.io/otel/metric v1.31.0 -> v1.41.0
go.opentelemetry.io/otel/trace v1.31.0 -> v1.41.0
golang.org/x/sys v0.30.0 -> v0.41.0

@renovate-bot
renovate-bot requested review from a team, sleighton2022 and yliaog as code owners March 17, 2026 17:24
@dpebot

dpebot commented Mar 17, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@gemini-code-assist

Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request focuses on modernizing the project's Go environment and its observability stack. By upgrading the Go language version and updating the OpenTelemetry Go monorepo, the project gains access to the latest language features, improved performance, and a wealth of new tracing and metrics capabilities. These updates also include various bug fixes and dependency refreshes, contributing to overall code health and maintainability.

Highlights

  • Go Version Update: The project's Go language version has been upgraded from Go 1.24 to Go 1.25.0, along with the removal of the explicit toolchain definition.
  • OpenTelemetry Monorepo Update: The opentelemetry-go monorepo dependencies, including go.opentelemetry.io/otel, go.opentelemetry.io/otel/bridge/opencensus, go.opentelemetry.io/otel/sdk, go.opentelemetry.io/otel/sdk/metric, go.opentelemetry.io/otel/metric, and go.opentelemetry.io/otel/trace, have been updated from v1.31.0 to v1.42.0. This brings in numerous new features, bug fixes, and performance improvements as detailed in the OpenTelemetry release notes, such as the addition of semconv/v1.40.0, error handling in TracerProvider.ForceFlush, and fixes for HTTP2 GOAWAY frames.
  • Other Dependency Updates: Several other Go dependencies have been updated to their latest versions, including github.com/go-logr/logr, github.com/golang/groupcache, github.com/google/go-cmp, github.com/stretchr/testify, go.opentelemetry.io/auto/sdk, and golang.org/x/sys, ensuring the project benefits from the latest stability and security patches.
Changelog
  • 5-appinfra/modules/htc-infra/agent/src/go.mod
    • Updated Go version from 1.24 to 1.25.0
    • Removed explicit Go toolchain definition
    • Updated go.opentelemetry.io/otel from v1.31.0 to v1.42.0
    • Updated go.opentelemetry.io/otel/bridge/opencensus from v1.31.0 to v1.42.0
    • Updated go.opentelemetry.io/otel/sdk from v1.31.0 to v1.42.0
    • Updated go.opentelemetry.io/otel/sdk/metric from v1.31.0 to v1.42.0
    • Updated github.com/go-logr/logr from v1.4.2 to v1.4.3
    • Updated github.com/golang/groupcache to v0.0.0-20241129210726-2c02b8208cf8
    • Added go.opentelemetry.io/auto/sdk v1.2.1
    • Updated go.opentelemetry.io/otel/metric from v1.31.0 to v1.42.0
    • Updated go.opentelemetry.io/otel/trace from v1.31.0 to v1.42.0
    • Updated golang.org/x/sys from v0.30.0 to v0.41.0
  • 5-appinfra/modules/htc-infra/agent/src/go.sum
    • Updated checksums for github.com/go-logr/logr
    • Updated checksums for github.com/golang/groupcache
    • Updated checksums for github.com/google/go-cmp
    • Updated checksums for github.com/stretchr/testify
    • Added checksums for go.opentelemetry.io/auto/sdk
    • Updated checksums for go.opentelemetry.io/otel and its sub-packages
    • Updated checksums for golang.org/x/sys
  • examples/high-throughput-compute-standalone/agent/src/go.mod
    • Updated Go version from 1.24 to 1.25.0
    • Removed explicit Go toolchain definition
    • Updated go.opentelemetry.io/otel from v1.31.0 to v1.42.0
    • Updated go.opentelemetry.io/otel/bridge/opencensus from v1.31.0 to v1.42.0
    • Updated go.opentelemetry.io/otel/sdk from v1.31.0 to v1.42.0
    • Updated go.opentelemetry.io/otel/sdk/metric from v1.31.0 to v1.42.0
    • Updated github.com/go-logr/logr from v1.4.2 to v1.4.3
    • Updated github.com/golang/groupcache to v0.0.0-20241129210726-2c02b8208cf8
    • Added go.opentelemetry.io/auto/sdk v1.2.1
    • Updated go.opentelemetry.io/otel/metric from v1.31.0 to v1.42.0
    • Updated go.opentelemetry.io/otel/trace from v1.31.0 to v1.42.0
    • Updated golang.org/x/sys from v0.30.0 to v0.41.0
  • examples/high-throughput-compute-standalone/agent/src/go.sum
    • Updated checksums for github.com/go-logr/logr
    • Updated checksums for github.com/golang/groupcache
    • Updated checksums for github.com/google/go-cmp
    • Updated checksums for github.com/stretchr/testify
    • Added checksums for go.opentelemetry.io/auto/sdk
    • Updated checksums for go.opentelemetry.io/otel and its sub-packages
    • Updated checksums for golang.org/x/sys
Activity
  • This pull request was automatically generated by renovate-bot to update Go dependencies.
  • The PR description includes detailed release notes for the updated opentelemetry-go versions, highlighting added features, changes, fixes, and removed support for Go 1.24.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the OpenTelemetry Go monorepo from v1.31.0 to v1.42.0. This is a significant version jump that includes multiple feature releases and bug fixes. As part of this update, the required Go version for the modules has been correctly bumped to 1.25.0 to align with the new dependency requirements. The changes are confined to go.mod and go.sum files and appear to be correct for a dependency upgrade. Given the breadth of changes in the dependency, thorough testing is recommended to ensure no regressions have been introduced.

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 4e557ea to 4dcd967 Compare March 19, 2026 01:18
@dpebot

dpebot commented Mar 19, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 4dcd967 to af400d6 Compare March 25, 2026 18:01
@dpebot

dpebot commented Mar 25, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from af400d6 to bc53c79 Compare April 9, 2026 01:40
@dpebot

dpebot commented Apr 9, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from bc53c79 to 9fd8a27 Compare April 10, 2026 11:15
@renovate-bot renovate-bot changed the title chore(deps): Update opentelemetry-go monorepo to v1.42.0 chore(deps): Update opentelemetry-go monorepo to v1.43.0 Apr 10, 2026
@dpebot

dpebot commented Apr 10, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 9fd8a27 to 3519ffc Compare April 10, 2026 22:38
@renovate-bot renovate-bot changed the title chore(deps): Update opentelemetry-go monorepo to v1.43.0 fix(deps): Update opentelemetry-go monorepo to v1.43.0 Apr 10, 2026
@dpebot

dpebot commented Apr 10, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 3519ffc to 8c5d616 Compare April 10, 2026 23:34
@dpebot

dpebot commented Apr 10, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 8c5d616 to 7a778ec Compare April 24, 2026 15:42
@dpebot

dpebot commented Apr 24, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 7a778ec to 3cfba47 Compare April 30, 2026 22:45
@dpebot

dpebot commented Apr 30, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 3cfba47 to 210c196 Compare May 1, 2026 18:52
@dpebot

dpebot commented May 1, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 210c196 to f1d81d5 Compare May 2, 2026 21:33
@dpebot

dpebot commented Aug 19, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from da81210 to 05fb920 Compare August 25, 2026 20:34
@dpebot

dpebot commented Aug 25, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 05fb920 to 183df40 Compare August 28, 2026 10:00
@renovate-bot renovate-bot changed the title fix(deps): Update opentelemetry-go monorepo to v1.41.0 fix(deps): Update module go.opentelemetry.io/otel/sdk/metric to v1.41.0 Aug 28, 2026
@dpebot

dpebot commented Aug 28, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 183df40 to dc3f29f Compare August 28, 2026 19:42
@renovate-bot renovate-bot changed the title fix(deps): Update module go.opentelemetry.io/otel/sdk/metric to v1.41.0 fix(deps): Update opentelemetry-go monorepo to v1.41.0 Aug 28, 2026
@dpebot

dpebot commented Aug 28, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from dc3f29f to 3b3ab32 Compare August 29, 2026 10:08
@dpebot

dpebot commented Aug 29, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 3b3ab32 to 4603c90 Compare August 31, 2026 17:17
@dpebot

dpebot commented Aug 31, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 4603c90 to 7270668 Compare August 31, 2026 23:20
@dpebot

dpebot commented Aug 31, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 7270668 to 838a7c2 Compare September 1, 2026 18:46
@dpebot

dpebot commented Sep 1, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 838a7c2 to 4aff130 Compare September 2, 2026 12:12
@dpebot

dpebot commented Sep 2, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 4aff130 to ef76439 Compare September 4, 2026 15:20
@dpebot

dpebot commented Sep 4, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from ef76439 to dd68ad5 Compare September 4, 2026 15:28
@dpebot

dpebot commented Sep 4, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from dd68ad5 to 2a3a977 Compare September 4, 2026 20:52
@dpebot

dpebot commented Sep 4, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from 2a3a977 to b003c53 Compare September 4, 2026 21:55
@dpebot

dpebot commented Sep 4, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

@renovate-bot
renovate-bot force-pushed the renovate/opentelemetry-go-monorepo branch from b003c53 to 3fe6047 Compare September 4, 2026 23:25
@dpebot

dpebot commented Sep 4, 2026

Copy link
Copy Markdown
Collaborator

/gcbrun

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants