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

chore(deps): bump the gomod group with 8 updates #431

Merged
merged 1 commit into from
Apr 12, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 12, 2024

Bumps the gomod group with 8 updates:

Package From To
github.com/alecthomas/assert/v2 2.6.0 2.8.1
github.com/go-sql-driver/mysql 1.8.0 1.8.1
github.com/nats-io/nats.go 1.34.0 1.34.1
github.com/zitadel/oidc/v3 3.18.0 3.21.0
go.opentelemetry.io/otel 1.24.0 1.25.0
golang.org/x/crypto 0.21.0 0.22.0
golang.org/x/oauth2 0.18.0 0.19.0
golang.org/x/sync 0.6.0 0.7.0

Updates github.com/alecthomas/assert/v2 from 2.6.0 to 2.8.1

Commits

Updates github.com/go-sql-driver/mysql from 1.8.0 to 1.8.1

Release notes

Sourced from github.com/go-sql-driver/mysql's releases.

v1.8.1

What's Changed

Bugfixes:

  • fix race condition when context is canceled in #1562 and #1570

Full Changelog: go-sql-driver/mysql@v1.8.0...v1.8.1

Changelog

Sourced from github.com/go-sql-driver/mysql's changelog.

Version 1.8.1 (2024-03-26)

Bugfixes:

  • fix race condition when context is canceled in #1562 and #1570
Commits

Updates github.com/nats-io/nats.go from 1.34.0 to 1.34.1

Release notes

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

Release v1.34.1

Changelog

Fixed

  • JetStream:
    • Fixed async publish error handling on disconnect (#1592)
    • Fixed race condition in Fetch and FetchBatch when using heartbeats (#1601)

Complete Changes

nats-io/nats.go@v1.34.0...v1.34.1

Commits

Updates github.com/zitadel/oidc/v3 from 3.18.0 to 3.21.0

Release notes

Sourced from github.com/zitadel/oidc/v3's releases.

v3.21.0

3.21.0 (2024-04-11)

Features

v3.20.1

3.20.1 (2024-04-09)

Bug Fixes

  • Fail safe, if optional endpoints are not given (#582) (06f37f8)

v3.20.0

3.20.0 (2024-04-08)

Features

  • support verification_url workaround for DeviceAuthorizationResponse unmarshal (#577) (e75a061)

v3.19.0

3.19.0 (2024-04-01)

Features

  • return oidc.Error in case of call token failure (#571) (c89d0ed)
Commits
  • 33f8df7 feat(deps): update go-jose to v4 (#588)
  • 06f37f8 fix: Fail safe, if optional endpoints are not given (#582)
  • 8a21d38 chore(deps): bump codecov/codecov-action from 4.1.1 to 4.2.0 (#585)
  • e75a061 feat: support verification_url workaround for DeviceAuthorizationResponse unm...
  • 33485b8 chore(deps): bump go.opentelemetry.io/otel from 1.24.0 to 1.25.0 (#584)
  • 3707387 chore(deps): bump golang.org/x/oauth2 from 0.18.0 to 0.19.0 (#580)
  • a3b73a6 chore(workflow): fix action/add-to-project version (#578)
  • 5cdb65c chore(deps): bump actions/add-to-project from 0.6.1 to 1.0.0 (#575)
  • d729c22 chore(deps): bump codecov/codecov-action from 4.1.0 to 4.1.1 (#576)
  • c89d0ed feat: return oidc.Error in case of call token failure (#571)
  • Additional commits viewable in compare view

Updates go.opentelemetry.io/otel from 1.24.0 to 1.25.0

Changelog

Sourced from go.opentelemetry.io/otel's changelog.

[1.25.0/0.47.0/0.0.8/0.1.0-alpha] 2024-04-05

Added

  • Add WithProxy option in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp. (#4906)
  • Add WithProxy option in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlptracehttp. (#4906)
  • Add AddLink method to the Span interface in go.opentelemetry.io/otel/trace. (#5032)
  • The Enabled method is added to the Logger interface in go.opentelemetry.io/otel/log. This method is used to notify users if a log record will be emitted or not. (#5071)
  • Add SeverityUndefined const to go.opentelemetry.io/otel/log. This value represents an unset severity level. (#5072)
  • Add Empty function in go.opentelemetry.io/otel/log to return a KeyValue for an empty value. (#5076)
  • Add go.opentelemetry.io/otel/log/global to manage the global LoggerProvider. This package is provided with the anticipation that all functionality will be migrate to go.opentelemetry.io/otel when go.opentelemetry.io/otel/log stabilizes. At which point, users will be required to migrage their code, and this package will be deprecated then removed. (#5085)
  • Add support for Summary metrics in the go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp and go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc exporters. (#5100)
  • Add otel.scope.name and otel.scope.version tags to spans exported by go.opentelemetry.io/otel/exporters/zipkin. (#5108)
  • Add support for AddLink to go.opentelemetry.io/otel/bridge/opencensus. (#5116)
  • Add String method to Value and KeyValue in go.opentelemetry.io/otel/log. (#5117)
  • Add Exemplar support to go.opentelemetry.io/otel/exporters/prometheus. (#5111)
  • Add metric semantic conventions to go.opentelemetry.io/otel/semconv/v1.24.0. Future semconv packages will include metric semantic conventions as well. (#4528)

Changed

  • SpanFromContext and SpanContextFromContext in go.opentelemetry.io/otel/trace no longer make a heap allocation when the passed context has no span. (#5049)
  • go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc and go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc now create a gRPC client in idle mode and with "dns" as the default resolver using grpc.NewClient. (#5151) Because of that WithDialOption ignores grpc.WithBlock, grpc.WithTimeout, and grpc.WithReturnConnectionError. Notice that grpc.DialContext which was used before is now deprecated.

Fixed

  • Clarify the documentation about equivalence guarantees for the Set and Distinct types in go.opentelemetry.io/otel/attribute. (#5027)
  • Prevent default ErrorHandler self-delegation. (#5137)
  • Update all dependencies to address [GO-2024-2687]. (#5139)

Removed

  • Drop support for [Go 1.20]. (#4967)

Deprecated

  • Deprecate go.opentelemetry.io/otel/attribute.Sortable type. (#4734)
  • Deprecate go.opentelemetry.io/otel/attribute.NewSetWithSortable function. (#4734)
  • Deprecate go.opentelemetry.io/otel/attribute.NewSetWithSortableFiltered function. (#4734)
Commits
  • 6628407 Release v1.25.0/v0.47.0/v0.0.8/v0.1.0-alpha (#5154)
  • 82b49b4 Add otlploghttp package documentation (#5150)
  • 5bd5582 dependabot updates Thu Apr 4 20:43:44 UTC 2024 (#5155)
  • 6394b02 semconv: Add metric generation (#4880)
  • 35c9570 Prevent default ErrorHandler self-delegation (#5137)
  • 98fd439 Bump bump google.golang.org/grpc from 1.62.1 to 1.63.0 and use grpc.NewClient...
  • 0168437 Add exemplar support to the prometheus exporter (#5111)
  • e6e4e4a build(deps): bump benchmark-action/github-action-benchmark (#5142)
  • 73ee3bb build(deps): bump codecov/codecov-action from 4.1.1 to 4.2.0 (#5140)
  • 14e3f6b Add otlploghttp exporter skeleton (#5138)
  • Additional commits viewable in compare view

Updates golang.org/x/crypto from 0.21.0 to 0.22.0

Commits
  • d042a39 go.mod: update golang.org/x dependencies
  • b92bf94 ssh: respect MaxAuthTries also for "none" auth attempts
  • 6f79b5a ssh: add server side multi-step authentication
  • 8d0d405 x/crypto/chacha20: cleanup chacha_ppc64le.s
  • b91329d all: remove redundant words in comments and fix some typos
  • See full diff in compare view

Updates golang.org/x/oauth2 from 0.18.0 to 0.19.0

Commits
  • d0e617c google: add Credentials.UniverseDomainProvider
  • 3c9c1f6 oauth2/google: fix the logic of sts 0 value of expires_in
  • 5a05c65 oauth2/google: fix remove content-type header from idms get requests
  • 3a6776a appengine: drop obsolete code for AppEngine envs <=Go 1.11
  • See full diff in compare view

Updates golang.org/x/sync from 0.6.0 to 0.7.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 gomod group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/alecthomas/assert/v2](https://github.com/alecthomas/assert) | `2.6.0` | `2.8.1` |
| [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) | `1.8.0` | `1.8.1` |
| [github.com/nats-io/nats.go](https://github.com/nats-io/nats.go) | `1.34.0` | `1.34.1` |
| [github.com/zitadel/oidc/v3](https://github.com/zitadel/oidc) | `3.18.0` | `3.21.0` |
| [go.opentelemetry.io/otel](https://github.com/open-telemetry/opentelemetry-go) | `1.24.0` | `1.25.0` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.21.0` | `0.22.0` |
| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.18.0` | `0.19.0` |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.6.0` | `0.7.0` |


Updates `github.com/alecthomas/assert/v2` from 2.6.0 to 2.8.1
- [Commits](alecthomas/assert@v2.6.0...v2.8.1)

Updates `github.com/go-sql-driver/mysql` from 1.8.0 to 1.8.1
- [Release notes](https://github.com/go-sql-driver/mysql/releases)
- [Changelog](https://github.com/go-sql-driver/mysql/blob/v1.8.1/CHANGELOG.md)
- [Commits](go-sql-driver/mysql@v1.8.0...v1.8.1)

Updates `github.com/nats-io/nats.go` from 1.34.0 to 1.34.1
- [Release notes](https://github.com/nats-io/nats.go/releases)
- [Commits](nats-io/nats.go@v1.34.0...v1.34.1)

Updates `github.com/zitadel/oidc/v3` from 3.18.0 to 3.21.0
- [Release notes](https://github.com/zitadel/oidc/releases)
- [Changelog](https://github.com/zitadel/oidc/blob/main/.releaserc.js)
- [Commits](zitadel/oidc@v3.18.0...v3.21.0)

Updates `go.opentelemetry.io/otel` from 1.24.0 to 1.25.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.24.0...v1.25.0)

Updates `golang.org/x/crypto` from 0.21.0 to 0.22.0
- [Commits](golang/crypto@v0.21.0...v0.22.0)

Updates `golang.org/x/oauth2` from 0.18.0 to 0.19.0
- [Commits](golang/oauth2@v0.18.0...v0.19.0)

Updates `golang.org/x/sync` from 0.6.0 to 0.7.0
- [Commits](golang/sync@v0.6.0...v0.7.0)

---
updated-dependencies:
- dependency-name: github.com/alecthomas/assert/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/go-sql-driver/mysql
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/nats-io/nats.go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/zitadel/oidc/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: go.opentelemetry.io/otel
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: golang.org/x/crypto
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: golang.org/x/oauth2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: golang.org/x/sync
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Apr 12, 2024
@github-actions github-actions bot enabled auto-merge April 12, 2024 07:45
@github-actions github-actions bot merged commit 0fbad5d into main Apr 12, 2024
10 checks passed
@github-actions github-actions bot deleted the dependabot/go_modules/gomod-b5a8ffa89d branch April 12, 2024 07:49
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.

1 participant