Skip to content

Bump the ruby group with 6 updates#436

Merged
chadlwilson merged 1 commit into
masterfrom
dependabot/bundler/ruby-c79b47ced0
Jun 2, 2026
Merged

Bump the ruby group with 6 updates#436
chadlwilson merged 1 commit into
masterfrom
dependabot/bundler/ruby-c79b47ced0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 2, 2026

Copy link
Copy Markdown
Contributor

Bumps the ruby group with 6 updates:

Package From To
yard 0.9.43 0.9.44
rubyzip 3.2.2 3.3.1
grpc 1.80.0 1.81.0
grpc-tools 1.80.0 1.81.0
google-protobuf 4.34.1 4.35.0
googleapis-common-protos-types 1.22.0 1.23.0

Updates yard from 0.9.43 to 0.9.44

Updates rubyzip from 3.2.2 to 3.3.1

Release notes

Sourced from rubyzip's releases.

v3.3.1

Version 3.3.1

The 3.3.x line ensures that Zip::InputStream behaves more like standard Ruby IO classes.

⚠️ There are breaking changes in the 3.x series ⚠️

Please see the README and Updating to version 3.x in the wiki for help upgrading from version 2.4.x to version 3.x.

v3.3.0

Version 3.3.0

The 3.3.x line ensures that Zip::InputStream behaves more like standard Ruby IO classes.

⚠️ There are breaking changes in the 3.x series ⚠️

Please see the README and Updating to version 3.x in the wiki for help upgrading from version 2.4.x to version 3.x.

Changelog

Sourced from rubyzip's changelog.

3.3.1 (2026-05-30)

  • Reinstate default param for InputStream#sysread. #663

3.3.0 (2026-05-02)

  • Refactor InputStream and AbstractInputStream. #661

Tooling/internal:

  • Update Actions to use checkout@v5.
  • Add Ruby4.0 to the CI matrix. #659
Commits
  • a4a2dbb Update version number and Changelog for release.
  • 68f2b95 Reinstate default param for InputStream#sysread.
  • 1e7982e Update copyright year in LICENSE.md.
  • cc366ba Update version number and Changelog for release.
  • c67d99f Document InputStream fully.
  • 4ac8d35 Test AbstractInputStream#read fully.
  • 19635d4 Tidy up AbstractInputStreamTest test data.
  • 6d7231a Update usage of InputStream#read in other tests.
  • 8f823b8 Refactor AbstractInputStream#readlines.
  • 52a91b5 Refactor AbstractInputStream#each_line.
  • Additional commits viewable in compare view

Updates grpc from 1.80.0 to 1.81.0

Release notes

Sourced from grpc's releases.

Release v1.81.0

This is release 1.81.0 (graphic) of gRPC Core.

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes, with highlights listed below.

Core

  • [EventEngine] Fix a potential use-after-free error on Windows. (#42078)
  • [ssl] Server side handshaker factory stores a map of key signers. (#42002)
  • [Core] Fix completion queue shutdown race on weak memory models (ARM). (#41510)
  • [EventEngine] Fix a Windows race that causes an assertion error. (#41563)
  • [grpc_error] enable error_flatten experiment in OSS. (#41471)
  • [Python] Trim Python2 backward compatiblity syntax - removed (object) inheritance. (#41708)

Objective-C

  • [ObjC] Add receiveNextMessage to GRPCUnaryProtoCall. (#42260)

Python

  • [Python] Add typing_extensions dep to aio Bazel target. (#42001)
  • [Python] [Pyright] Part 1 - Pyright for src/python/grpcio/grpc/aio/_base_server.py. (#42240)
  • [Python] Drop 3.9. (#42145)
  • [Python] grpc-status: Relax protobuf dependency upper bound to allow 7.x. (#41948)
  • [Python] [Typeguard] Part 5 - Add Typeguard SYNC Stack in tests. (#40278)
  • [Python] Remove GIL from ReceiveMessageOperation.un_c method. (#41812)
  • [Python] Support observability in AsyncIO stack. (#41573)

Ruby

  • [Ruby] Drop support for EOL Ruby 3.1 and clean up. (#41435)
  • [Ruby] Composed CallCredentials keep a reference to their source. (#41782)

Release v1.81.0-pre1

This is a prerelease of gRPC Core 1.81.0 (graphic).

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This prerelease contains refinements, improvements, and bug fixes.

Commits
  • 8bdf11e [Release] Bump version to 1.81.0 (on v1.81.x branch) (#42432)
  • 0029e06 Move all gRPC Session classes to the experimental namespace (#42462)
  • 6244f3b [Release] Bump version to 1.81.0-pre1 (on v1.81.x branch) (#42378)
  • 1108777 [Release] Bump core version to 54.0.0 for upcoming release (#42321)
  • 74940e8 [fix] Add back the do-while loop that handles the TSI_RESULT correctly.
  • 5c6185c [CHTTP2] Assert
  • 51bc437 Automated rollback of commit aab1eab78f9fcb3fc6e0aa9c8d7a59de280dbe3f.
  • aab1eab [Inproc] Ensure stream is always cancelled under the transport lock.
  • 76841c6 [EventEngine] Fix a potential use-after-free error on Windows (#42078)
  • 383f8a5 [RBAC] fix config validation edge case (#42284)
  • Additional commits viewable in compare view

Updates grpc-tools from 1.80.0 to 1.81.0

Release notes

Sourced from grpc-tools's releases.

Release v1.81.0

This is release 1.81.0 (graphic) of gRPC Core.

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes, with highlights listed below.

Core

  • [EventEngine] Fix a potential use-after-free error on Windows. (#42078)
  • [ssl] Server side handshaker factory stores a map of key signers. (#42002)
  • [Core] Fix completion queue shutdown race on weak memory models (ARM). (#41510)
  • [EventEngine] Fix a Windows race that causes an assertion error. (#41563)
  • [grpc_error] enable error_flatten experiment in OSS. (#41471)
  • [Python] Trim Python2 backward compatiblity syntax - removed (object) inheritance. (#41708)

Objective-C

  • [ObjC] Add receiveNextMessage to GRPCUnaryProtoCall. (#42260)

Python

  • [Python] Add typing_extensions dep to aio Bazel target. (#42001)
  • [Python] [Pyright] Part 1 - Pyright for src/python/grpcio/grpc/aio/_base_server.py. (#42240)
  • [Python] Drop 3.9. (#42145)
  • [Python] grpc-status: Relax protobuf dependency upper bound to allow 7.x. (#41948)
  • [Python] [Typeguard] Part 5 - Add Typeguard SYNC Stack in tests. (#40278)
  • [Python] Remove GIL from ReceiveMessageOperation.un_c method. (#41812)
  • [Python] Support observability in AsyncIO stack. (#41573)

Ruby

  • [Ruby] Drop support for EOL Ruby 3.1 and clean up. (#41435)
  • [Ruby] Composed CallCredentials keep a reference to their source. (#41782)

Release v1.81.0-pre1

This is a prerelease of gRPC Core 1.81.0 (graphic).

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This prerelease contains refinements, improvements, and bug fixes.

Commits
  • 8bdf11e [Release] Bump version to 1.81.0 (on v1.81.x branch) (#42432)
  • 6244f3b [Release] Bump version to 1.81.0-pre1 (on v1.81.x branch) (#42378)
  • 61b93b0 [Ruby] Drop support for EOL Ruby 3.1 and clean up (#41435)
  • e83cfa8 Add new API to set the key exchange group.
  • cb09882 [Build] Upgrade protobuf to 33.5 (#41976)
  • ee2aee8 [Ruby] Composed CallCredentials keep a reference to their source (#41782)
  • a2bf3f1 [Release] Bump version to 1.81.0-dev (on master branch) (#41843)
  • See full diff in compare view

Updates google-protobuf from 4.34.1 to 4.35.0

Commits

Updates googleapis-common-protos-types from 1.22.0 to 1.23.0

Release notes

Sourced from googleapis-common-protos-types's releases.

googleapis-common-protos-types: v1.23.0

1.23.0 (2026-05-19)

Features

  • Regenerate protos and support Ruby min_version 3.2 (#412)
Commits
  • 1bd0442 chore(main): release googleapis-common-protos-types 1.23.0 (#419)
  • a869146 chore(main): release google-apps-script-type 1.8.0 (#414)
  • 1b1f527 chore(main): release google-geo-type 1.2.0 (#416)
  • 83be724 chore(main): release grpc-google-iam-v1 1.12.0 (#397)
  • 1766762 chore(main): release google-apps-card-v1 1.2.0 (#413)
  • 41762f4 chore(main): release google-cloud-common 1.10.0 (#415)
  • 3466c15 chore(main): release google-shopping-type 1.2.0 (#417)
  • 8a8561f chore(deps): update actions/checkout action to v6 (#406)
  • daa3a55 feat: Regenerate protos and support Ruby min_version 3.2 (#412)
  • 24ca7a6 chore: Refactor Github Action per b/485167538 (#409)
  • 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 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 ruby Pull requests that update Ruby code labels Jun 2, 2026
Bumps the ruby group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [yard](https://yardoc.org) | `0.9.43` | `0.9.44` |
| [rubyzip](https://github.com/rubyzip/rubyzip) | `3.2.2` | `3.3.1` |
| [grpc](https://github.com/google/grpc) | `1.80.0` | `1.81.0` |
| [grpc-tools](https://github.com/google/grpc) | `1.80.0` | `1.81.0` |
| [google-protobuf](https://github.com/protocolbuffers/protobuf) | `4.34.1` | `4.35.0` |
| [googleapis-common-protos-types](https://github.com/googleapis/common-protos-ruby) | `1.22.0` | `1.23.0` |

Updates `yard` from 0.9.43 to 0.9.44

Updates `rubyzip` from 3.2.2 to 3.3.1
- [Release notes](https://github.com/rubyzip/rubyzip/releases)
- [Changelog](https://github.com/rubyzip/rubyzip/blob/main/Changelog.md)
- [Commits](rubyzip/rubyzip@v3.2.2...v3.3.1)

Updates `grpc` from 1.80.0 to 1.81.0
- [Release notes](https://github.com/google/grpc/releases)
- [Commits](grpc/grpc@v1.80.0...v1.81.0)

Updates `grpc-tools` from 1.80.0 to 1.81.0
- [Release notes](https://github.com/google/grpc/releases)
- [Commits](grpc/grpc@v1.80.0...v1.81.0)

Updates `google-protobuf` from 4.34.1 to 4.35.0
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Commits](https://github.com/protocolbuffers/protobuf/commits)

Updates `googleapis-common-protos-types` from 1.22.0 to 1.23.0
- [Release notes](https://github.com/googleapis/common-protos-ruby/releases)
- [Commits](googleapis/common-protos-ruby@googleapis-common-protos-types/v1.22.0...googleapis-common-protos-types/v1.23.0)

---
updated-dependencies:
- dependency-name: yard
  dependency-version: 0.9.44
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ruby
- dependency-name: rubyzip
  dependency-version: 3.3.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby
- dependency-name: grpc
  dependency-version: 1.81.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby
- dependency-name: grpc-tools
  dependency-version: 1.81.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby
- dependency-name: google-protobuf
  dependency-version: 4.35.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby
- dependency-name: googleapis-common-protos-types
  dependency-version: 1.23.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: ruby
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Chad Wilson <29788154+chadlwilson@users.noreply.github.com>
@chadlwilson chadlwilson force-pushed the dependabot/bundler/ruby-c79b47ced0 branch from 65d7a48 to 246fa82 Compare June 2, 2026 03:25
@chadlwilson chadlwilson merged commit 45c6502 into master Jun 2, 2026
22 checks passed
@dependabot dependabot Bot deleted the dependabot/bundler/ruby-c79b47ced0 branch June 2, 2026 03:36
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 ruby Pull requests that update Ruby code

Development

Successfully merging this pull request may close these issues.

1 participant