Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 18, 2025

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

Package From To
github.com/DataDog/datadog-api-client-go/v2 2.43.0 2.50.0
github.com/getsentry/sentry-go 0.35.3 0.38.0
github.com/nats-io/nats.go 1.46.1 1.47.0
github.com/sethvargo/go-limiter 1.0.0 1.1.0
gitlab.com/gitlab-org/api/client-go 0.147.0 0.160.0

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

Release notes

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

v2.50.0

See ./CHANGELOG.md for details

v2.49.0

See ./CHANGELOG.md for details

v2.48.0

See ./CHANGELOG.md for details

v2.47.0

See ./CHANGELOG.md for details

v2.46.0

See ./CHANGELOG.md for details

v2.45.0

See ./CHANGELOG.md for details

v2.44.0

See ./CHANGELOG.md for details

Changelog

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

2.50.0/2025-11-14

Added

  • Add suppression tags #3456
  • Add Team Connection API Documentation #3454
  • Add new summary keys for new standalone billing dimensions #3451
  • Add Bits AI Investigations and On-Call to API specs #3447
  • Add PreviewCatalogEntities #3444
  • Sync 'audience_management.yaml' files with backend #3441
  • Dashboards - Add on_call_events datasources #3440
  • Add last_login_time to Users v2 API #3399

Deprecated

  • [api-spec] Mark PATCH /api/v2/incidents/incident_id/attachments endpoint as deprecated #3453
  • [METEXP-2068] Deprecate api/v1/search Endpoint #3448

2.49.0/2025-10-30

Added

  • 📝 [LOGSAC-1298] Add logs-pipeline type to restriction policy OpenAPI spec #3434
  • Security Monitoring - Update Signal Archive Reasons #3433
  • Add endpoints for Software Composition Analysis #3430
  • Add New Serverless Summary Entries to Api Spec #3418
  • Add metric namespace config filters to V2 GCP API #3417
  • Add specs for v2 eventbridge API #3414
  • Add support for Schema Processor in Logs Pipelines #3411
  • Add Static Analysis Rules Endpoints #3395

Changed

  • Rename historical job API endpoints to threat hunting #3431

2.48.0/2025-10-23

Changed

  • Include mention to new scanned-assets-metadata endpoint on container images v1 endpoint #3410
  • Include mention to new scanned-assets-metadata endpoint on hosts v1 endpoint #3409
  • security_monitoring - Add indexes to deprecate index in ruleQuery #3402
  • Add support for vulnerability management - Add ListScannedAssetsMetadata new endpoint and update existing ones #3400
  • Update description, operationId and examples for tag pipeline and custom allocation rules #3397

Fixed

  • Update the summary name for get a tag pipeline ruleset. #3405

Added

  • Add new DeleteAssignee endpoint to Error Tracking APIs #3404
  • document agentless GCP scan options CRUD endpoints #3401
  • Document /api/v2/roles/templates #3390
  • Add Reference Tables API spec #3389
  • Add blockedRequestPatterns to synthetics browser test options #3383
  • Add BulkDeleteDatastoreItems to Datastore API spec #3382

... (truncated)

Commits
  • ca3ba4c Bump versions and add changelog entries. (#3470)
  • 26842cc Add Team Connection API Documentation (#3454)
  • 3952811 Regenerate client from commit b6a9475 of spec repo (#3463)
  • 34bf405 Add suppression tags (#3456)
  • 7d280a7 Update descriptions for otr mode (#3458)
  • fed2e2e Add last_login_time to Users v2 API (#3399)
  • e7ecad4 Regenerate client from commit 3c17510 of spec repo (#3459)
  • 537f9b5 Adding new API keys in summary endpoint for APM Standalone new billing dimens...
  • 711b9fb Add examples to Reference Tables API documentation, update cloud file and loc...
  • 348cda3 Mark PATCH /api/v2/incidents/incident_id/attachments endpoint as deprecated (...
  • Additional commits viewable in compare view

Updates github.com/getsentry/sentry-go from 0.35.3 to 0.38.0

Release notes

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

0.38.0

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.

0.37.0

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

0.36.2

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)

... (truncated)

Changelog

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

0.38.0

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.

0.37.0

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

0.36.2

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

... (truncated)

Commits

Updates github.com/nats-io/nats.go from 1.46.1 to 1.47.0

Release notes

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

Release v1.47.0

Changelog

ADDED

  • Core NATS:
    • Support sending custom WebSocket headers on connect. Thanks @​saurabhojha for the contribution (#1919)

FIXED

  • Core NATS:
    • Capture async callbacks before pushing on dispatch queue (#1955)
  • Object Store:
    • Fixed data race when cancelling context while getting object (#1949)
  • JetStream:
    • Fixed double channel close on simultaneous Stop and Drain (#1953)

IMPROVED

  • Clarify MessagesContext.Next() doc (#1951)

Complete Changes

nats-io/nats.go@v1.46.1...v1.47.0

Commits
  • 01f1814 Release v1.47.0 (#1956)
  • c337fd4 [IMPROVED] Clarify MessagesContext.Next() doc (#1951)
  • ae3c974 [FIXED] Capture async callbacks before pushing on dispatch queue (#1955)
  • ecc3b74 [FIXED] Double channel close on simultaneous Stop and Drain (#1953)
  • c12f77b [FIXED] Data race when cancelling context while getting object (#1949)
  • 2ab8185 Add options to send custom WebSocket headers on connect (#1919)
  • 1610417 [IMPROVED] Fix simplified URLs test after (#1954)
  • See full diff in compare view

Updates github.com/sethvargo/go-limiter from 1.0.0 to 1.1.0

Release notes

Sourced from github.com/sethvargo/go-limiter's releases.

v1.1.0

What's Changed

New Contributors

Full Changelog: sethvargo/go-limiter@v1.0.0...v1.1.0

Commits

Updates gitlab.com/gitlab-org/api/client-go from 0.147.0 to 0.160.0

Release notes

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

v0.160.0

0.160.0

🚀 Features

  • feat (project_members): Add show_seat_info option to ProjectMembers (!2572) by Zubeen

🔄 Other Changes

0.160.0 (2025-11-12)

v0.159.0

0.159.0

🚀 Features

  • feat(integrations): add group integration API endpoints for Jira (!2563) by Harsh Rai

🔄 Other Changes

0.159.0 (2025-11-04)

Features

  • integrations: add group integration API endpoints for Jira (09e18ee)

v0.158.0

0.158.0

🚀 Features

  • Add support to send variables for GraphQL queries (!2562) by rafasf

🔄 Other Changes

... (truncated)

Changelog

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

0.160.0

🚀 Features

  • feat (project_members): Add show_seat_info option to ProjectMembers (!2572) by Zubeen

🔄 Other Changes

0.160.0 (2025-11-12)

0.159.0

🚀 Features

  • feat(integrations): add group integration API endpoints for Jira (!2563) by Harsh Rai

🔄 Other Changes

0.159.0 (2025-11-04)

Features

  • integrations: add group integration API endpoints for Jira (09e18ee)

0.158.0

🚀 Features

  • Add support to send variables for GraphQL queries (!2562) by rafasf

🔄 Other Changes

... (truncated)

Commits
  • 114b270 chore(release): 0.160.0 [skip ci]
  • b452457 Merge branch 'addshowseatinfo' into 'main'
  • 403b65f feat (project_members): Add show_seat_info option to ProjectMembers
  • 251fb13 Merge branch 'refactor/fix-modernize-lint-issues' into 'main'
  • 079cc2b refactor: fix modernize lint issues
  • b6d55cd Merge branch 'renovate/cel.dev-expr-0.x' into 'main'
  • 3433798 chore(deps): update module cel.dev/expr to v0.25.1
  • 05714b5 Merge branch 'docs/improve-readme' into 'main'
  • b890d5c docs(no-release): format examples, update pkg doc url
  • 7f18968 chore(release): 0.159.0 [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

@dependabot dependabot bot added the dependencies Pull requests that update a dependency label Nov 18, 2025
Bumps the go-deps group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/DataDog/datadog-api-client-go/v2](https://github.com/DataDog/datadog-api-client-go) | `2.43.0` | `2.50.0` |
| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.35.3` | `0.38.0` |
| [github.com/nats-io/nats.go](https://github.com/nats-io/nats.go) | `1.46.1` | `1.47.0` |
| [github.com/sethvargo/go-limiter](https://github.com/sethvargo/go-limiter) | `1.0.0` | `1.1.0` |
| [gitlab.com/gitlab-org/api/client-go](https://gitlab.com/gitlab-org/api/client-go) | `0.147.0` | `0.160.0` |



Updates `github.com/DataDog/datadog-api-client-go/v2` from 2.43.0 to 2.50.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.50.0)

Updates `github.com/getsentry/sentry-go` from 0.35.3 to 0.38.0
- [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.35.3...v0.38.0)

Updates `github.com/nats-io/nats.go` from 1.46.1 to 1.47.0
- [Release notes](https://github.com/nats-io/nats.go/releases)
- [Commits](nats-io/nats.go@v1.46.1...v1.47.0)

Updates `github.com/sethvargo/go-limiter` from 1.0.0 to 1.1.0
- [Release notes](https://github.com/sethvargo/go-limiter/releases)
- [Commits](sethvargo/go-limiter@v1.0.0...v1.1.0)

Updates `gitlab.com/gitlab-org/api/client-go` from 0.147.0 to 0.160.0
- [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.147.0...v0.160.0)

---
updated-dependencies:
- dependency-name: github.com/DataDog/datadog-api-client-go/v2
  dependency-version: 2.50.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.38.0
  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.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/sethvargo/go-limiter
  dependency-version: 1.1.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.160.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/go-deps-46d6146852 branch from b864ff2 to c5ce65d Compare November 19, 2025 08:56
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.

1 participant