Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 31, 2025

Bumps the go-deps group with 6 updates in the / directory:

Package From To
cloud.google.com/go/pubsub 1.49.0 1.50.0
code.gitea.io/sdk/gitea 0.21.0 0.22.0
github.com/DataDog/datadog-api-client-go/v2 2.43.0 2.44.0
github.com/getsentry/sentry-go 0.34.1 0.35.1
github.com/nats-io/nats.go 1.43.0 1.45.0
gitlab.com/gitlab-org/api/client-go 0.137.0 0.142.5

Updates cloud.google.com/go/pubsub from 1.49.0 to 1.50.0

Release notes

Sourced from cloud.google.com/go/pubsub's releases.

pubsub: v1.50.0

1.50.0 (2025-07-28)

Features

Bug Fixes

  • pubsub: Update google.golang.org/api to 0.229.0 (3319672)

Documentation

  • pubsub: Add docs comment to MaxOutstandingBytes (#12601) (76ddb34)
Commits

Updates code.gitea.io/sdk/gitea from 0.21.0 to 0.22.0

Updates github.com/DataDog/datadog-api-client-go/v2 from 2.43.0 to 2.44.0

Release notes

Sourced from github.com/DataDog/datadog-api-client-go/v2's releases.

v2.44.0

See ./CHANGELOG.md for details

Changelog

Sourced from github.com/DataDog/datadog-api-client-go/v2's changelog.

2.44.0/2025-08-12

Added

  • Add Flex_Logs_Compute_XL to API Spec #3266
  • Support Host and IaC finding types in security notifications #3265
  • New keys for summary public endpoint for Event Management Correlation product #3261
  • Add log autosubscription tag filters config to aws v2 API #3257
  • Extended List Findings API to expose resource related Private IP Addresses to details #3250
  • update metrics.yaml for ListMetricAssets and include Dashboard info #3245
  • Support Cloud SIEM scheduled rules in API client #3242
  • Uncomment edit dataset block, add dataset limitations into endpoint descriptions #3240
  • Add text field in synthetics search endpoint #3239
  • Adding all action connection types to public API #3238
  • Document case management attributes endpoints #3236
  • add AP2 endpoint for On-Call Paging #3232
  • Flag IP case action #3230
  • Add DNS specs for Cloud Network Monitoring API #3228
  • Adding Datadog Connection to Connection API #3222

Fixed

  • Split Dataset into separate request and response objects, mark unstable #3249
  • Disables some tests to avoid fails as the service is disabled #3244
  • OP make 'support_rules' field in parse_grok processor optional #3233

Deprecated

  • Deprecate signals triage v1 endpoints #3246
Commits
  • b99f504 Bump versions and add changelog entries. (#3275)
  • 67c6f40 Support Cloud SIEM scheduled rules in API client (#3242)
  • 2fae060 Add log autosubscription tag filters config to aws v2 API (#3257)
  • 02fd1c6 [cloud-network-monitoring] Remove preview note + Add notifications (#3267)
  • 95edcab OP make 'support_rules' field in parse_grok processor optional (#3233)
  • 73cf26a Support Host and IaC finding types in security notifications (#3265)
  • 889a255 Add Flex_Logs_Compute_XL to API Spec (#3266)
  • 56f985a New keys for summary public endpoint for Event Management Correlation product...
  • ebf7511 Add DNS specs for Cloud Network Monitoring API (#3228)
  • e6b2da7 Replace synthetics-ct team references with synthetics-managing (#3252)
  • Additional commits viewable in compare view

Updates github.com/getsentry/sentry-go from 0.34.1 to 0.35.1

Release notes

Sourced from github.com/getsentry/sentry-go's releases.

0.35.1

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)

0.35.0

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

Breaking Changes

  • Changes to the logging API (#1046)

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)
Changelog

Sourced from github.com/getsentry/sentry-go's changelog.

0.35.1

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)

0.35.0

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

Breaking Changes

  • Changes to the logging API (#1046)

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

... (truncated)

Commits

Updates github.com/nats-io/nats.go from 1.43.0 to 1.45.0

Release notes

Sourced from github.com/nats-io/nats.go's releases.

Release v1.45.0

Changelog

ADDED

  • Core NATS:
    • Handling for maximum account active connections exceeded (#1921)
  • JetStream:
    • WithExpectLastSequenceForSubject publish option (#1920)

FIXED

  • Core NATS:
    • Track delivered count and auto-unsubscribe for channel subscriptions (#1913)
    • Clear status listeners map on SubscriptionClosed event to prevent race condition (#1914)
    • Call ReconnectErrHandler for initial connection failures with RetryOnFailedConnect (#1915)
  • JetStream:
    • CreateOrUpdateStream preserves domain prefix during updates (#1917)
    • Handle empty response when creating a consumer (#1912)

IMPROVED

  • KeyValue:
    • Add test checking KV TTL watcher updates (#1916)

Complete Changes

nats-io/nats.go@v1.44.0...v1.45.0

Release v1.44.0

Changelog

Overview

This PR adds a PushConsumer implementation to jetstream, allowing easier migration to new API while maintaining usage of push consumers. For now it only supports the callback-based Consume(), more consuming options will be added in future releases.

ADDED

  • Core NATS:
    • UserCredentialBytes() Conn option (#1877)
  • JetStream:
    • PushConsumer implementation in jetstream package
    • Expose ClientTrace in JetStreamOptions (#1886)
  • Service API:
    • Expose WithEndpointPendingLimits option (#1899)
  • Legacy KeyValue:
    • Error() method to KeyLister and KeyWatcher interfaces (#1889)

FIXED

  • Core NATS:
    • Fix timeoutWriter not recovering after first error (#1896)
  • JetStream:
    • Consumer.Next() hangs after connection is closed (#1883)
    • Fixed stream info request for strict mode (#1887)

... (truncated)

Commits
  • 0ed8647 Release v1.45.0 (#1923)
  • 20accc1 [FIXED] Track delivered count and auto-unsubscribe for channel subscriptions ...
  • 7af9697 [FIXED] Handle empty response when creating a consumer (#1912)
  • bf62031 [FIXED] Call ReconnectErrHandler for initial connection failures with RetryOn...
  • 8407275 [FIXED] Clear status listeners map on SubscriptionClosed event (#1914)
  • d0027eb [IMPROVED] Add test checking KV TTL watcher updates (#1916)
  • 89faf3b [FIXED] CreateOrUpdateStream preserves domain prefix during updates (#1917)
  • 069c9be [ADDED] Handling for maximum account active connections exceeded (#1921)
  • 22f2b9d [ADDED] WithExpectLastSequenceForSubject publish option (#1920)
  • 7a260b8 Release v1.44.0 (#1910)
  • Additional commits viewable in compare view

Updates gitlab.com/gitlab-org/api/client-go from 0.137.0 to 0.142.5

Release notes

Sourced from gitlab.com/gitlab-org/api/client-go's releases.

v0.142.5

0.142.5 (2025-08-30)

v0.142.4

0.142.4 (2025-08-28)

v0.142.3

0.142.3 (2025-08-28)

v0.142.2

0.142.2 (2025-08-26)

v0.142.1

0.142.1 (2025-08-25)

v0.142.0

0.142.0 (2025-08-21)

Features

  • tokens: add expiration filters and sorting options to ListPersonalAccessTokens (0a9f797)

v0.141.2

0.141.2 (2025-08-20)

v0.141.1

0.141.1 (2025-08-18)

v0.141.0

0.141.0 (2025-08-18)

Features

  • config: support custom headers for instances (76b0e82)

v0.140.0

0.140.0 (2025-08-18)

Features

  • client: add support for cookie jars (4b525e3)

v0.139.2

0.139.2 (2025-08-14)

v0.139.1

0.139.1 (2025-08-14)

... (truncated)

Changelog

Sourced from gitlab.com/gitlab-org/api/client-go's changelog.

0.142.5 (2025-08-30)

0.142.4 (2025-08-28)

0.142.3 (2025-08-28)

0.142.2 (2025-08-26)

0.142.1 (2025-08-25)

0.142.0 (2025-08-21)

Features

  • tokens: add expiration filters and sorting options to ListPersonalAccessTokens (0a9f797)

0.141.2 (2025-08-20)

0.141.1 (2025-08-18)

0.141.0 (2025-08-18)

Features

  • config: support custom headers for instances (76b0e82)

0.140.0 (2025-08-18)

Features

  • client: add support for cookie jars (4b525e3)

0.139.2 (2025-08-14)

0.139.1 (2025-08-14)

0.139.0 (2025-08-13)

Features

  • terraform: improve Terraform States service (e08128b)

0.138.0 (2025-08-12)

Bug Fixes

... (truncated)

Commits
  • 208a556 chore(release): 0.142.5 [skip ci]
  • 2806695 Merge branch 'renovate/commitlint-commitlint-19.x' into 'main'
  • cd29106 chore(deps): update commitlint/commitlint docker tag to v19.9.1
  • b0a768b chore(release): 0.142.4 [skip ci]
  • 51703ba Merge branch 'renovate/github.com-stretchr-testify-1.x' into 'main'
  • 235aed0 chore(deps): update module github.com/stretchr/testify to v1.11.1
  • e3e3584 chore(release): 0.142.3 [skip ci]
  • 24de9a6 Merge branch 'renovate/github.com-google-cel-go-0.x' into 'main'
  • 99a0ad2 chore(deps): update module github.com/google/cel-go to v0.26.1
  • 38c11e5 chore(release): 0.142.2 [skip ci]
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the go-deps group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/pubsub](https://github.com/googleapis/google-cloud-go) | `1.49.0` | `1.50.0` |
| code.gitea.io/sdk/gitea | `0.21.0` | `0.22.0` |
| [github.com/DataDog/datadog-api-client-go/v2](https://github.com/DataDog/datadog-api-client-go) | `2.43.0` | `2.44.0` |
| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.34.1` | `0.35.1` |
| [github.com/nats-io/nats.go](https://github.com/nats-io/nats.go) | `1.43.0` | `1.45.0` |
| [gitlab.com/gitlab-org/api/client-go](https://gitlab.com/gitlab-org/api/client-go) | `0.137.0` | `0.142.5` |



Updates `cloud.google.com/go/pubsub` from 1.49.0 to 1.50.0
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@pubsub/v1.49.0...pubsub/v1.50.0)

Updates `code.gitea.io/sdk/gitea` from 0.21.0 to 0.22.0

Updates `github.com/DataDog/datadog-api-client-go/v2` from 2.43.0 to 2.44.0
- [Release notes](https://github.com/DataDog/datadog-api-client-go/releases)
- [Changelog](https://github.com/DataDog/datadog-api-client-go/blob/master/CHANGELOG.md)
- [Commits](DataDog/datadog-api-client-go@v2.43.0...v2.44.0)

Updates `github.com/getsentry/sentry-go` from 0.34.1 to 0.35.1
- [Release notes](https://github.com/getsentry/sentry-go/releases)
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-go@v0.34.1...v0.35.1)

Updates `github.com/nats-io/nats.go` from 1.43.0 to 1.45.0
- [Release notes](https://github.com/nats-io/nats.go/releases)
- [Commits](nats-io/nats.go@v1.43.0...v1.45.0)

Updates `gitlab.com/gitlab-org/api/client-go` from 0.137.0 to 0.142.5
- [Release notes](https://gitlab.com/gitlab-org/api/client-go/tags)
- [Changelog](https://gitlab.com/gitlab-org/api/client-go/blob/main/CHANGELOG.md)
- [Commits](https://gitlab.com/gitlab-org/api/client-go/compare/v0.137.0...v0.142.5)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/pubsub
  dependency-version: 1.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: code.gitea.io/sdk/gitea
  dependency-version: 0.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/DataDog/datadog-api-client-go/v2
  dependency-version: 2.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/getsentry/sentry-go
  dependency-version: 0.35.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/nats-io/nats.go
  dependency-version: 1.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: gitlab.com/gitlab-org/api/client-go
  dependency-version: 0.142.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency label Aug 31, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 1, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Sep 1, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/go-deps-2ad397ee53 branch September 1, 2025 11:41
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants