Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dev: bump the safe group with 7 updates #7464

Merged
merged 2 commits into from
Jan 7, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 6, 2025

Bumps the safe group with 7 updates:

Package From To
github.com/getsentry/sentry-go 0.30.0 0.31.1
github.com/uptrace/bun 1.2.6 1.2.8
github.com/uptrace/bun/dialect/pgdialect 1.2.6 1.2.8
github.com/uptrace/bun/driver/pgdriver 1.2.6 1.2.8
golang.org/x/crypto 0.31.0 0.32.0
golang.org/x/net 0.33.0 0.34.0
golang.org/x/oauth2 0.24.0 0.25.0

Updates github.com/getsentry/sentry-go from 0.30.0 to 0.31.1

Release notes

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

0.31.1

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

Bug Fixes

  • Correct wrong module name for sentry-go/logrus (#950)

0.31.0

Breaking Changes

  • Remove support for metrics. Read more about the end of the Metrics beta here. (#914)

  • Remove support for profiling. (#915)

  • Remove Segment field from the User struct. This field is no longer used in the Sentry product. (#928)

  • Every integration is now a separate module, reducing the binary size and number of dependencies. Once you update sentry-go to latest version, you'll need to go get the integration you want to use. For example, if you want to use the echo integration, you'll need to run go get github.com/getsentry/sentry-go/echo (#919).

Features

  • Add the ability to override hub in context for integrations that use custom context. (#931)

  • Add HubProvider Hook for sentrylogrus, enabling dynamic Sentry hub allocation for each log entry or goroutine. (#936)

This change enhances compatibility with Sentry's recommendation of using separate hubs per goroutine. To ensure a separate Sentry hub for each goroutine, configure the HubProvider like this:

hook, err := sentrylogrus.New(nil, sentry.ClientOptions{})
if err != nil {
    log.Fatalf("Failed to initialize Sentry hook: %v", err)
}
// Set a custom HubProvider to generate a new hub for each goroutine or log entry
hook.SetHubProvider(func() *sentry.Hub {
client, _ := sentry.NewClient(sentry.ClientOptions{})
return sentry.NewHub(client, sentry.NewScope())
})
logrus.AddHook(hook)

Bug Fixes

  • Add support for closing worker goroutines started by the HTTPTranport to prevent goroutine leaks. (#894)
client, _ := sentry.NewClient()
defer client.Close()

... (truncated)

Changelog

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

0.31.1

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

Bug Fixes

  • Correct wrong module name for sentry-go/logrus (#950)

0.31.0

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

Breaking Changes

  • Remove support for metrics. Read more about the end of the Metrics beta here. (#914)

  • Remove support for profiling. (#915)

  • Remove Segment field from the User struct. This field is no longer used in the Sentry product. (#928)

  • Every integration is now a separate module, reducing the binary size and number of dependencies. Once you update sentry-go to latest version, you'll need to go get the integration you want to use. For example, if you want to use the echo integration, you'll need to run go get github.com/getsentry/sentry-go/echo (#919).

Features

Add the ability to override hub in context for integrations that use custom context. (#931)

  • Add HubProvider Hook for sentrylogrus, enabling dynamic Sentry hub allocation for each log entry or goroutine. (#936)

This change enhances compatibility with Sentry's recommendation of using separate hubs per goroutine. To ensure a separate Sentry hub for each goroutine, configure the HubProvider like this:

hook, err := sentrylogrus.New(nil, sentry.ClientOptions{})
if err != nil {
    log.Fatalf("Failed to initialize Sentry hook: %v", err)
}
// Set a custom HubProvider to generate a new hub for each goroutine or log entry
hook.SetHubProvider(func() *sentry.Hub {
client, _ := sentry.NewClient(sentry.ClientOptions{})
return sentry.NewHub(client, sentry.NewScope())
})
logrus.AddHook(hook)

Bug Fixes

  • Add support for closing worker goroutines started by the HTTPTranport to prevent goroutine leaks. (#894)
</tr></table> 

... (truncated)

Commits

Updates github.com/uptrace/bun from 1.2.6 to 1.2.8

Release notes

Sourced from github.com/uptrace/bun's releases.

v1.2.8

Please refer to CHANGELOG.md for details

v1.2.7

Please refer to CHANGELOG.md for details

Changelog

Sourced from github.com/uptrace/bun's changelog.

1.2.8 (2025-01-06)

Bug Fixes

  • comment string zero bytes filtering (34dfd68)
  • get m2m table's structKey with driver.Valuer (f107314), closes #1100
  • return error when use dest with has-many/many-to-many (8296774), closes #606
  • support scan float32 to float32/float64 (a52e733), closes #1087

Features

  • add RelationWithOpts method to SelectQuery (dd3ef52)
  • enhance debugging by adding query comments in headers (1376d18)
  • sort fields by struct (5edb672), closes #1095

1.2.7 (2025-01-01)

Bug Fixes

  • do not create new migrations if nothing to migrate (5cc961d)
  • has many relation with driver.Valuer (cb8c42c)
  • improve range type to support driver.Valuer and sql.Scanner (856e12b)
  • pass correct 'transactional' parameter (ebdef1b)
  • pgdialect: remove unsigned integer conversion (ab3c679), closes uptrace/bun#624
  • remove unused param on table.go and tables.go: canAddr (d563e2d)
  • replace the link to docs repo in CONTRIBUTING.md (e120096)
  • trim surrounding '' in string literal in DEFAULT clause (a0dff72)

Features

  • add an ordered map to remove unnecessary dependencies (9fea143)
  • support disable dialect's feature (5343bd7)
Commits
  • 1a507f8 chore: release v1.2.8 (release.sh)
  • e8aaa46 Merge pull request #1098 from uptrace/feat-fields-sort-by-struct
  • 20eea4e Merge pull request #1101 from j2gg0s/fix-get-m2m-table-key
  • b50a0a5 Merge pull request #1099 from j2gg0s/fix-return-err-when-use-scan-dest-with-h...
  • 5edb672 feat: sort fields by struct
  • f107314 fix: get m2m table's structKey with driver.Valuer
  • a92a83e Merge pull request #1082 from GreenmaskIO/feat/add_query_comment
  • e60ae2a Merge pull request #1088 from j2gg0s/fix-support-scan-float32-to-float32
  • 8296774 fix: return error when use dest with has-many/many-to-many
  • 4505099 ci: try to revert ci cache
  • Additional commits viewable in compare view

Updates github.com/uptrace/bun/dialect/pgdialect from 1.2.6 to 1.2.8

Release notes

Sourced from github.com/uptrace/bun/dialect/pgdialect's releases.

v1.2.8

Please refer to CHANGELOG.md for details

v1.2.7

Please refer to CHANGELOG.md for details

Changelog

Sourced from github.com/uptrace/bun/dialect/pgdialect's changelog.

1.2.8 (2025-01-06)

Bug Fixes

  • comment string zero bytes filtering (34dfd68)
  • get m2m table's structKey with driver.Valuer (f107314), closes #1100
  • return error when use dest with has-many/many-to-many (8296774), closes #606
  • support scan float32 to float32/float64 (a52e733), closes #1087

Features

  • add RelationWithOpts method to SelectQuery (dd3ef52)
  • enhance debugging by adding query comments in headers (1376d18)
  • sort fields by struct (5edb672), closes #1095

1.2.7 (2025-01-01)

Bug Fixes

  • do not create new migrations if nothing to migrate (5cc961d)
  • has many relation with driver.Valuer (cb8c42c)
  • improve range type to support driver.Valuer and sql.Scanner (856e12b)
  • pass correct 'transactional' parameter (ebdef1b)
  • pgdialect: remove unsigned integer conversion (ab3c679), closes uptrace/bun#624
  • remove unused param on table.go and tables.go: canAddr (d563e2d)
  • replace the link to docs repo in CONTRIBUTING.md (e120096)
  • trim surrounding '' in string literal in DEFAULT clause (a0dff72)

Features

  • add an ordered map to remove unnecessary dependencies (9fea143)
  • support disable dialect's feature (5343bd7)
Commits
  • 1a507f8 chore: release v1.2.8 (release.sh)
  • e8aaa46 Merge pull request #1098 from uptrace/feat-fields-sort-by-struct
  • 20eea4e Merge pull request #1101 from j2gg0s/fix-get-m2m-table-key
  • b50a0a5 Merge pull request #1099 from j2gg0s/fix-return-err-when-use-scan-dest-with-h...
  • 5edb672 feat: sort fields by struct
  • f107314 fix: get m2m table's structKey with driver.Valuer
  • a92a83e Merge pull request #1082 from GreenmaskIO/feat/add_query_comment
  • e60ae2a Merge pull request #1088 from j2gg0s/fix-support-scan-float32-to-float32
  • 8296774 fix: return error when use dest with has-many/many-to-many
  • 4505099 ci: try to revert ci cache
  • Additional commits viewable in compare view

Updates github.com/uptrace/bun/driver/pgdriver from 1.2.6 to 1.2.8

Release notes

Sourced from github.com/uptrace/bun/driver/pgdriver's releases.

v1.2.8

Please refer to CHANGELOG.md for details

v1.2.7

Please refer to CHANGELOG.md for details

Changelog

Sourced from github.com/uptrace/bun/driver/pgdriver's changelog.

1.2.8 (2025-01-06)

Bug Fixes

  • comment string zero bytes filtering (34dfd68)
  • get m2m table's structKey with driver.Valuer (f107314), closes #1100
  • return error when use dest with has-many/many-to-many (8296774), closes #606
  • support scan float32 to float32/float64 (a52e733), closes #1087

Features

  • add RelationWithOpts method to SelectQuery (dd3ef52)
  • enhance debugging by adding query comments in headers (1376d18)
  • sort fields by struct (5edb672), closes #1095

1.2.7 (2025-01-01)

Bug Fixes

  • do not create new migrations if nothing to migrate (5cc961d)
  • has many relation with driver.Valuer (cb8c42c)
  • improve range type to support driver.Valuer and sql.Scanner (856e12b)
  • pass correct 'transactional' parameter (ebdef1b)
  • pgdialect: remove unsigned integer conversion (ab3c679), closes uptrace/bun#624
  • remove unused param on table.go and tables.go: canAddr (d563e2d)
  • replace the link to docs repo in CONTRIBUTING.md (e120096)
  • trim surrounding '' in string literal in DEFAULT clause (a0dff72)

Features

  • add an ordered map to remove unnecessary dependencies (9fea143)
  • support disable dialect's feature (5343bd7)
Commits
  • 1a507f8 chore: release v1.2.8 (release.sh)
  • e8aaa46 Merge pull request #1098 from uptrace/feat-fields-sort-by-struct
  • 20eea4e Merge pull request #1101 from j2gg0s/fix-get-m2m-table-key
  • b50a0a5 Merge pull request #1099 from j2gg0s/fix-return-err-when-use-scan-dest-with-h...
  • 5edb672 feat: sort fields by struct
  • f107314 fix: get m2m table's structKey with driver.Valuer
  • a92a83e Merge pull request #1082 from GreenmaskIO/feat/add_query_comment
  • e60ae2a Merge pull request #1088 from j2gg0s/fix-support-scan-float32-to-float32
  • 8296774 fix: return error when use dest with has-many/many-to-many
  • 4505099 ci: try to revert ci cache
  • Additional commits viewable in compare view

Updates golang.org/x/crypto from 0.31.0 to 0.32.0

Commits
  • 8929309 go.mod: update golang.org/x dependencies
  • 4a75ba5 all: make function and struct comments match the names
  • See full diff in compare view

Updates golang.org/x/net from 0.33.0 to 0.34.0

Commits
  • 8da7ed1 go.mod: update golang.org/x dependencies
  • 2124140 all: make function and struct comments match the names
  • e9d95ba http2: do not surface errors from a conn's idle timer expiring
  • c2be992 quic: remember which remote connection IDs have been retired
  • See full diff in compare view

Updates golang.org/x/oauth2 from 0.24.0 to 0.25.0

Commits

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 safe group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.30.0` | `0.31.1` |
| [github.com/uptrace/bun](https://github.com/uptrace/bun) | `1.2.6` | `1.2.8` |
| [github.com/uptrace/bun/dialect/pgdialect](https://github.com/uptrace/bun) | `1.2.6` | `1.2.8` |
| [github.com/uptrace/bun/driver/pgdriver](https://github.com/uptrace/bun) | `1.2.6` | `1.2.8` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.31.0` | `0.32.0` |
| [golang.org/x/net](https://github.com/golang/net) | `0.33.0` | `0.34.0` |
| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.24.0` | `0.25.0` |


Updates `github.com/getsentry/sentry-go` from 0.30.0 to 0.31.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.30.0...v0.31.1)

Updates `github.com/uptrace/bun` from 1.2.6 to 1.2.8
- [Release notes](https://github.com/uptrace/bun/releases)
- [Changelog](https://github.com/uptrace/bun/blob/master/CHANGELOG.md)
- [Commits](uptrace/bun@v1.2.6...v1.2.8)

Updates `github.com/uptrace/bun/dialect/pgdialect` from 1.2.6 to 1.2.8
- [Release notes](https://github.com/uptrace/bun/releases)
- [Changelog](https://github.com/uptrace/bun/blob/master/CHANGELOG.md)
- [Commits](uptrace/bun@v1.2.6...v1.2.8)

Updates `github.com/uptrace/bun/driver/pgdriver` from 1.2.6 to 1.2.8
- [Release notes](https://github.com/uptrace/bun/releases)
- [Changelog](https://github.com/uptrace/bun/blob/master/CHANGELOG.md)
- [Commits](uptrace/bun@v1.2.6...v1.2.8)

Updates `golang.org/x/crypto` from 0.31.0 to 0.32.0
- [Commits](golang/crypto@v0.31.0...v0.32.0)

Updates `golang.org/x/net` from 0.33.0 to 0.34.0
- [Commits](golang/net@v0.33.0...v0.34.0)

Updates `golang.org/x/oauth2` from 0.24.0 to 0.25.0
- [Commits](golang/oauth2@v0.24.0...v0.25.0)

---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: github.com/uptrace/bun
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: github.com/uptrace/bun/dialect/pgdialect
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: github.com/uptrace/bun/driver/pgdriver
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: golang.org/x/crypto
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: golang.org/x/net
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: golang.org/x/oauth2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner January 6, 2025 22:49
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jan 6, 2025
@dependabot dependabot bot requested a review from johanstokking January 6, 2025 22:49
@johanstokking johanstokking requested a review from a team as a code owner January 7, 2025 09:12
@github-actions github-actions bot added the tooling Development tooling label Jan 7, 2025
@johanstokking johanstokking merged commit 78139f3 into v3.33 Jan 7, 2025
14 of 16 checks passed
@johanstokking johanstokking deleted the dependabot/go_modules/safe-b7422b6225 branch January 7, 2025 09:48
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 tooling Development tooling
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant