head 1.1; access; symbols; locks; strict; comment @// @; 1.1 date 2026.04.16.09.58.01; author adam; state Exp; branches; next ; commitid uTUanjUXj37TsaCG; desc @@ 1.1 log @grpc py-grpcio py-grpcio-testing py-grpcio-tools: updated to 1.80.0 1.80.0 Core [ssl] Implement TLS private key signer in Python. [TLS Credentials]: Private Key Offload Implementation. Fix max sockaddr struct size on OpenBSD. [core] Enable EventEngine for Python by default, and EventEngine fork support in Python and Ruby. [TLS Credentials]: Create InMemoryCertificateProvider to update certificates independently. [Ruby] Build/test ruby 4.0 and build native gems with Ruby 4.0 support. [EventEngine] Remove an incorrect std::move in DNSServiceResolver constructor. [RR and WRR] enable change to connect from a random index. [xds] Implement gRFC A101. C++ [C++] Add SNI override option to C++ channel credentials options API. C# [C# tools] Option to append Async to server side method names. Objective-C [Fix][Compiler] Plugins fall back to the edition 2023 for older protobuf. PHP [PHP] Disable php infinite recursion check for callback from Core to PHP. [PHP] Fix runtime error with PHp8.5 alpha because zend_exception_get_defaul…. Python [Python] Fix GRPC_TRACE not working when absl log initialized in cython. Revert "[Python] Align GRPC_ENABLE_FORK_SUPPORT env defaults in core and python [Python] Fix AsyncIO Server maximum_concurrent_rpcs enforcement preventing negative active_rpcs count. [Python] Docs: correct grpc.Compression references. [Python] [Typeguard] Part 4 - Add Typeguard to AIO stack in tests . [Python] Fix multi-thread exception for Asyncio gRPC clients. [Python] Resolve absl::InitializeLog warning. [Python] Remove IF usage in Cython. [Python] Add language features to exported proto files. [Python] Fix crash when iterating on AIO Metadata keys(), values(), items() or list(metadata.values()) etc. . [Python] Modernize and revamp Public API Docs. Ruby [Ruby] Added support to push native-debug packages off rubygems to public gcs bucket. @ text @$NetBSD$ Fix build on NetBSD. --- src/core/util/latent_see.cc.orig 2026-03-24 23:06:54.000000000 +0000 +++ src/core/util/latent_see.cc @@@@ -186,7 +186,11 @@@@ void Collect(Notification* n, absl::Duration timeout, {earliest_timestamp, event.timestamp_begin, event.timestamp_end}); } else { earliest_timestamp = +#ifdef __NetBSD__ + std::min(static_cast(earliest_timestamp), abs(event.timestamp_end)); +#else std::min(earliest_timestamp, abs(event.timestamp_end)); +#endif } } } @