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

feat(deps): bump the gomod-deps group with 12 updates #2186

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the gomod-deps group with 12 updates:

Package From To
github.com/go-playground/validator/v10 10.18.0 10.19.0
github.com/minio/minio-go/v7 7.0.67 7.0.69
github.com/prometheus/client_golang 1.18.0 1.19.0
github.com/stretchr/testify 1.8.4 1.9.0
go.mongodb.org/mongo-driver 1.14.0 1.15.0
google.golang.org/api 0.165.0 0.174.0
google.golang.org/grpc 1.61.0 1.63.0
google.golang.org/protobuf 1.32.0 1.33.0
github.com/IBM/sarama 1.42.2 1.43.1
github.com/redis/go-redis/v9 9.4.0 9.5.1
github.com/tencentyun/cos-go-sdk-v5 0.7.46 0.7.47
golang.org/x/sync 0.6.0 0.7.0

Updates github.com/go-playground/validator/v10 from 10.18.0 to 10.19.0

Release notes

Sourced from github.com/go-playground/validator/v10's releases.

Release 10.19.0

What was added?

Added opt-in ability to validate private fields in PR, thanks @​nikolaianohyn via the new WithPrivateFieldValidation option when initializing validator.

Commits

Updates github.com/minio/minio-go/v7 from 7.0.67 to 7.0.69

Release notes

Sourced from github.com/minio/minio-go/v7's releases.

Bugfix Release

What's Changed

New Contributors

Full Changelog: minio/minio-go@v7.0.67...v7.0.68

Commits

Updates github.com/prometheus/client_golang from 1.18.0 to 1.19.0

Release notes

Sourced from github.com/prometheus/client_golang's releases.

v1.19.0

What's Changed

The module prometheus/common v0.48.0 introduced an incompatibility when used together with client_golang (See prometheus/client_golang#1448 for more details). If your project uses client_golang and you want to use prometheus/common v0.48.0 or higher, please update client_golang to v1.19.0.

  • [CHANGE] Minimum required go version is now 1.20 (we also test client_golang against new 1.22 version). #1445 #1449
  • [FEATURE] collectors: Add version collector. #1422 #1427

New Contributors

Full Changelog: prometheus/client_golang@v1.18.0...v1.19.0

Changelog

Sourced from github.com/prometheus/client_golang's changelog.

1.19.0 / 2023-02-27

The module prometheus/common v0.48.0 introduced an incompatibility when used together with client_golang (See prometheus/client_golang#1448 for more details). If your project uses client_golang and you want to use prometheus/common v0.48.0 or higher, please update client_golang to v1.19.0.

  • [CHANGE] Minimum required go version is now 1.20 (we also test client_golang against new 1.22 version). #1445 #1449
  • [FEATURE] collectors: Add version collector. #1422 #1427
Commits
  • 77d4003 Add 1.19.0 changelog (#1451)
  • 14259fa Merge pull request #1448 from ywwg/owilliams/content-negotiation
  • 6d03920 deps: bump prometheus/common version
  • 353395b Remove support for go 1.19 (#1449)
  • 9dd5d2a Merge pull request #1445 from kavu/add_go122_metrics_test
  • c906a5e Add support for Go 1.22
  • 7ac9036 Merge pull request #1440 from prometheus/dependabot/github_actions/github-act...
  • 8c7e30f Merge pull request #1441 from prometheus/dependabot/go_modules/tutorial/whats...
  • 08769f8 Bump github.com/prometheus/common in /tutorial/whatsup
  • 83d5940 Bump the github-actions group with 2 updates
  • Additional commits viewable in compare view

Updates github.com/stretchr/testify from 1.8.4 to 1.9.0

Release notes

Sourced from github.com/stretchr/testify's releases.

v1.9.0

What's Changed

... (truncated)

Commits
  • bb548d0 Merge pull request #1552 from stretchr/dependabot/go_modules/github.com/stret...
  • 814075f build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2
  • e045612 Merge pull request #1339 from bogdandrutu/uintptr
  • 5b6926d Merge pull request #1385 from hslatman/not-implements
  • 9f97d67 Merge pull request #1550 from stretchr/release-notes
  • bcb0d3f Include the auto-release notes in releases
  • fb770f8 Merge pull request #1247 from ccoVeille/typos
  • 85d8bb6 fix typos in comments, tests and github templates
  • e2741fa Merge pull request #1548 from arjunmahishi/msgAndArgs
  • 6e59f20 http_assertions: assert that the msgAndArgs actually works in tests
  • Additional commits viewable in compare view

Updates go.mongodb.org/mongo-driver from 1.14.0 to 1.15.0

Release notes

Sourced from go.mongodb.org/mongo-driver's releases.

MongoDB Go Driver 1.15.0

The MongoDB Go Driver Team is pleased to release version 1.15.0 of the official Go driver.

Release Notes

This release adds a feature that can prevent "connection churn" caused by operation timeouts.

Prevent "Connection Churn" Caused by Timeouts

Previously, the Go Driver would close the in-use connection when an operation timed out. However, closing the in-use connection can cause significant additional application and database load if many timeouts happen quickly, potentially causing "connection churn" that can exacerbate latency issues. The Go Driver now offers a new feature that waits (for a maximum of 1 second) for the connection to be reusable after an operation times out instead of closing it.

To enable the new feature, set a Client-wide timeout by using SetTimeout or by specifing the timeoutMS connection string option. Use SetTimeout(0) or timeoutMS=0 to enable the new feature without adding new timeouts. See SetTimeout for more information about the Client-wide timeout configuration.


For a full list of tickets included in this release, please see the links below:

Full Changelog: v1.14.0...1.15.0

Documentation for the Go driver can be found on pkg.go.dev and the MongoDB documentation site. BSON library documentation is also available on pkg.go.dev. Questions and inquiries can be asked on the MongoDB Developer Community. Bugs can be reported in the Go Driver project in the MongoDB JIRA where a list of current issues can be found. Your feedback on the Go driver is greatly appreciated!

Commits
  • 7a495f2 Update version to v1.15.0
  • 64d6ed0 Fix version to prepare for the v1.15.0 release. (#1604)
  • 86cb647 GODRIVER-3145 Don't retry on context timeout or cancellation. (#1598)
  • e9a633c GODRIVER-3137 Skip failing transaction tests (#1599)
  • b605d09 GODRIVER-3172 Read response in the background after an op timeout. (#1589)
  • 722a2f2 GODRIVER-3123 Skip test until QE Range Protocol V2 is Implemented (#1600)
  • 94dfdff GODRIVER-2910 Add durations to connection pool events. (#1590)
  • b693b75 GODRIVER-3161 Resync the fle2v2-Range-* tests and skip prose test 22 (#1591)
  • d41a7cc Fix typo within WriteConcern docs (#1579)
  • d90de95 GODRIVER-3158 Invoke all Drivers Evergreen Tools Scripts with Bash (#1580)
  • Additional commits viewable in compare view

Updates google.golang.org/api from 0.165.0 to 0.174.0

Release notes

Sourced from google.golang.org/api's releases.

v0.174.0

0.174.0 (2024-04-17)

Features

Bug Fixes

v0.173.0

0.173.0 (2024-04-16)

Features

v0.172.0

0.172.0 (2024-03-26)

Features

v0.171.0

... (truncated)

Changelog

Sourced from google.golang.org/api's changelog.

0.174.0 (2024-04-17)

Features

Bug Fixes

0.173.0 (2024-04-16)

Features

0.172.0 (2024-03-26)

Features

0.171.0 (2024-03-21)

Features

... (truncated)

Commits

Updates google.golang.org/grpc from 1.61.0 to 1.63.0

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.63.0

Behavior Changes

  • grpc: Return canonical target string from resolver.Address.String() (experimental) (#6923)
  • client & server: when using write buffer pooling, use input value for buffer size instead of size*2 (#6983)

New Features

  • grpc: add ClientConn.CanonicalTarget() to return the canonical target string. (#7006)
  • xds: implement LRS named metrics support (gRFC A64) (#7027)
  • grpc: introduce grpc.NewClient to allow users to create new clients in idle mode and with "dns" as the default resolver (#7010)

API Changes

  • grpc: stabilize experimental method ClientConn.Target() (#7006)

Bug Fixes

  • xds: fix an issue that would cause the client to send an empty list of resources for LDS/CDS upon reconnecting with the management server (#7026)
  • server: Fix some errors returned by a server when using a grpc.Server as an http.Handler with the Go stdlib HTTP server (#6989)
  • resolver/dns: add SetResolvingTimeout to allow configuring the DNS resolver's global timeout (#6917)
  • Set the security level of Windows named pipes to NoSecurity (#6956)

Release 1.62.2

Dependencies

Release 1.62.1

Bug Fixes

  • xds: fix a bug that results in no matching virtual host found RPC errors due to a difference between the target and LDS resource names (#6997)
  • server: fixed stats handler data InPayload.Length for unary RPC calls (#6766)
  • grpc: the experimental RecvBufferPool DialOption and ServerOption are now active during unary RPCs with compression (#6766)
  • grpc: trim whitespaces in accept-encoding header before determining compressors

Release 1.62.0

New Features

  • grpc: Add StaticMethod CallOption as a signal to stats handler that a method is safe to use as an instrument key (#6986)

Behavior Changes

... (truncated)

Commits
  • c68f456 Change version to 1.63.0 (#7050)
  • 6369167 *: update http2 dependency (#7082)
  • 8854761 cherry-pick: channelz: fix race accessing channelMap without lock (#7079) (#7...
  • e62770d channelz: add LocalAddr to listen sockets and test (#7062) (#7063)
  • 4ffccf1 googlec2p: use xdstp style template for client LDS resource name (#7048)
  • faf9964 gracefulswitch: add ParseConfig and make UpdateClientConnState call SwitchTo ...
  • 800a8e0 channelz: re-add state for subchannels (#7046)
  • dadbbfa channelz: re-add target and state (#7042)
  • 55cd7a6 channelz: major cleanup / reorganization (#6969)
  • a1033b1 xds: add LRS named metrics support (#7027)
  • Additional commits viewable in compare view

Updates google.golang.org/protobuf from 1.32.0 to 1.33.0

Updates github.com/IBM/sarama from 1.42.2 to 1.43.1

Release notes

Sourced from github.com/IBM/sarama's releases.

Version 1.43.1 (2024-03-27)

What's Changed

🐛 Fixes

📦 Dependency updates

New Contributors

Full Changelog: IBM/sarama@v1.43.0...v1.43.1

Version 1.43.0 (2024-02-22)

[!NOTE]
The go.mod directive has been bumped to 1.19 as the minimum version of Go required for the module. This was necessary to continue to receive updates from some of the third party dependencies that Sarama makes use of for compression.

What's Changed

🎉 New Features / Improvements

🐛 Fixes

📦 Dependency updates

🔧 Maintenance

New Contributors

Full Changelog: IBM/sarama@v1.42.2...v1.43.0

Changelog

Sourced from github.com/IBM/sarama's changelog.

Changelog

Commits
  • 4ad3504 chore(ci): bump docker/setup-buildx-action from 3.0.0 to 3.2.0 (#2838)
  • 837fab4 chore(ci): bump docker/bake-action (#2837)
  • f21c512 chore(deps): bump go.opentelemetry.io/otel/exporters/stdout/stdoutmetric (#2815)
  • 392187d chore(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#2822)
  • c432bc2 chore(deps): bump the golang-org-x group with 1 update (

Bumps the gomod-deps group with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/go-playground/validator/v10](https://github.com/go-playground/validator) | `10.18.0` | `10.19.0` |
| [github.com/minio/minio-go/v7](https://github.com/minio/minio-go) | `7.0.67` | `7.0.69` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.18.0` | `1.19.0` |
| [github.com/stretchr/testify](https://github.com/stretchr/testify) | `1.8.4` | `1.9.0` |
| [go.mongodb.org/mongo-driver](https://github.com/mongodb/mongo-go-driver) | `1.14.0` | `1.15.0` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.165.0` | `0.174.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.61.0` | `1.63.0` |
| google.golang.org/protobuf | `1.32.0` | `1.33.0` |
| [github.com/IBM/sarama](https://github.com/IBM/sarama) | `1.42.2` | `1.43.1` |
| [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) | `9.4.0` | `9.5.1` |
| [github.com/tencentyun/cos-go-sdk-v5](https://github.com/tencentyun/cos-go-sdk-v5) | `0.7.46` | `0.7.47` |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.6.0` | `0.7.0` |


Updates `github.com/go-playground/validator/v10` from 10.18.0 to 10.19.0
- [Release notes](https://github.com/go-playground/validator/releases)
- [Commits](go-playground/validator@v10.18.0...v10.19.0)

Updates `github.com/minio/minio-go/v7` from 7.0.67 to 7.0.69
- [Release notes](https://github.com/minio/minio-go/releases)
- [Commits](minio/minio-go@v7.0.67...v7.0.69)

Updates `github.com/prometheus/client_golang` from 1.18.0 to 1.19.0
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.18.0...v1.19.0)

Updates `github.com/stretchr/testify` from 1.8.4 to 1.9.0
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.8.4...v1.9.0)

Updates `go.mongodb.org/mongo-driver` from 1.14.0 to 1.15.0
- [Release notes](https://github.com/mongodb/mongo-go-driver/releases)
- [Commits](mongodb/mongo-go-driver@v1.14.0...v1.15.0)

Updates `google.golang.org/api` from 0.165.0 to 0.174.0
- [Release notes](https://github.com/googleapis/google-api-go-client/releases)
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
- [Commits](googleapis/google-api-go-client@v0.165.0...v0.174.0)

Updates `google.golang.org/grpc` from 1.61.0 to 1.63.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.61.0...v1.63.0)

Updates `google.golang.org/protobuf` from 1.32.0 to 1.33.0

Updates `github.com/IBM/sarama` from 1.42.2 to 1.43.1
- [Release notes](https://github.com/IBM/sarama/releases)
- [Changelog](https://github.com/IBM/sarama/blob/main/CHANGELOG.md)
- [Commits](IBM/sarama@v1.42.2...v1.43.1)

Updates `github.com/redis/go-redis/v9` from 9.4.0 to 9.5.1
- [Release notes](https://github.com/redis/go-redis/releases)
- [Changelog](https://github.com/redis/go-redis/blob/master/CHANGELOG.md)
- [Commits](redis/go-redis@v9.4.0...v9.5.1)

Updates `github.com/tencentyun/cos-go-sdk-v5` from 0.7.46 to 0.7.47
- [Release notes](https://github.com/tencentyun/cos-go-sdk-v5/releases)
- [Changelog](https://github.com/tencentyun/cos-go-sdk-v5/blob/master/CHANGELOG.md)
- [Commits](tencentyun/cos-go-sdk-v5@v0.7.46...v0.7.47)

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/go-playground/validator/v10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-deps
- dependency-name: github.com/minio/minio-go/v7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-deps
- dependency-name: github.com/prometheus/client_golang
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-deps
- dependency-name: github.com/stretchr/testify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-deps
- dependency-name: go.mongodb.org/mongo-driver
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-deps
- dependency-name: google.golang.org/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-deps
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-deps
- dependency-name: google.golang.org/protobuf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-deps
- dependency-name: github.com/IBM/sarama
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-deps
- dependency-name: github.com/redis/go-redis/v9
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-deps
- dependency-name: github.com/tencentyun/cos-go-sdk-v5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-deps
- dependency-name: golang.org/x/sync
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 19, 2024

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

@dependabot dependabot bot closed this Apr 19, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/gomod-deps-6ddea835c6 branch April 19, 2024 14:25
@openimsdk openimsdk locked and limited conversation to collaborators Apr 19, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants