这是indexloc提供的服务,不要输入任何密码
Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 19, 2025

This PR contains the following updates:

Package Change Age Confidence
grpcio (source) ==1.69.0 -> ==1.76.0 age confidence

Release Notes

grpc/grpc (grpcio)

v1.76.0

Compare Source

This is release 1.76.0 (genuine) 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

  • Prioritize system CA over bundled CA. (#​40583)
  • [event_engine] Introduce a event_engine_poller_for_python experiment. (#​40243)
  • [metrics] add grpc.lb.backend_service label. (#​40486)

C#

  • [csharp tools] #​39374 Grpc.Tools can't process file Suffix name with Upper character. (#​40072)

Python

  • [Python] gRPC AsyncIO: Improve CompletionQueue polling performance. (#​39993)

v1.75.1

Compare Source

This is release gRPC Core 1.75.1 (gemini).

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

This release contains refinements, improvements, and bug fixes.

What's Changed

Python
  • Release grpcio wheels with Python 3.14 support (#​40403)
  • Asyncio: fixes grpc shutdown race condition occurring during python interpreter finalizations. (#​40447)
    • This also addresses previously reported issues with empty error message on Python interpreter exit (Error in sys.excepthook:/Original exception was: empty): #​36655, #​38679, #​33342
  • Python 3.14: preserve current behavior when using grpc.aio async methods outside of a running event loop. (#​40750)
    • Note: using async methods outside of a running event loop is discouraged by Python, and will be deprecated in future gRPC releases. Please use the asyncio.run() function (or asyncio.Runner for custom loop factories). For interactive mode, use dedicated asyncio REPL: python -m asyncio.

Full Changelog: grpc/grpc@v1.75.0...v1.75.1

v1.75.0

Compare Source

This is release 1.75.0 (gemini) 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

  • [Security] Cherry Pick Spiffe Verification. (#​40515)
  • [Python][Typeguard] Part 3 - Add Typeguard to AIO stack in tests. (#​40217)
  • [c-ares] update version to 1.34.5. (#​39508)
  • [pick_first] fix bug that caused us to stop attempting to connect. (#​40162)

C++

  • [OTel C++] Implement retry metrics. (#​39195)

Objective-C

  • Fix data race by adding custom getter for state property with @synchronized locking. (#​40146)

Python

  • gRPC Python (grpcio) now depends on typing-extensions~=4.13. (#​40137)
  • Update musllinux wheels from musllinux_1_1 to musllinux_1_2. (#​40317)
    • Dropping musllinux_1_1 because it reached EOL in November 2024
    • Reference on musllinux platform tags: PEP 656
  • grpc.aio typehint fixes. (#​40215, #​40217)
    • Metadata type validation: Fixed metadata handling to support all sequence types (not just tuples), preventing runtime errors. Enhanced metadata type validation: isinstance(metadata, Sequence) instead of isinstance(metadata, tuple)
    • Serializer parameters: Changed to Optional[SerializingFunction] for more accurate type representation
    • Fixing the error in public API: ClientCallDetails.method was declared as str but always called with bytes, see InterceptedUnaryUnaryCall.
  • Fixes issue #​40325 with grpcio failing to install on all non-Mac Apple devices internal builds. (#​40347)

Ruby

  • Ruby: Mark credential object in channel. (#​40394)
  • [Ruby] Add rubygems support for linux-gnu and linux-musl platforms. (#​39549)

v1.74.0

Compare Source

This is release 1.74.0 (gee) 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

  • [OTel C++, Posix EE] Plumb TCP write timestamps and metrics to OTel tracers. (#​39946)
  • [event_engine] Implement fork support in Posix Event Engine. (#​38980)
  • [http2] Fix GRPC_ARG_HTTP2_STREAM_LOOKAHEAD_BYTES for when BDP is disabled. (#​39585)

Objective-C

  • [dep] Upgrade Protobuf Version 31.1. (#​39916)

PHP

  • [PHP] Fully qualify stdClass with global namespace. (#​39996)
  • [php] Fix PHPDoc so that UnaryCall defines the proper return type. (#​37563)
  • fix typing of nullable parameters. (#​39199)

Python

Ruby

  • [Ruby] Add rubygems support for linux-gnu and linux-musl platforms . (#​40174)
  • [ruby] enable EE fork support. (#​39786)
  • [ruby] Return nil for c functions expected to return a VALUE. (#​39214)
  • [ruby] remove connectivity state watch thread, fix cancellations from spurious signals. (#​39409)
  • [ruby] Drop Ruby 3.0 support. (#​39607)

v1.73.1

Compare Source

This is release 1.73.1 (gradient) 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.

Python

v1.73.0

Compare Source

This is release 1.73.0 (gradient) 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

As of this version, gRPC on MacOS & iOS will utilize Abseil's synchronization features, aligning it with other platforms. Should you encounter any issues due to this update, you can disable it by enabling GPR_DISABLE_ABSEIL_SYNC. If you do this, please report any problems by filing a bug at https://github.com/grpc/grpc.

  • [Dep] Update Protobuf to v31.0. (#​39392)
  • [Core] Added GPR_DISABLE_ABSEIL_SYNC. (#​39562)
  • [xds_override_host] pass through per-endpoint args when creating subchannels. (#​39532)
  • Expose GRPC_OPENSSL_CLEANUP_TIMEOUT to control shutdown grace period. (#​39297)
  • [URI] fix parsing of user_info in proxy settings. (#​39004)
  • [EventEngine] Fix busy loop in thread pool when shutting down. (#​39258)
  • [Dep] Added a flag to build with openssl instead of boringssl. (#​39188)
  • [EventEngine] Cleanup: EventEngine client, listener, and dns experiments are on by default on all platforms. (#​39079)

C++

  • [OpenCensus] Mark OpenCensus and dependent APIs as deprecated. (#​39554)

Python

  • [Python] Pin Cython to 3.1.1. (#​39609)
  • [Python] grpc_tools: make PythonGrpcGenerator handle dot . in proto paths the same way as native Generator/PyiGenerator. (#​39586)

Ruby

  • [Ruby] add remove_unused_artifacts to opt build. (#​39593)

v1.72.2

Compare Source

This is release 1.72.2 (gusto) 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.

Python

v1.72.1

Compare Source

This is release gRPC Core 1.72.1 (gusto).

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

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

C++

  • [Backport of #​39266 to v1.71.x] Protect grpc generated sources from unwanted system macros (#​39484).

Python

  • [Backport of #​39609 to v1.71.x] Pin Cython to 3.1.1 (#​39632). This addresses several issues:
    • #​39588 Using inconsistent Cython version in released platform-specific wheels within the same grpcio release.
    • cython/cython#6878 Several published grpcio wheels were built with Cython 3.1.0 and are affected by Cython memory leak issue when using AsyncIO APIs (grpc.aio.*).
  • [Backport of #​39418 to v1.71.x] Fix Python 3.12 MacOS universal release artifact (#​39504).

v1.72.0

Compare Source

This is release gRPC Core 1.72.0 (gusto).

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

This release contains refinements, improvements, and bug fixes.

v1.71.2

Compare Source

This is release 1.71.2 (gears) 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.

C++

  • [Backport of #​39266 to v1.71.x] Protect grpc generated sources from unwanted system macros (#​39484).

Python

  • [Backport of #​39894 to v1.71.x] Fix the issue with gRPC Python Client not reconnecting in certain situations: #​38290, #​39113, #​39631 (#​39948).
  • [Backport of #​39609 to v1.71.x] Pin Cython to 3.1.1 (#​39636). This addresses several issues:
    • #​39588 Using inconsistent Cython version in released platform-specific wheels within the same grpcio release.
    • cython/cython#6878 Several published grpcio wheels were built with Cython 3.1.0 and are affected by Cython memory leak issue when using AsyncIO APIs (grpc.aio.*).

v1.71.0

Compare Source

This is release gRPC Core 1.71.0 (gears).

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

This release contains refinements, improvements, and bug fixes.

Core

  • [CallAttemptTracer] Fix call attempt tracer lifetimes for retries (#​38729). (#​38796)
  • [pick_first] fix bug that caused us to stop triggering connection attempts. (#​38714)
  • [CodeGen][CPP] Added support for service "deprecated" option. (#​38493)
  • [EventEngine] Add SetDefaultEventEngine API (and friends). (#​38316)

C++

  • [build] Restrict grpc++_public_hdrs target to internal visibility. (#​38646)
  • [Doc] Added C++17 cmake option. (#​38432)

Python

  • [CI] Drop Python 3.8. (#​38747)
  • [Python] Support musl-linux binary wheels on arm64. (#​38223)

Ruby

  • [ruby] Build/test ruby 3.4 and build native gems with Ruby 3.4 support. (#​38338)

v1.70.0

Compare Source

This is release 1.70.0 (genius) 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

  • [BoringSSL] Update third_party/boringssl-with-bazel. (#​38274)

C++

  • gRPC C++ begins to require C++17 or later to build and use gRPC C++. You may need the following settings:

Python

Added 2025-06-27:
CAUTION! This release contains a known defect in gRPC Python client reconnection logic (#​38290), which was fixed in v1.71.2, v1.72.2, v1.73.1, and all subsequent releases. We recommend upgrading.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@codesandbox
Copy link

codesandbox bot commented Jan 19, 2025

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

@bolt-new-by-stackblitz
Copy link

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@sourcery-ai
Copy link
Contributor

sourcery-ai bot commented Jan 19, 2025

Reviewer's Guide by Sourcery

This pull request updates the grpcio dependency from version 1.68.1 to 1.69.0. This is a straightforward dependency update with no other changes.

No diagrams generated as the changes look simple and do not need a visual representation.

File-Level Changes

Change Details Files
Updated the grpcio dependency to version 1.69.0.
  • Updated the grpcio dependency version from 1.68.1 to 1.69.0 in requirements.txt
requirements.txt

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time. You can also use
    this command to specify where the summary should be inserted.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link
Contributor

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. Here's why:

  • It seems to have been created by a bot (hey, renovate[bot]!). We assume it knows what it's doing!
  • We don't review packaging changes - Let us know if you'd like us to change this.

@renovate renovate bot force-pushed the renovate/grpcio-1.x branch 12 times, most recently from 2898934 to dd2006f Compare January 23, 2025 09:34
@renovate renovate bot changed the title chore(deps): update dependency grpcio to v1.69.0 chore(deps): update dependency grpcio to v1.70.0 Jan 23, 2025
@renovate renovate bot force-pushed the renovate/grpcio-1.x branch from dd2006f to 7483409 Compare January 23, 2025 22:58
@renovate renovate bot force-pushed the renovate/grpcio-1.x branch from 7483409 to 24e1dfd Compare March 10, 2025 23:14
@renovate renovate bot changed the title chore(deps): update dependency grpcio to v1.70.0 chore(deps): update dependency grpcio to v1.71.0 Mar 10, 2025
@renovate renovate bot force-pushed the renovate/grpcio-1.x branch from 24e1dfd to b2e63d5 Compare March 23, 2025 16:47
@qodo-merge-pro
Copy link

qodo-merge-pro bot commented Mar 23, 2025

CI Feedback 🧐

(Feedback updated until commit b2e63d5)

A test triggered by this PR failed. Here is an AI-generated analysis of the failure:

Action: Build and Test

Failed stage: Setup pnpm [❌]

Failure summary:

The action failed due to two distinct issues:

1. The pnpm setup action failed because of conflicting pnpm versions:
- The GitHub Action config
specified version "latest"
- The package.json specified "pnpm@9.0.0" in the packageManager field
This conflict needs to
be resolved by removing one of these specifications to avoid version mismatch errors.

2. The codecov test results action failed because no JUnit XML test reports were found. The system
searched for test result files but found 0 files to report.

Relevant error logs:
1:  ##[group]Operating System
2:  Ubuntu
...

136:  ##[endgroup]
137:  ##[warning]Cache not found for keys: Linux-turbo-51913cff685320ffecd5d0e62583716a5df9f2cf, Linux-turbo-
138:  Cache not found for input keys: Linux-turbo-51913cff685320ffecd5d0e62583716a5df9f2cf, Linux-turbo-
139:  ##[group]Run pnpm/action-setup@v4.0.0
140:  with:
141:  version: latest
142:  dest: ~/setup-pnpm
143:  run_install: null
144:  package_json_file: package.json
145:  standalone: false
146:  env:
147:  TURBO_TOKEN: 
148:  TURBO_TEAM: 
149:  ##[endgroup]
150:  ##[group]Running self-installer...
151:  Error: Multiple versions of pnpm specified:
152:  - version latest in the GitHub Action config with the key "version"
153:  - version pnpm@9.0.0 in the package.json with the key "packageManager"
154:  Remove one of these versions to avoid version mismatch errors like ERR_PNPM_BAD_PM_VERSION
155:  at readTarget (/home/runner/work/_actions/pnpm/action-setup/v4.0.0/dist/index.js:1:4528)
156:  at runSelfInstaller (/home/runner/work/_actions/pnpm/action-setup/v4.0.0/dist/index.js:1:3742)
157:  at async install (/home/runner/work/_actions/pnpm/action-setup/v4.0.0/dist/index.js:1:2976)
158:  at async main (/home/runner/work/_actions/pnpm/action-setup/v4.0.0/dist/index.js:1:444)
159:  ##[error]Error: Multiple versions of pnpm specified:
160:    - version latest in the GitHub Action config with the key "version"
161:    - version pnpm@9.0.0 in the package.json with the key "packageManager"
162:  Remove one of these versions to avoid version mismatch errors like ERR_PNPM_BAD_PM_VERSION
163:  ##[group]Run codecov/test-results-action@v1.0.2
...

176:  gpg: Total number processed: 1
177:  gpg:               imported: 1
178:  gpg: Signature made Wed Mar 12 16:00:55 2025 UTC
179:  gpg:                using RSA key 27034E7FDB850E0BBC2C62FF806BB28AED779869
180:  gpg: Good signature from "Codecov Uploader (Codecov Uploader Verification Key) <security@codecov.io>" [unknown]
181:  gpg: WARNING: This key is not certified with a trusted signature!
182:  gpg:          There is no indication that the signature belongs to the owner.
183:  Primary key fingerprint: 2703 4E7F DB85 0E0B BC2C  62FF 806B B28A ED77 9869
184:  ==> Uploader SHASUM verified (39dd112393680356daf701c07f375303aef5de62f06fc80b466b5c3571336014  codecov)
185:  ==> Running version latest
186:  ==> Running version v10.2.1
187:  ==> Running command '/home/runner/work/_actions/codecov/test-results-action/v1.0.2/dist/codecov do-upload'
188:  [command]/home/runner/work/_actions/codecov/test-results-action/v1.0.2/dist/codecov do-upload -C b2e63d5b02641f189f35474a61ababde8a19dcf7 --report-type test_results
189:  info - 2025-03-23 16:48:07,047 -- ci service found: github-actions
190:  info - 2025-03-23 16:48:07,089 -- Found 0 test_results files to report
191:  error - 2025-03-23 16:48:07,089 -- No JUnit XML reports found. Please review our documentation (https://docs.codecov.com/docs/test-result-ingestion-beta) to generate and upload the file.
192:  info - 2025-03-23 16:48:07,673 -- No test results reports found. Triggering notifications without uploading.

@renovate renovate bot force-pushed the renovate/grpcio-1.x branch from b2e63d5 to f6a2126 Compare April 25, 2025 17:06
@renovate renovate bot changed the title chore(deps): update dependency grpcio to v1.71.0 chore(deps): update dependency grpcio to v1.72.0 Apr 25, 2025
@renovate renovate bot force-pushed the renovate/grpcio-1.x branch from f6a2126 to b5845be Compare April 25, 2025 22:50
@renovate renovate bot changed the title chore(deps): update dependency grpcio to v1.72.0 chore(deps): update dependency grpcio to v1.71.0 Apr 25, 2025
@renovate renovate bot force-pushed the renovate/grpcio-1.x branch from b5845be to c707458 Compare June 2, 2025 10:30
@renovate renovate bot changed the title chore(deps): update dependency grpcio to v1.71.0 chore(deps): update dependency grpcio to v1.72.1 Jun 2, 2025
@renovate renovate bot force-pushed the renovate/grpcio-1.x branch from c707458 to 85c4a24 Compare June 9, 2025 11:07
@renovate renovate bot changed the title chore(deps): update dependency grpcio to v1.72.1 chore(deps): update dependency grpcio to v1.73.0 Jun 9, 2025
@renovate renovate bot force-pushed the renovate/grpcio-1.x branch from 85c4a24 to b2c3ef6 Compare June 26, 2025 03:50
@renovate renovate bot changed the title chore(deps): update dependency grpcio to v1.73.0 chore(deps): update dependency grpcio to v1.73.1 Jun 26, 2025
@renovate renovate bot force-pushed the renovate/grpcio-1.x branch from b2c3ef6 to dbec8be Compare July 25, 2025 00:09
@renovate renovate bot changed the title chore(deps): update dependency grpcio to v1.73.1 chore(deps): update dependency grpcio to v1.74.0 Jul 25, 2025
@renovate renovate bot force-pushed the renovate/grpcio-1.x branch from dbec8be to c324f9c Compare September 16, 2025 16:22
@renovate renovate bot changed the title chore(deps): update dependency grpcio to v1.74.0 chore(deps): update dependency grpcio to v1.75.0 Sep 16, 2025
@renovate renovate bot force-pushed the renovate/grpcio-1.x branch from c324f9c to d866741 Compare September 26, 2025 13:01
@renovate renovate bot changed the title chore(deps): update dependency grpcio to v1.75.0 chore(deps): update dependency grpcio to v1.75.1 Sep 26, 2025
@renovate renovate bot force-pushed the renovate/grpcio-1.x branch from d866741 to a76021f Compare October 21, 2025 22:04
@renovate renovate bot changed the title chore(deps): update dependency grpcio to v1.75.1 chore(deps): update dependency grpcio to v1.76.0 Oct 21, 2025
@renovate renovate bot force-pushed the renovate/grpcio-1.x branch from a76021f to a35e1eb Compare November 19, 2025 01:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants