Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the minor-and-patch group with 9 updates in the / directory:

Package From To
github.com/aws/aws-sdk-go-v2 1.39.5 1.40.0
github.com/aws/aws-sdk-go-v2/config 1.31.16 1.32.1
github.com/aws/aws-sdk-go-v2/service/ses 1.34.8 1.34.13
github.com/aws/aws-sdk-go-v2/service/sns 1.39.2 1.39.6
github.com/getsentry/sentry-go 0.36.2 0.38.0
github.com/nyaruka/phonenumbers 1.6.6 1.6.7
github.com/rubenv/sql-migrate 1.8.0 1.8.1
github.com/shopspring/decimal 1.3.1 1.4.0
github.com/twilio/twilio-go 1.28.5 1.28.7

Updates github.com/aws/aws-sdk-go-v2 from 1.39.5 to 1.40.0

Commits

Updates github.com/aws/aws-sdk-go-v2/config from 1.31.16 to 1.32.1

Commits

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.18.20 to 1.19.1

Changelog

Sourced from github.com/aws/aws-sdk-go-v2/credentials's changelog.

Release (2023-07-28)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/sqs: v1.23.4
    • Documentation: Documentation changes related to SQS APIs.

Release (2023-07-27)

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/autoscaling: v1.29.0
    • Feature: This release updates validation for instance types used in the AllowedInstanceTypes and ExcludedInstanceTypes parameters of the InstanceRequirements property of a MixedInstancesPolicy.
  • github.com/aws/aws-sdk-go-v2/service/ebs: v1.17.0
    • Feature: SDK and documentation updates for Amazon Elastic Block Store API
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.108.0
    • Feature: SDK and documentation updates for Amazon Elastic Block Store APIs
  • github.com/aws/aws-sdk-go-v2/service/eks: v1.28.0
    • Feature: Add multiple customer error code to handle customer caused failure when managing EKS node groups
  • github.com/aws/aws-sdk-go-v2/service/sagemaker: v1.95.0
    • Feature: Expose ProfilerConfig attribute in SageMaker Search API response.

Release (2023-07-26)

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/entityresolution: v1.0.0
    • Release: New AWS service client module
    • Feature: AWS Entity Resolution can effectively match a source record from a customer relationship management (CRM) system with a source record from a marketing system containing campaign information.
  • github.com/aws/aws-sdk-go-v2/service/glue: v1.58.0
    • Feature: Release Glue Studio Snowflake Connector Node for SDK/CLI
  • github.com/aws/aws-sdk-go-v2/service/healthlake: v1.16.4
    • Documentation: Updating the HealthLake service documentation.
  • github.com/aws/aws-sdk-go-v2/service/managedblockchainquery: v1.0.0
    • Release: New AWS service client module
    • Feature: Amazon Managed Blockchain (AMB) Query provides serverless access to standardized, multi-blockchain datasets with developer-friendly APIs.
  • github.com/aws/aws-sdk-go-v2/service/mediaconvert: v1.39.1
    • Documentation: This release includes general updates to user documentation.
  • github.com/aws/aws-sdk-go-v2/service/omics: v1.5.2
    • Documentation: The service is renaming as a part of AWS Health.
  • github.com/aws/aws-sdk-go-v2/service/opensearchserverless: v1.3.0
    • Feature: This release adds new collection type VectorSearch.
  • github.com/aws/aws-sdk-go-v2/service/polly: v1.27.0
    • Feature: Amazon Polly adds 1 new voice - Lisa (nl-BE)
  • github.com/aws/aws-sdk-go-v2/service/route53: v1.28.5
    • Documentation: Update that corrects the documents for received feedback.

Release (2023-07-25)

General Highlights

... (truncated)

Commits

Updates github.com/aws/aws-sdk-go-v2/service/ses from 1.34.8 to 1.34.13

Commits

Updates github.com/aws/aws-sdk-go-v2/service/sns from 1.39.2 to 1.39.6

Commits

Updates github.com/getsentry/sentry-go from 0.36.2 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).
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).
Commits

Updates github.com/nyaruka/phonenumbers from 1.6.6 to 1.6.7

Changelog

Sourced from github.com/nyaruka/phonenumbers's changelog.

v1.6.7 (2025-11-12)

  • Update metadata
Commits

Updates github.com/rubenv/sql-migrate from 1.8.0 to 1.8.1

Commits

Updates github.com/shopspring/decimal from 1.3.1 to 1.4.0

Release notes

Sourced from github.com/shopspring/decimal's releases.

v1.4.0

Full Changelog can be found in CHANGELOG.md

New Contributors

Changelog

Sourced from github.com/shopspring/decimal's changelog.

Decimal v1.4.0

BREAKING

  • Drop support for Go version older than 1.10 #361

FEATURES

  • Add implementation of natural logarithm #339 #357
  • Add improved implementation of power operation #358
  • Add Compare method which forwards calls to Cmp #346
  • Add NewFromBigRat constructor #288
  • Add NewFromUint64 constructor #352

ENHANCEMENTS

  • Migrate to Github Actions #245 #340
  • Fix examples for RoundDown, RoundFloor, RoundUp, and RoundCeil #285 #328 #341
  • Use Godoc standard to mark deprecated Equals and StringScaled methods #342
  • Removed unnecessary min function for RescalePair method #265
  • Avoid reallocation of initial slice in MarshalBinary (GobEncode) #355
  • Optimize NumDigits method #301 #356
  • Optimize BigInt method #359
  • Support scanning uint64 #131 #364
  • Add docs section with alternative libraries #363

BUGFIXES

  • Fix incorrect calculation of decimal modulo #258 #317
  • Allocate new(big.Int) in Copy method to deeply clone it #278
  • Fix overflow edge case in QuoRem method #322
Commits

Updates github.com/twilio/twilio-go from 1.28.5 to 1.28.7

Release notes

Sourced from github.com/twilio/twilio-go's releases.

v1.28.7

Release Notes

Memory

  • Memory API Changes

  • Added initial Memory API endpoints with darkseagreen badge status

Docs

v1.28.6

Release Notes

Twiml

  • Add new noun <ConversationRelaySession>
  • Add support for <Recording> noun under <Start> verb

Docs

Changelog

Sourced from github.com/twilio/twilio-go's changelog.

[2025-11-20] Version 1.28.7

Memory

  • Memory API Changes

  • Added initial Memory API endpoints with darkseagreen badge status

[2025-11-11] Version 1.28.6

Twiml

  • Add new noun <ConversationRelaySession>
  • Add support for <Recording> noun under <Start> verb
Commits
  • 0205580 Release v1.28.7
  • 30bdc65 [Librarian] Regenerated @ e23430afd3fa493c96b42fc37f0314ad84bbe6ef 23e59a55e7...
  • 7f3095e Release v1.28.6
  • b9e7d07 [Librarian] Regenerated @ 453fa63ec6f75d83162a32a588214a40ecafec8f 73cdb4763e...
  • See full diff in compare view

Updates golang.org/x/crypto from 0.43.0 to 0.45.0

Commits
  • 4e0068c go.mod: update golang.org/x dependencies
  • e79546e ssh: curb GSSAPI DoS risk by limiting number of specified OIDs
  • f91f7a7 ssh/agent: prevent panic on malformed constraint
  • 2df4153 acme/autocert: let automatic renewal work with short lifetime certs
  • bcf6a84 acme: pass context to request
  • b4f2b62 ssh: fix error message on unsupported cipher
  • 79ec3a5 ssh: allow to bind to a hostname in remote forwarding
  • 122a78f go.mod: update golang.org/x dependencies
  • c0531f9 all: eliminate vet diagnostics
  • 0997000 all: fix some comments
  • Additional commits viewable in compare view

Updates golang.org/x/net from 0.46.0 to 0.47.0

Commits
  • 9a29643 go.mod: update golang.org/x dependencies
  • 07cefd8 context: deprecate
  • 5ac9dac publicsuffix: don't treat ip addresses as domain names
  • d1f64cc quic: use testing/synctest
  • fff0469 http2: document that RFC 7540 prioritization does not work with small payloads
  • f35e3a4 http2: fix weight overflow in RFC 7540 write scheduler
  • 89adc90 http2: fix typo referring to RFC 9218 as RFC 9128 instead
  • 8d76a2c quic: don't defer MAX_STREAMS frames indefinitely
  • 027f8b7 quic: fix expected ACK Delay in client's ACK after HANDSHAKE_DONE
  • dec9fe7 dns/dnsmessage: update SVCB packing to prohibit name compression
  • 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 dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Nov 23, 2025
@dependabot dependabot bot temporarily deployed to Internal SEP Tests November 23, 2025 02:12 Inactive
@dependabot dependabot bot temporarily deployed to Receiver Registration - E2E Integration Tests (Stellar) November 23, 2025 02:12 Inactive
…2 updates

Bumps the minor-and-patch group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.39.5` | `1.40.0` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.31.16` | `1.32.1` |
| [github.com/aws/aws-sdk-go-v2/service/ses](https://github.com/aws/aws-sdk-go-v2) | `1.34.8` | `1.34.13` |
| [github.com/aws/aws-sdk-go-v2/service/sns](https://github.com/aws/aws-sdk-go-v2) | `1.39.2` | `1.39.6` |
| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.36.2` | `0.38.0` |
| [github.com/nyaruka/phonenumbers](https://github.com/nyaruka/phonenumbers) | `1.6.6` | `1.6.7` |
| [github.com/rubenv/sql-migrate](https://github.com/rubenv/sql-migrate) | `1.8.0` | `1.8.1` |
| [github.com/shopspring/decimal](https://github.com/shopspring/decimal) | `1.3.1` | `1.4.0` |
| [github.com/twilio/twilio-go](https://github.com/twilio/twilio-go) | `1.28.5` | `1.28.7` |



Updates `github.com/aws/aws-sdk-go-v2` from 1.39.5 to 1.40.0
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@v1.39.5...v1.40.0)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.31.16 to 1.32.1
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@config/v1.31.16...v1.32.1)

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.18.20 to 1.19.1
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/v1.19.1/CHANGELOG.md)
- [Commits](aws/aws-sdk-go-v2@config/v1.18.20...v1.19.1)

Updates `github.com/aws/aws-sdk-go-v2/service/ses` from 1.34.8 to 1.34.13
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@service/mq/v1.34.8...service/ram/v1.34.13)

Updates `github.com/aws/aws-sdk-go-v2/service/sns` from 1.39.2 to 1.39.6
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@v1.39.2...v1.39.6)

Updates `github.com/getsentry/sentry-go` from 0.36.2 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.36.2...v0.38.0)

Updates `github.com/nyaruka/phonenumbers` from 1.6.6 to 1.6.7
- [Release notes](https://github.com/nyaruka/phonenumbers/releases)
- [Changelog](https://github.com/nyaruka/phonenumbers/blob/main/CHANGELOG.md)
- [Commits](nyaruka/phonenumbers@v1.6.6...v1.6.7)

Updates `github.com/rubenv/sql-migrate` from 1.8.0 to 1.8.1
- [Commits](rubenv/sql-migrate@v1.8.0...v1.8.1)

Updates `github.com/shopspring/decimal` from 1.3.1 to 1.4.0
- [Release notes](https://github.com/shopspring/decimal/releases)
- [Changelog](https://github.com/shopspring/decimal/blob/master/CHANGELOG.md)
- [Commits](shopspring/decimal@v1.3.1...v1.4.0)

Updates `github.com/twilio/twilio-go` from 1.28.5 to 1.28.7
- [Release notes](https://github.com/twilio/twilio-go/releases)
- [Changelog](https://github.com/twilio/twilio-go/blob/main/CHANGES.md)
- [Commits](twilio/twilio-go@v1.28.5...v1.28.7)

Updates `golang.org/x/crypto` from 0.43.0 to 0.45.0
- [Commits](golang/crypto@v0.43.0...v0.45.0)

Updates `golang.org/x/net` from 0.46.0 to 0.47.0
- [Commits](golang/net@v0.46.0...v0.47.0)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-version: 1.32.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/credentials
  dependency-version: 1.19.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/service/ses
  dependency-version: 1.34.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/service/sns
  dependency-version: 1.39.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/getsentry/sentry-go
  dependency-version: 0.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/nyaruka/phonenumbers
  dependency-version: 1.6.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/rubenv/sql-migrate
  dependency-version: 1.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/shopspring/decimal
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/twilio/twilio-go
  dependency-version: 1.28.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: golang.org/x/crypto
  dependency-version: 0.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: golang.org/x/net
  dependency-version: 0.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/minor-and-patch-0719adb8ae branch from 6007742 to ab675e7 Compare November 25, 2025 17:31
@dependabot dependabot bot temporarily deployed to Receiver Registration - E2E Integration Tests (Stellar) November 25, 2025 17:32 Inactive
@dependabot dependabot bot temporarily deployed to Internal SEP Tests November 25, 2025 17:32 Inactive
@marwen-abid marwen-abid temporarily deployed to Receiver Registration - E2E Integration Tests (Stellar) November 26, 2025 18:35 — with GitHub Actions Inactive
@marwen-abid
Copy link
Contributor

@dependabot squash and merge

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 26, 2025

Beginning January 27, 2026, Dependabot will no longer support the @dependabot squash and merge command. Please use GitHub's native pull request controls instead. Please see the changelog announcement for additional details.

@dependabot dependabot bot merged commit cdbf9c9 into develop Nov 26, 2025
14 checks passed
@dependabot dependabot bot deleted the dependabot/go_modules/minor-and-patch-0719adb8ae branch November 26, 2025 18:45
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 go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants