Skip to content

fix(deps): update go dependencies#1783

Open
renovate[bot] wants to merge 1 commit intodevfrom
renovate/go-non-major
Open

fix(deps): update go dependencies#1783
renovate[bot] wants to merge 1 commit intodevfrom
renovate/go-non-major

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Apr 6, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
github.com/antchfx/xmlquery v1.4.4v1.5.1 age confidence
github.com/asticode/go-astisub v0.34.0v0.39.0 age confidence
github.com/crewjam/saml v0.4.14v0.5.1 age confidence
github.com/dgraph-io/ristretto/v2 v2.1.0v2.4.0 age confidence
github.com/getsentry/sentry-go v0.31.1v0.44.1 age confidence
github.com/getsentry/sentry-go/gin v0.31.1v0.44.1 age confidence
github.com/gin-contrib/gzip v1.2.2v1.2.6 age confidence
github.com/gin-gonic/gin v1.10.0v1.12.0 age confidence
github.com/go-gormigrate/gormigrate/v2 v2.1.3v2.1.5 age confidence
github.com/go-ldap/ldap/v3 v3.4.10v3.4.13 age confidence
github.com/go-sql-driver/mysql v1.9.1v1.9.3 age confidence
github.com/golang-jwt/jwt/v5 v5.2.2v5.3.1 age confidence
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3v2.28.0 age confidence
github.com/icza/gox v0.2.0v0.2.6 age confidence
github.com/meilisearch/meilisearch-go v0.31.0v0.36.1 age confidence
github.com/prometheus/client_golang v1.21.1v1.23.2 age confidence
github.com/shirou/gopsutil/v4 v4.25.9v4.26.3 age confidence
github.com/sirupsen/logrus v1.9.3v1.9.4 age confidence
github.com/spf13/viper v1.20.0v1.21.0 age confidence
golang.org/x/crypto v0.46.0v0.49.0 age confidence
golang.org/x/sync v0.17.0v0.20.0 age confidence
golang.org/x/sync v0.7.0v0.20.0 age confidence
golang.org/x/sync v0.19.0v0.20.0 age confidence
google.golang.org/grpc v1.79.3v1.80.0 age confidence
google.golang.org/protobuf v1.36.6v1.36.11 age confidence
gorm.io/driver/mysql v1.5.7v1.6.0 age confidence
gorm.io/gorm v1.25.12v1.31.1 age confidence

Release Notes

antchfx/xmlquery (github.com/antchfx/xmlquery)

v1.5.1

Compare Source

Update packages:
  • update github.com/antchfx/xpath from v1.3.5 to v1.3.6

v1.5.0

Compare Source

New Features
  • Add xml.ProcInst supports. Include the new ProcessingInstruction Node Type (#​133, #​106)
  • Add a LineNumbers feature that allows retrieving the line number of each node in the XML file via the WithLineNumbers option. (#​132 by @​aufi)
  • New methods: ChildNodes() (#​127 by @​rmkane)
Other

update github.com/antchfx/xpath from 1.3.3 to 1.3.5. See https://github.com/antchfx/xpath/releases

asticode/go-astisub (github.com/asticode/go-astisub)

v0.39.0

Compare Source

v0.38.0

Compare Source

v0.37.0

Compare Source

v0.36.0

Compare Source

v0.35.0

Compare Source

crewjam/saml (github.com/crewjam/saml)

v0.5.1

Compare Source

v0.5.0

Compare Source

dgraph-io/ristretto (github.com/dgraph-io/ristretto/v2)

v2.4.0

Compare Source

Added
  • Implement public Cache.IterValues() method (#​475)
  • Allow custom key types with underlying types in Key constraint (#​478)
Fixed
  • Fix compilation on 32-bit archs (#​465)

Full Changelog: dgraph-io/ristretto@v2.3.0...v2.4.0

v2.3.0: Ristretto v2.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: dgraph-io/ristretto@v2.2.0...v2.3.0

v2.2.0: Ristretto v2.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: dgraph-io/ristretto@v2.1.0...v2.2.0

getsentry/sentry-go (github.com/getsentry/sentry-go)

v0.44.1: 0.44.1

Compare Source

[!NOTE]
v0.44.0 had to be released as v0.44.1 due to a technical issue.

New Features ✨
  • Add RemoveAttribute api on the scope. by @​giortzisg in #​1224
  • Deprecate Scope.SetExtra, Scope.SetExtras, and Scope.RemoveExtra in favor of Scope.SetAttributes and Scope.RemoveAttribute by @​giortzisg in #​1224
    • The recommended migration path is to use SetAttributes to attach values to logs and metrics. Note that attributes do not appear on error events; if you only capture errors, use SetTag or SetContext instead.
    • Before:
    scope.SetExtra("key.string", "str")
    scope.SetExtra("key.int", 42)
    • After (for error events) — use tags and contexts:
    scope.SetTag("key.string", "str")
    scope.SetContext("my_data", sentry.Context{"key.int": 42})
    • After (for logs and metrics) — use attributes:
    scope.SetAttributes(
        attribute.String("key.string", "str"),
        attribute.Int("key.int", 42),
    )
  • Add support for homogenous arrays by @​giortzisg in #​1203
  • Add support for client reports by @​giortzisg in #​1192
  • Add org id propagation in sentry_baggage by @​giortzisg in #​1210
  • Add OrgID and StrictTraceContinuation client options. by @​giortzisg in #​1210
  • Add the option to set attributes on the scope by @​giortzisg in #​1208
Bug Fixes 🐛
Internal Changes 🔧
Ai
Deps
Other

v0.44.0: 0.44.0

Compare Source

[!NOTE]
v0.44.0 had to be released as v0.44.1 due to a technical issue.

New Features ✨
  • Add RemoveAttribute api on the scope. by @​giortzisg in #​1224
  • Deprecate Scope.SetExtra, Scope.SetExtras, and Scope.RemoveExtra in favor of Scope.SetAttributes and Scope.RemoveAttribute by @​giortzisg in #​1224
    • The recommended migration path is to use SetAttributes to attach values to logs and metrics. Note that attributes do not appear on error events; if you only capture errors, use SetTag or SetContext instead.
    • Before:
    scope.SetExtra("key.string", "str")
    scope.SetExtra("key.int", 42)
    • After (for error events) — use tags and contexts:
    scope.SetTag("key.string", "str")
    scope.SetContext("my_data", sentry.Context{"key.int": 42})
    • After (for logs and metrics) — use attributes:
    scope.SetAttributes(
        attribute.String("key.string", "str"),
        attribute.Int("key.int", 42),
    )
  • Add support for homogenous arrays by @​giortzisg in #​1203
  • Add support for client reports by @​giortzisg in #​1192
  • Add org id propagation in sentry_baggage by @​giortzisg in #​1210
  • Add OrgID and StrictTraceContinuation client options. by @​giortzisg in #​1210
  • Add the option to set attributes on the scope by @​giortzisg in #​1208
Bug Fixes 🐛
Internal Changes 🔧
Ai
Deps
Other

v0.43.0: 0.43.0

Compare Source

Breaking Changes 🛠
  • Add support for go 1.26 by @​giortzisg in #​1193
    • bump minimum supported go version to 1.24
  • change type signature of attributes for Logs and Metrics. by @​giortzisg in #​1205
    • users are not supposed to modify Attributes directly on the Log/Metric itself, but this is still is a breaking change on the type.
  • Send uint64 overflowing attributes as numbers. by @​giortzisg in #​1198
    • The SDK was converting overflowing uint64 attributes to strings for slog and logrus integrations. To eliminate double types for these attributes, the SDK now sends the overflowing attribute as is, and lets the server handle the overflow appropriately.
    • It is expected that overflowing unsigned integers would now get dropped, instead of converted to strings.
New Features ✨
Bug Fixes 🐛
Internal Changes 🔧
Deps
Other

v0.42.0: 0.42.0

Compare Source

Breaking Changes 🛠
  • refactor Telemetry Processor to use TelemetryItem instead of ItemConvertible by @​giortzisg in #​1180
    • remove ToEnvelopeItem from single log items
    • rename TelemetryBuffer to Telemetry Processor to adhere to spec
    • remove unsed ToEnvelopeItem(dsn) from Event.
New Features ✨
  • Add metric support by @​aldy505 in #​1151
    • support for three metric methods (counter, gauge, distribution)
    • custom metric units
    • unexport batchlogger
Internal Changes 🔧
Release
Other

v0.41.0: 0.41.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.41.0.

Features
  • Add HTTP client integration for distributed tracing via sentryhttpclient package (#​876)
    • Provides an http.RoundTripper implementation that automatically creates spans for outgoing HTTP requests
    • Supports trace propagation targets configuration via WithTracePropagationTargets option
    • Example usage:
      import sentryhttpclient "github.com/getsentry/sentry-go/httpclient"
      
      roundTripper := sentryhttpclient.NewSentryRoundTripper(nil)
      client := &http.Client{
          Transport: roundTripper,
      }
  • Add ClientOptions.PropagateTraceparent option to control W3C traceparent header propagation in outgoing HTTP requests (#​1161)
  • Add SpanID field to structured logs (#​1169)

v0.40.0: 0.40.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.40.0.

Bug Fixes
  • Disable DisableTelemetryBuffer flag and noop Telemetry Buffer, to prevent a panic at runtime (#​1149).

v0.39.0: 0.39.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.39.0.

Features
  • Drop events from the telemetry buffer when rate-limited or transport is full, allowing the buffer queue to empty itself under load (#​1138).
Bug Fixes
  • Fix scheduler's hasWork() method to check if buffers are ready to flush. The previous implementation was causing CPU spikes (#​1143).

v0.38.0: 0.38.0

Compare Source

Breaking Changes
Features
  • Introduce a new async envelope transport and telemetry buffer to prioritize and batch events (#​1094, #​1093, #​1107).

    • Advantages:
      • Prioritized, per-category buffers (errors, transactions, logs, check-ins) reduce starvation and improve resilience under load
      • Batching for high-volume logs (up to 100 items or 5s) cuts network overhead
      • Bounded memory with eviction policies
      • Improved flush behavior with context-aware flushing
  • Add ClientOptions.DisableTelemetryBuffer to opt out and fall back to the legacy transport layer (HTTPTransport / HTTPSyncTransport).

    err := sentry.Init(sentry.ClientOptions{
      Dsn: "__DSN__",
      DisableTelemetryBuffer: true, // fallback to legacy transport
    })
Notes
  • If a custom Transport is provided, the SDK automatically disables the telemetry buffer and uses the legacy transport for compatibility.

v0.37.0: 0.37.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.37.0.

Breaking Changes
  • Behavioral change for the TraceIgnoreStatusCodes option. The option now defaults to ignoring 404 status codes (#​1122).
Features
  • Add sentry.origin attribute to structured logs to identify log origin for slog and logrus integrations (auto.log.slog, auto.log.logrus) (#​1121).
Bug Fixes
  • Fix slog event handler to use the initial context, ensuring events use the correct hub/span when the emission context lacks one (#​1133).
  • Improve exception chain processing by checking pointer values when tracking visited errors, avoiding instability for certain wrapped errors (#​1132).
Misc
  • Bump golang.org/x/net to v0.38.0 (#​1126).

v0.36.2: 0.36.2

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.36.2.

Bug Fixes
  • Fix context propagation for logs to ensure logger instances correctly inherit span and hub information from their creation context (#​1118)
    • Logs now properly propagate trace context from the logger's original context, even when emitted in a different context
    • The logger will first check the emission context, then fall back to its creation context, and finally to the current hub

v0.36.1: 0.36.1

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.36.1.

Bug Fixes
  • Prevent panic when converting error chains containing non-comparable error types by using a safe fallback for visited detection in exception conversion (#​1113)

v0.36.0: 0.36.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.36.0.

Breaking Changes
  • Behavioral change for the MaxBreadcrumbs client option. Removed the hard limit of 100 breadcrumbs, allowing users to set a larger limit and also changed the default limit from 30 to 100 (#​1106))

  • The changes to error handling (#​1075) will affect issue grouping. It is expected that any wrapped and complex errors will be grouped under a new issue group.

Features
  • Add support for improved issue grouping with enhanced error chain handling (#​1075)

    The SDK now provides better handling of complex error scenarios, particularly when dealing with multiple related errors or error chains. This feature automatically detects and properly structures errors created with Go's errors.Join() function and other multi-error patterns.

    // Multiple errors are now properly grouped and displayed in Sentry
    err1 := errors.New("err1")
    err2 := errors.New("err2") 
    combinedErr := errors.Join(err1, err2)
    
    // When captured, these will be shown as related exceptions in Sentry
    sentry.CaptureException(combinedErr)
  • Add TraceIgnoreStatusCodes option to allow filtering of HTTP transactions based on status codes (#​1089)

    • Configure which HTTP status codes should not be traced by providing single codes or ranges
    • Example: TraceIgnoreStatusCodes: [][]int{{404}, {500, 599}} ignores 404 and server errors 500-599
Bug Fixes
  • Fix logs being incorrectly filtered by BeforeSend callback (#​1109)
    • Logs now bypass the processEvent method and are sent directly to the transport
    • This ensures logs are only filtered by BeforeSendLog, not by the error/message BeforeSend callback
Misc
  • Add support for Go 1.25 and drop support for Go 1.22 (#​1103)

v0.35.3: 0.35.3

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.35.3.

Bug Fixes
  • Add missing rate limit categories (#​1082)

v0.35.2: 0.35.2

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.35.2.

Bug Fixes
  • Fix OpenTelemetry spans being created as transactions instead of child spans (#​1073)
Misc
  • Add MockTransport to test clients for improved testing (#​1071)

v0.35.1: 0.35.1

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.35.1.

Bug Fixes
  • Fix race conditions when accessing the scope during logging operations (#​1050)
  • Fix nil pointer dereference with malformed URLs when tracing is enabled in fasthttp and fiber integrations (#​1055)
Misc
  • Bump github.com/gofiber/fiber/v2 from 2.52.5 to 2.52.9 in /fiber (#​1067)

v0.35.0: 0.35.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.35.0.

Breaking Changes

The logging API now supports a fluent interface for structured logging with attributes:

// usage before
logger := sentry.NewLogger(ctx)
// attributes weren't being set permanently
logger.SetAttributes(
    attribute.String("version", "1.0.0"),
)
logger.Infof(ctx, "Message with parameters %d and %d", 1, 2)

// new behavior
ctx := context.Background()
logger := sentry.NewLogger(ctx)

// Set permanent attributes on the logger
logger.SetAttributes(
    attribute.String("version", "1.0.0"),
)

// Chain attributes on individual log entries
logger.Info().
    String("key.string", "value").
    Int("key.int", 42).
    Bool("key.bool", true).
    Emitf("Message with parameters %d and %d", 1, 2)
Bug Fixes
  • Correctly serialize FailureIssueThreshold and RecoveryThreshold onto check-in payloads (#​1060)

v0.34.1: 0.34.1

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.34.1.

Bug Fixes
  • Allow flush to be used multiple times without issues, particularly for the batch logger (#​1051)
  • Fix race condition in Scope.GetSpan() method by adding proper mutex locking (#​1044)
  • Guard transport on Close() to prevent panic when called multiple times (#​1044)

v0.34.0: 0.34.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.34.0.

Breaking Changes
  • Logrus structured logging support replaces the sentrylogrus.Hook signature from a *Hook to an interface.
var hook *sentrylogrus.Hook
hook = sentrylogrus.New(
    // ... your setup
)

// should change the definition to 
var hook sentrylogrus.Hook
hook = sentrylogrus.New(
    // ... your setup
)
Features
ctx := context.Background()
handler := sentryslog.Option{
    EventLevel: []slog.Level{slog.LevelError, sentryslog.LevelFatal}, // Only Error and Fatal as events
    LogLevel:   []slog.Level{slog.LevelWarn, slog.LevelInfo},         // Only Warn and Info as logs
}.NewSentryHandler(ctx)
logger := slog.New(handler)
logger.Info("hello"))
logHook, _ := sentrylogrus.NewLogHook(
    []logrus.Level{logrus.InfoLevel, logrus.WarnLevel}, 
    sentry.ClientOptions{
        Dsn: "your-dsn",
        EnableLogs: true, // Required for log entries    
    })
defer logHook.Flush(5 * time.Secod)
logrus.RegisterExitHandler(func() {
    logHook.Flush(5 * time.Second)
})

logger := logrus.New()
logger.AddHook(logHook)
logger.Infof("hello")
  • Add support for flushing events with context using FlushWithContext(). (#​935)
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()

if !sentry.FlushWithContext(ctx) {
    // Handle timeout or cancellation
}
  • Add support for custom fingerprints in slog integration. (#​1039)
Deprecations
  • Slog structured logging support replaces Level option with EventLevel and LogLevel options, for specifying fine-grained levels for capturing events and logs.
handler := sentryslog.Option{
    EventLevel: []slog.Level{slog.LevelWarn, slog.LevelError, sentryslog.LevelFatal},
    LogLevel:   []slog.Level{slog.LevelDebug, slog.LevelInfo, slog.LevelWarn, slog.LevelError, sentryslog.LevelFatal},
}.NewSentryHandler(ctx)
  • Logrus structured logging support replaces New and NewFromClient functions to NewEventHook, NewEventHookFromClient, to match the newly added NewLogHook functions, and specify the hook type being created each time.
logHook, err := sentrylogrus.NewLogHook(
    []logrus.Level{logrus.InfoLevel},
    sentry.ClientOptions{})
eventHook, err := sentrylogrus.NewEventHook([]logrus.Level{
    logrus.ErrorLevel,
    logrus.FatalLevel,
    logrus.PanicLevel,
}, sentry.ClientOptions{})
Bug Fixes
  • Fix issue where ContinueTrace() would panic when sentry-trace header does not exist. (#​1026)
  • Fix incorrect log level signature in structured logging. (#​1034)
  • Remove sentry.origin attribute from Sentry logger to prevent confusion in spans. (#​1038)
  • Don't gate user information behind SendDefaultPII flag for logs. (#​1032)
Misc
  • Add more sensitive HTTP headers to the default list of headers that are scrubbed by default. (#​1008)

v0.33.0: 0.33.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.33.0.

Breaking Changes
  • Rename the internal Logger to DebugLogger. This feature was only used when you set Debug: True in your sentry.Init() call. If you haven't used the Logger directly, no changes are necessary. (#​1012)
Features
  • Add support for Structured Logging. (#​1010)

    logger := sentry.NewLogger(ctx)
    logger.Info(ctx, "Hello, Logs!")

    You can learn more about Sentry Logs on our docs and the examples.

  • Add new attributes APIs, which are currently only exposed on logs. (#​1007)

Bug Fixes
  • Do not push a new scope on StartSpan. (#​1013)
  • Fix an issue where the propagated smapling decision wasn't used. (#​995)
  • [Otel] Prefer httpRoute over httpTarget for span descriptions. (#​1002)
Misc
  • Update github.com/stretchr/testify to v1.8.4. (#​988)

v0.32.0: 0.32.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.32.0.

Breaking Changes
  • Bump the minimum Go version to 1.22. The supported versions are 1.22, 1.23 and 1.24. (#​967)
  • Setting any values on span.Extra has no effect anymore. Use SetData(name string, value interface{}) instead. (#​864)
Features
  • Add a MockTransport and MockScope. (#​972)
Bug Fixes
  • Fix writing *http.Request in the Logrus JSONFormatter. (#​955)
Misc
  • Transaction data attributes are now seralized as trace context data attributes, allowing you to query these attributes in the Trace Explorer.
gin-contrib/gzip (github.com/gin-contrib/gzip)

v1.2.6

Compare Source

Changelog

Enhancements
Build process updates
Others

v1.2.5

Compare Source

Changelog

Bug fixes
Enhancements

v1.2.4

Compare Source

Changelog

Bug fixes
Enhancements
  • 8f25d09: chore: update Go version and refresh

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 6am on Monday"
  • 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
Copy Markdown
Contributor Author

renovate bot commented Apr 6, 2026

ℹ️ Artifact update notice

File name: 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):

  • 26 additional dependencies were updated

Details:

Package Change
github.com/go-asn1-ber/asn1-ber v1.5.7 -> v1.5.8-0.20250403174932-29230038a667
github.com/bytedance/sonic v1.12.7 -> v1.15.0
github.com/bytedance/sonic/loader v0.2.2 -> v0.5.0
github.com/cloudwego/base64x v0.1.4 -> v0.1.6
github.com/gabriel-vasile/mimetype v1.4.8 -> v1.4.12
github.com/golang-jwt/jwt/v4 v4.5.1 -> v4.5.2
github.com/klauspost/cpuid/v2 v2.2.9 -> v2.3.0
golang.org/x/arch v0.13.0 -> v0.22.0
golang.org/x/mod v0.30.0 -> v0.33.0
golang.org/x/oauth2 v0.34.0 -> v0.35.0
golang.org/x/tools v0.39.0 -> v0.42.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20260203192932-546029d2fa20 -> v0.0.0-20260209200024-4cfbd4190f57
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 -> v0.1.0
github.com/beevik/etree v1.4.1 -> v1.5.0
github.com/fsnotify/fsnotify v1.8.0 -> v1.9.0
github.com/gin-contrib/sse v1.0.0 -> v1.1.0
github.com/go-playground/validator/v10 v10.24.0 -> v10.30.1
github.com/goccy/go-json v0.10.4 -> v0.10.5
github.com/pelletier/go-toml/v2 v2.2.3 -> v2.2.4
github.com/spf13/afero v1.12.0 -> v1.15.0
github.com/spf13/cast v1.7.1 -> v1.10.0
github.com/spf13/pflag v1.0.6 -> v1.0.10
github.com/ugorji/go/codec v1.2.12 -> v1.3.1
golang.org/x/net v0.48.0 -> v0.51.0
golang.org/x/sys v0.39.0 -> v0.42.0
golang.org/x/text v0.32.0 -> v0.35.0
File name: runner/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):

  • 8 additional dependencies were updated

Details:

Package Change
github.com/ebitengine/purego v0.9.0 -> v0.10.0
github.com/klauspost/compress v1.17.11 -> v1.18.0
github.com/prometheus/client_model v0.6.1 -> v0.6.2
github.com/prometheus/common v0.62.0 -> v0.66.1
github.com/prometheus/procfs v0.15.1 -> v0.16.1
github.com/tklauser/go-sysconf v0.3.15 -> v0.3.16
github.com/tklauser/numcpus v0.10.0 -> v0.11.0
golang.org/x/sys v0.37.0 -> v0.41.0
File name: worker/edge/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):

  • 5 additional dependencies were updated

Details:

Package Change
github.com/klauspost/compress v1.17.11 -> v1.18.0
github.com/prometheus/client_model v0.6.1 -> v0.6.2
github.com/prometheus/common v0.62.0 -> v0.66.1
github.com/prometheus/procfs v0.15.1 -> v0.16.1
google.golang.org/protobuf v1.36.6 -> v1.36.8
File name: worker/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):

  • 4 additional dependencies were updated

Details:

Package Change
github.com/tklauser/go-sysconf v0.3.15 -> v0.3.16
github.com/tklauser/numcpus v0.10.0 -> v0.11.0
golang.org/x/sys v0.37.0 -> v0.41.0
github.com/ebitengine/purego v0.9.0 -> v0.10.0

@renovate renovate bot force-pushed the renovate/go-non-major branch 2 times, most recently from 3d5d99a to 6f51389 Compare April 8, 2026 15:06
@renovate renovate bot force-pushed the renovate/go-non-major branch from 6f51389 to f2bb225 Compare April 8, 2026 15:52
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