[protobuf] Prototiller release date

2024-10-02 Thread Ondra Miksik
Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/eb178180-99ae-4b93-b201-bccd7212e53dn%40googlegroups.com.

[protobuf] [Announcement] Protocol Buffers Version 29.0-rc1 is Released!

2024-09-30 Thread 'Mike Kruskal' via Protocol Buffers
You can view the release and complete release notes on https://github.com/protocolbuffers/protobuf/releases/tag/v29.0-rc1. If you experience any issues with the release, please file abug <https://github.com/protocolbuffers/protobuf/issues/new/choose> or post on the Protocol Buffers forum

[protobuf] Re: add a google.protobuf.Any field through reflection

2024-09-26 Thread Phil Dougherty
essage via its reflection "getString" on those fields tl;dr: manually piece-wise copy the values from one form to the other On Thursday, September 26, 2024 at 8:50:32 AM UTC-7 Phil Dougherty wrote: > I believe the issue has come down to, I'm finding a different > "google/protob

[protobuf] Re: add a google.protobuf.Any field through reflection

2024-09-26 Thread Phil Dougherty
I believe the issue has come down to, I'm finding a different "google/protobuf/any.proto" indirectly via the Importer than I am compiling against (I've used protoc to generate any.pb.cc and then compiled that alongside my source). how can I make sure these are the same ve

[protobuf] add a google.protobuf.Any field through reflection

2024-09-25 Thread Phil Dougherty
I'm trying to dynamically populate an Any message, and cannot figure out how I should do it. The code I'm currently working with is this: google::protobuf::Message* dstmessage; //some existing message with a google.protobuf.Any in its "myAnyField" member I would like to f

Re: [protobuf] text format with infinity

2024-09-25 Thread 'Samuel Benzaquen' via Protocol Buffers
On Wed, Sep 25, 2024 at 12:53 PM 'Jon Godbout' via Protocol Buffers < protobuf@googlegroups.com> wrote: > Interesting problem, I have a text format printer writing infinity. > My (cl-protobufs) printer wants to write the inifinity symbol, while > c++ wants to write \342\2

[protobuf] text format with infinity

2024-09-25 Thread 'Jon Godbout' via Protocol Buffers
tocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/af820eaf-008e-4987-9710-46fdcd977854n%40googlegroups.com.

[protobuf] Segmentation Fault (Signal 11) During Protobuf Compilation with GCC 9.3.0

2024-09-24 Thread Senthil Kumar
Hello everyone, I’m encountering a segmentation fault (signal 11) while building Protobuf from source on my Linux system. The error occurs during the linking phase when trying to generate the libprotobuf-lite.so shared object file. I’ve included details below about my setup, the commands I

Re: [protobuf] Defining a static message

2024-09-20 Thread 'Em Rauch' via Protocol Buffers
u received this message because you are subscribed to the Google Groups > "Protocol Buffers" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to protobuf+unsubscr...@googlegroups.com. > To view this discussion on the web visi

[protobuf] [ACTION REQUIRED] Protobuf Java users, please update to our latest release

2024-09-18 Thread 'Sandy Zhang' via Protocol Buffers
Hello everyone, If you are using protobuf-java, protobuf-javalite, protobuf-kotlin, protobuf-kotlin-lite, or our Jruby gem (google-protobuf), please update to our latest releases, published Sept 18: - 4.28.2 - 4.27.5 - 3.25.5 More information about this advisory can be found here

[protobuf] Re: How to Generate Header Files for Protobuf C++?

2024-09-17 Thread 'Aldrin' via Protocol Buffers
runtime_version.h is available from protobuf itself and not generated. Assume I installed protobuf to INSTALL_PREFIX: >> find ${INSTALL_PREFIX}/include -name 'runtime_version.h' ${INSTALL_PREFIX}/include/google/protobuf/runtime_version.h You can find the source directory

[protobuf] Re: [C++] Linking against generated protobuf files from multiple projects

2024-09-17 Thread 'Aldrin' via Protocol Buffers
Thank you, this is solved now. On Thursday, September 12, 2024 at 1:08:13 PM UTC-7 Aldrin wrote: > Hello! > > I am trying to figure out how to make this work and hitting issues with > every approach I have tried. > > The core of my scenario can be seen here Gist - protobu

[protobuf] How to Generate Header Files for Protobuf C++?

2024-09-15 Thread Dương Lê
Hello everyone, I'm currently working with Protobuf in C++ and I'm trying to generate the necessary header files, such as runtime_version.h. I've followed the instructions in the CMake README, but unfortunately, I haven't had any success. Could someone provide guidance on ho

[protobuf] Re: Guidance on Installing and Running Protocol Buffers C++ on VS Code

2024-09-13 Thread 'Aldrin' via Protocol Buffers
Some of your questions can be answered in the "how do I start" section [1]. To fast forward your exploration through some of the links: 1. Software Requirements: There aren't any additional tools to *use* protobuf (Protocol Buffers). If you're building it, then there ar

[protobuf] Re: Suppressing invalid UTF-8 data warnings?

2024-09-13 Thread Florian Suri-Payer
heck as of today (only proto3 syntax file). > > If that's not right, I unfortunately suspect the only way around it would > be vendor the protobuf runtime into your codebase and comment out the check > / log if its bothering you. > On Friday, September 6, 2024 at 11:43

[protobuf] Guidance on Installing and Running Protocol Buffers C++ on VS Code

2024-09-13 Thread Dương Lê
appreciate any assistance you can provide. Thank you so much! -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To

[protobuf] [C++] Linking against generated protobuf files from multiple projects

2024-09-12 Thread 'Aldrin' via Protocol Buffers
Hello! I am trying to figure out how to make this work and hitting issues with every approach I have tried. The core of my scenario can be seen here Gist - protobuf dependency graph <https://gist.github.com/drin/825d46f519a58d4ca62a56104441d377>. I have my own project mohair (we can c

[protobuf] Clang15 + Protobuf 3.19.4 weird variadic template function args passing behavior

2024-09-12 Thread Mike Tsai
Greetings, We are seeing a weird behavior that when we compile the *pb.cc generated with a v3.19.4 protobuf that the variadic template function gets called, the args seems to be passed incorrectly. We are not sure if it' a compiler issue or protobuf issue. The same *pb.cc can be compile

[protobuf] [Announcement] Protocol Buffers Version 28.1 is Released!

2024-09-11 Thread 'Tony Liao' via Protocol Buffers
You can view the release and complete release notes on GitHub <https://github.com/protocolbuffers/protobuf/releases/v28.1>. If you experience any issues with the release, please file a bug <https://github.com/protocolbuffers/protobuf/issues/new/choose> or post on the ProtocolB

[protobuf] Defining a static message

2024-09-11 Thread a...@binoklo.com
ed this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/pr

[protobuf] Re: Suppressing invalid UTF-8 data warnings?

2024-09-10 Thread 'Em Rauch' via Protocol Buffers
I *think* if you use a proto2 syntax message it actually will not perform this check as of today (only proto3 syntax file). If that's not right, I unfortunately suspect the only way around it would be vendor the protobuf runtime into your codebase and comment out the check / log i

[protobuf] Re: Performance Improvement with Protobuf and UPB in Python and C++

2024-09-10 Thread 'Tony Liao' via Protocol Buffers
ially impactful during parsing (deserializing). - https://protobuf.dev/reference/cpp/arenas/ - Protobuf reflection is slow -- try to avoid it in performance sensitive code. - string fields are UTF-8 validated. If you don't need UTF-8 validation, prefer to use bytes instead.

[protobuf] Re: Performance Improvement with Protobuf and UPB in Python and C++

2024-09-09 Thread Evan Lu
Hi Tony, Thank you for the clarification! Do you have any recommendations or best practices for improving serialization/deserialization performance specifically for Protobuf in C++? I'd appreciate any insights or optimizations you or anyone can suggest. Best regards, Evan On M

[protobuf] Re: Performance Improvement with Protobuf and UPB in Python and C++

2024-09-09 Thread 'Tony Liao' via Protocol Buffers
Hi Evan, The protobuf C++ implementation is separate from UPB and has its own set of optimizations driven by Google's own workloads. I can say that for Google's C++ workloads, we have not observed better performance with UPB. For this reason, we are still shipping with t

[protobuf] Re: Configuration of protobuf 3.22.2

2024-09-09 Thread 'Tony Liao' via Protocol Buffers
Hi Nazibur, Protobuf 2.5.0 is really old -- running ./autogen.sh is part of using AutoMake, but we've migrated to CMake and Bazel. AutoTools was turned down in the middle of 2022 -- see PR #10132 <https://github.com/protocolbuffers/protobuf/pull/10132>. Our preferred way to build

[protobuf] Performance Improvement with Protobuf and UPB in Python and C++

2024-09-06 Thread Evan Lu
Hi everyone, We're currently using Protobuf 3.14 with C++ and Python in our project and are looking to improve serialization/deserialization performance. I recently tried Protobuf 3.24 and noticed performance improvements in Python, likely due to the use of UPB. I have a couple of ques

[protobuf] Re: Suppressing invalid UTF-8 data warnings?

2024-09-06 Thread Florian Suri-Payer
rsday, September 5, 2024 at 5:19:00 PM UTC-4 Em Rauch wrote: > Using non-UTF8 data in a string field should be understood as incorrect, > but realistically will work today as long as your messages are only used > exactly by C++ Protobuf on the current release of protobuf and only ever >

[protobuf] Re: Suppressing invalid UTF-8 data warnings?

2024-09-05 Thread 'Em Rauch' via Protocol Buffers
Using non-UTF8 data in a string field should be understood as incorrect, but realistically will work today as long as your messages are only used exactly by C++ Protobuf on the current release of protobuf and only ever with the binary wire format (not textproto or JSON encoding, etc). Today

[protobuf] Suppressing invalid UTF-8 data warnings?

2024-09-05 Thread Florian Suri-Payer
Hi, I've been using protobuf 3.5.1 in c++ and am using a message type with the following map type: `map txns = 1` It is my understanding that `string` and `bytes` are the same in proto c++; for maps however one can only use `string` as keys. I'm using the key field to send around t

[protobuf] Configuration of protobuf 3.22.2

2024-09-05 Thread Nazibur Rahman
Hi All, We are using protobuf 2.5.0 in our project and we want to upgrade tp protobuf v3.22.2 but we didn't find any configure or autogen.sh file present in V3.22.2. Without this any one of the file how to configure? It will be helpful if you can share configuration doc if available. Re

[protobuf] [Announcement] Protocol Buffers Version 28.0 is Released!

2024-08-28 Thread 'Jason Lunn' via Protocol Buffers
You can view the release and complete release notes on GitHub <https://github.com/protocolbuffers/protobuf/releases/v28.0>. If you experience any issues with the release, please file a bug <https://github.com/protocolbuffers/protobuf/issues/new/choose> or post on the Protocol B

Re: [protobuf] Can we serialize 6 GB data with protobuf

2024-08-28 Thread 'Samuel Benzaquen' via Protocol Buffers
On Wed, Aug 28, 2024 at 7:05 AM Samuel Joshua wrote: > Hi, > > I have a python object which when serielized using jsonpickle or the > python pickle library to json gives me 6 GB size. I would like to try > protobuf instead, would it be supported? I read in the overview ( > ht

[protobuf] Can we serialize 6 GB data with protobuf

2024-08-28 Thread Samuel Joshua
Hi, I have a python object which when serielized using jsonpickle or the python pickle library to json gives me 6 GB size. I would like to try protobuf instead, would it be supported? I read in the overview (https://protobuf.dev/overview/#solve) that it only supports only a few MB in size

[protobuf] Protocol Buffers Version 27.4 is Released!

2024-08-27 Thread 'Adam Cozzette' via Protocol Buffers
You can view the release and complete release notes on GitHub <https://github.com/protocolbuffers/protobuf/releases/v27.4>. If you experience any issues with the release, please file a bug <https://github.com/protocolbuffers/protobuf/issues/new/choose> or post on the Protocol Buffers

[protobuf] [Announcement] Protocol Buffers Version 28.0-rc3 is Released!

2024-08-22 Thread 'Eric Salo' via Protocol Buffers
You can view the release and complete release notes on GitHub <https://github.com/protocolbuffers/protobuf/releases/tag/v28.0-rc3>. If you experience any issues with the release, please file a bug <https://github.com/protocolbuffers/protobuf/issues/new/choose> or post on the Prot

[protobuf] Re: Debugging proto file already registered issue (health.proto)

2024-08-21 Thread Daz Wilkin
ly from: "github.com/googleapis/gax-go/v2/apierror/internal/proto" > > Any guidance or recommendations you could provide would be greatly > appreciated. > > Thank you, > Ashish > -- You received this message because you are subscribed to the Google Groups "Prot

[protobuf] Debugging proto file already registered issue (health.proto)

2024-08-20 Thread Ashish Tripathi
apis/gax-go/v2/apierror/internal/proto" Any guidance or recommendations you could provide would be greatly appreciated. Thank you, Ashish -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop

[protobuf] Re: How to properly do static linking within CMake project

2024-08-19 Thread Claude Robitaille
I forgot that this is required in my main project top CMakeList.txt: find_package(protobuf REQUIRED PATHS $ENV{INSTALL}/protobuf/lib/cmake/protobuf) include($ENV{INSTALL}/protobuf/lib/cmake/protobuf/protobuf-module.cmake) Also, I am on Linux but I do not see why it would be different on macOS

[protobuf] Re: How to properly do static linking within CMake project

2024-08-19 Thread Claude Robitaille
I have been using protobuf with static linking for years and moved to cmake a few months ago. Since I always cross-compile I never use the system installed library and tools so my flow is this 1 - Build, using cmake anything that must be using the local compiler (in the case of protobuf

[protobuf] How to properly do static linking within CMake project

2024-08-18 Thread Marcin Lewandowski
Hello, I am working on a library where I would use protobuf. I need to link it statically. The target platform is macOS. The usual way of fetching dependencies (brew install protobuf) is no go, as it comes only with shared libraries. I tried forcing homebrew to rebuild protobuf (brew

[protobuf] efficient delta

2024-08-16 Thread Lei Jiang
r way? Thanks, Lei -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the w

[protobuf] Re: Documentation link incorrect

2024-08-15 Thread Daz Wilkin
;- https://protobuf.dev/programming-guides/1-1-1/ > > > -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com

[protobuf] Running in thread sanitizer gives Segmentation fault for protobuf c++ v27.3

2024-08-13 Thread Sundar Swamy
Platform: Mac OS,. 10.15 & Mac OS 11.x ( arm64) Compiler: AppleClang 12.0.0.1232 Mac OSX SDK: 11 I link libprotouf.a to my shared libary (dylib). The dylib is compiled using -fsanitize=thread -O1 but protobuf is compiled as normal ( without any sanitizer flags ) When i run in th

[protobuf] [Announcement] Protocol Buffers Version 28.0-rc2 is Released!

2024-08-10 Thread 'Jerry Berg' via Protocol Buffers
You can view the release and complete release notes on GitHub <https://github.com/protocolbuffers/protobuf/releases/tag/v28.0-rc2>. If you experience any issues with the release, please file a bug <https://github.com/protocolbuffers/protobuf/issues/new/choose> or post on the ProtocolB

[protobuf] Unclear on the abseil dependency for protnbuf c++

2024-08-09 Thread Sundar Swamy
Building protobuf c++ from source v27.3 on Windows using visual studio 2022, platform toolset v143, with std c++14 Apologies for my ignorance here in understanding the abseil dependency to protobuf . Referring to this link <https://github.com/protocolbuffers/protobuf/blob/v27.3/cm

[protobuf] Re: Dynamic VS Static linking

2024-08-07 Thread saif kandil
> I created this simple solution to try to link absl, protobuf, and grpc > together to see if they work without problems, and I have figured out that > static linking is working perfect however the dynamic linking is not: > > Static linking status: > https://github.com/k0T0z/ab

[protobuf] Dynamic VS Static linking

2024-08-07 Thread saif kandil
Hello folks, I created this simple solution to try to link absl, protobuf, and grpc together to see if they work without problems, and I have figured out that static linking is working perfect however the dynamic linking is not: Static linking status: https://github.com/k0T0z/absl-proto-grpc

[protobuf] Link error for protobuf abseil static libraries (Redhat8 )

2024-08-05 Thread Alex Du
Hi protobuf experts, I am trying to use protobuf static libraries with cmake configurations. Now it can build and run successfully for windows and mac. But for linux, I always get the unresolved link errors as below, can anyone help on this? link errors: /opt/rh/gcc-toolset-12/root/usr

[protobuf] Inquiry about bzlmod support in Protobuf version 25.3

2024-08-02 Thread Masakatsu Hamashita
Hello, I am writing to inquire about the support for bzlmod in Protobuf version 25.3. I have noticed that bzlmod support is available in versions 24.4 and earlier and in versions 26.0 and later by checking the Bazel Central Registry. However, I couldn't find any support for version 25

[protobuf] [Announcement] Protocol Buffers Version 27.3 is Released!

2024-07-31 Thread 'Hong Shin' via Protocol Buffers
You can view the release and complete release notes on GitHub <https://github.com/protocolbuffers/protobuf/releases/tag/v27.3>. If you experience any issues with the release, please file a bug <https://github.com/protocolbuffers/protobuf/issues/new/choose> or post on the Protocol B

[protobuf] ⚡⚡⚡⚡สล็อตเว็บตรง แตกหนัก 2024 สล็อตpgแท้ สล็อตเว็บตรง 100 ไม่ต้องรอนาน สะดวกสบาย⚡⚡⚡⚡

2024-07-29 Thread panupong pongin
ing emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/93f7e9d7-ff26-4119-92bc-b5ccf303e0c8n%40googlegroups.com.

[protobuf] 🌈🌈🌈🌈สล็อต pg เว็บตรง แตกหนัก 2024 เว็บตรง สล็อตฝากถอน ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ เว็บสล็อตเว็บตรงค่ายใหญ่ สล็อตเว็บตรง 888 ฝากถอนออโต้🌈🌈🌈🌈

2024-07-29 Thread panupong pongin
ffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/21409363-7d17-4ac1-b9fc-2550d8132594n%40googlegroups.com.

[protobuf] 🌷🌷🌷สล็อตเว็บตรง100% สล็อตเว็บตรง 888 เว็บสล็อตเว็บตรงค่ายใหญ่ สล็อต pg เว็บตรง แตกหนัก เกมยอดนิยมมากมาย🌷🌷🌷

2024-07-29 Thread panupong pongin
from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/2ec11afe-fd43-4a81-9304-cf1ef0293c95n%40googlegroups.com.

[protobuf] 🌸🌸🌸🌸🌸สล็อตเว็บตรง100% สล็อตเว็บตรง 888 เว็บสล็อตเว็บตรงค่ายใหญ่ สล็อต pg เว็บตรง แตกหนัก สัมผัสความรื่นรมย์🌸🌸🌸🌸🌸

2024-07-29 Thread panupong pongin
nsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/36deed94-18c6-4963-a96e-3aa5c4ed6c6en%40googlegroups.com.

[protobuf] ✨✨✨✨สล็อตเว็บตรง100% สล็อตเว็บตรง 888 เว็บสล็อตเว็บตรงค่ายใหญ่ สล็อต pg เว็บตรง แตกหนัก ไม่มีกั๊ก✨✨✨✨

2024-07-29 Thread panupong pongin
group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/fc8c057f-78e4-44bc-b7e5-0bf5ffd5f954n%40googlegroups.com.

[protobuf] 🦔🦔🦔🦔สล็อตเว็บตรง100% สล็อต pg เว็บตรง แตกหนัก 2024 ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ ทดลองเล่นฟรี🦔🦔🦔🦔

2024-07-29 Thread panupong pongin
group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/57e2ea88-ca34-4ffd-b9f1-8a1e1afab6f4n%40googlegroups.com.

[protobuf] 🦀🦀🦀🦀สล็อตเว็บตรง100% สล็อต pg เว็บตรง แตกหนัก 2024 ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ บริการสุดพิเศษ🦀🦀🦀🦀

2024-07-29 Thread panupong pongin
group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/6948ed98-3e8c-4a63-994d-dda843c551e9n%40googlegroups.com.

[protobuf] 🦞🦞🦞🦞สล็อตเว็บตรง100% สล็อต pg เว็บตรง แตกหนัก 2024 ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ true wallet🦞🦞🦞🦞

2024-07-29 Thread panupong pongin
group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/9dbfc2ef-a886-4d4a-9a34-3c40fb9b0aecn%40googlegroups.com.

[protobuf] 🍀🍀🍀🍀สล็อตเว็บตรง100% สล็อต pg เว็บตรง แตกหนัก 2024 ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ ฝากถอนออโต้🍀🍀🍀🍀

2024-07-29 Thread panupong pongin
group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/78f7d933-1a90-4827-ba06-f9081e99235fn%40googlegroups.com.

[protobuf] 🌛🌛🌛🌛สล็อตเว็บตรง100% สล็อต pg เว็บตรง แตกหนัก 2024 ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ ระดับโลกจากทุกค่าย🌛🌛🌛🌛

2024-07-29 Thread panupong pongin
this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/b2abde8e-a24b-4bb8-a9db-4e5d2423e37an%40googlegroups.com.

[protobuf] 🌻🌻🌻🌻สล็อตเว็บตรง100% สล็อต pg เว็บตรง แตกหนัก 2024 ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ เกมคุณภาพ🌻🌻🌻🌻

2024-07-29 Thread panupong pongin
p and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/95e8251f-b3b9-44ac-b20e-32e3c856ad6fn%40googlegroups.com.

[protobuf] 🦩🦩🦩🦩สล็อต pg เว็บตรง แตกหนัก 2024 ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ หรูหราเหนือระดับ🦩🦩🦩🦩

2024-07-29 Thread panupong pongin
receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/c1cb831a-5053-459a-acc7-208c852ae879n%40googlegroups.com.

[protobuf] 🦢🦢🦢🦢สล็อต pg เว็บตรง แตกหนัก 2024 ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ เงินรางวัลมหาศาล🦢🦢🦢🦢

2024-07-29 Thread panupong pongin
receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/45ee9073-defd-4e53-b0bf-67078eab6267n%40googlegroups.com.

[protobuf] 🦉🦉🦉🦉🦉สล็อต pg เว็บตรง แตกหนัก 2024 ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ ประตูสู่ความหรูหรา🦉🦉🦉🦉🦉

2024-07-29 Thread panupong pongin
p and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/7aa80d23-30ad-45e2-88a1-9e6ee3902627n%40googlegroups.com.

[protobuf] 🐑🐑🐑เว็บตรง สล็อตฝากถอน ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ แตกหนัก 2024 ใหม่ล่าสุด🐑🐑🐑

2024-07-29 Thread panupong pongin
ing emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/04fa1173-cbe7-48f0-b9e0-faef47aa2de1n%40googlegroups.com.

[protobuf] 🐐🐐🐐เว็บตรง สล็อตฝากถอน ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ แตกหนัก 2024 ถอนได้จริง 100 %🐐🐐🐐

2024-07-29 Thread panupong pongin
receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/254f1e5a-812b-4384-89b7-59b32e8563ean%40googlegroups.com.

[protobuf] 🐏🐏🐏🐏เว็บตรง สล็อตฝากถอน ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ แตกหนัก 2024 API แท้ อันดับ 1🐏🐏🐏🐏

2024-07-29 Thread panupong pongin
p and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/55eac95c-89ed-4103-9319-e2311c345e57n%40googlegroups.com.

[protobuf] 🦋🦋🦋🦋สล็อต pg เว็บตรง แตกหนัก 2024 ไม่ผ่าน เอ เยน ต์ เว็บตรง สล็อตฝากถอน ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้🦋🦋🦋🦋

2024-07-29 Thread panupong pongin
from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/18920fba-90e8-4e42-aad8-31edf6e019adn%40googlegroups.com.

[protobuf] 🧡🧡🧡🧡สล็อต pg เว็บตรง แตกหนัก 2024 ไม่ผ่าน เอ เยน ต์ เว็บตรง สล็อตฝากถอน ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้🧡🧡🧡🧡

2024-07-29 Thread panupong pongin
from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/48900fc1-48ff-42d5-8170-3b00c02bc9b0n%40googlegroups.com.

[protobuf] 🐗🐗🐗🐗สล็อต pg เว็บตรง แตกหนัก 2024 ไม่ผ่าน เอ เยน ต์ เว็บตรง สล็อตฝากถอน ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้🐗🐗🐗🐗

2024-07-29 Thread panupong pongin
from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/b33b74f8-3635-43c9-a935-dd6934f7fbb3n%40googlegroups.com.

Re: [protobuf] Protobuf and gRPC with GCC 14

2024-07-29 Thread 'Em Rauch' via Protocol Buffers
On the Protobuf side the type signature of AddWarning() was changed with in v22.0 (https://protobuf.dev/support/migration/#error-collector), so I suspect the issue you are hitting is an incompatibility between that gRPC version only supporting Protobuf either before or after v22 (and you&#x

[protobuf] slight error in proto3 BNF ...

2024-07-29 Thread Daniel Gross
Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/1e556d64-a3ca-4117-83ba-ee24ae846b30n%40googlegroups.com.

Re: [protobuf] Compilation error while building libprotobuf-c

2024-07-29 Thread 'Em Rauch' via Protocol Buffers
OneofDescriptor has had a `file` member; it was added 7 years ago for the 3.4 release. The error sounds like you likely are simply using an ancient version of protobuf with a relatively newer version of `libprotobuf-c` On Mon, Jul 22, 2024 at 11:16 AM Sean wrote: > Hi, > > I&#x

[protobuf] Protobuf and gRPC with GCC 14

2024-07-25 Thread GCS
Hi, I'm the maintainer of Protobuf and gRPC in Debian. In the process of updating the packages. I've a local package of Protobuf 3.28.0 RC1. Wanted to package gRPC 1.65.1, but it needs absl::no_destructor not yet available in Debian. I went back to gRPC 1.62.2 which fails to b

[protobuf] [Announcement] Protocol Buffers Version 25.4 is Released!

2024-07-25 Thread 'Jie Luo' via Protocol Buffers
You can view the release and complete release notes on [GitHub]( https://github.com/protocolbuffers/protobuf/releases/tag/v25.4). If you experience any issues with the release, please [file a bug](https://github.com/protocolbuffers/protobuf/issues/new/choose) or post on [the Protocol Buffers

[protobuf] Error finding a .pb.o file externally

2024-07-25 Thread 'Jon Godbout' via Protocol Buffers
klisp/local-projects/cl-protobufs/protoc/../google/protobuf/proto2-descriptor-extensions.proto 26 <https://github.com/qitab/cl-protobufs/actions/runs/10102706939/job/27938798269?pr=438#step:10:27>[ 8%] Running cpp protocol buffer compiler on /home/runner/work/cl-protobufs/cl-protobufs/quickli

[protobuf] 👑👑บาคาร่า อันดับ 1 ได้คุณภาพแบบจัดเต็ม คมชัด เล่นไม่สะดุด👑👑

2024-07-23 Thread suchada chotowong
ups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/f27393d6-d356-4d0b-adaf-8d6753575c9en%40googlegroups.com.

[protobuf] 📌📌📌บาคาร่า ออนไลน์ อันดับ 1 ของเอเชีย มั่นคงการเงิน แจกบ่อย ถอนไม่อั้น📌📌📌

2024-07-23 Thread suchada chotowong
68 -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://gro

[protobuf] 🎈🎏🎀🧧บาคาร่า มือถือ ❗❗ท้าลองงงงงงงง เกมไพ่ยอดกระแส สมัครฟรี ไม่ผ่านเอเย่นต์🎈🎏🎀🧧

2024-07-23 Thread suchada chotowong
ว็บ บาคาร่า168 -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit h

[protobuf] 🎆🎇🌠บาคาร่าเว็บตรง ฝากถอนออโต้สมัยใหม่ เข้าถึงง่าย ผ่านมือถือเครื่องเดียว🎆🎇🌠

2024-07-23 Thread suchada chotowong
บาคาร่า 888เครดิตฟรี เว็บ บาคาร่า168 -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discuss

[protobuf] 💡💡💡บาคาร่า ฝากถอนไม่มีขั้นต่ํา มอบโอกาสดี ๆ ในการทำทุน เกมแท้ แจกบ่อย💡💡💡

2024-07-23 Thread suchada chotowong
ว็บ บาคาร่า168 -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https:

[protobuf] 🎊🎉🎁🧧บาคาร่า ฝากถอนไม่มีขั้นต่ำ 1 บาท ยูสใหม่แจกหนัก ท้าลอง ศูนย์รวมเกมไพ่🎊🎉🎁🧧

2024-07-23 Thread suchada chotowong
68 -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://gro

[protobuf] 🔥🦋📲💰บาคาร่า ออนไลน์ คาสิโนสดที่จริงใจ ไม่มีสะดุด ไม่มีโกง ไม่ล็อคยูส🔥🦋📲💰

2024-07-23 Thread suchada chotowong
บาคาร่า 888เครดิตฟรี เว็บ บาคาร่า168 -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on th

[protobuf] 🐝🐝🐝🐝บาคาร่า อันดับ 1 เว็บตรง ไม่ผ่านเอเย่นต์ น่าเชื่อถือที่สุดในไทย🐝🐝🐝🐝

2024-07-23 Thread suchada chotowong
ribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/e9e03cc1-ae9a-4776-bb12-16525d2c5b2dn%40googlegroups.com.

[protobuf] ✨✨✨✨บาคาร่า ทดลองเล่นฟรี สมัครฟรี ไม่มีขั้นต่ำ เล่นง่าย เห็นผลเร็ว✨✨✨✨

2024-07-23 Thread suchada chotowong
ribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/cf2178db-8c60-4c98-954e-33b4b19520a9n%40googlegroups.com.

[protobuf] 🦋🦋🔥🔥บาคาร่า ออนไลน์ สายไพ่เฮลั่น เว็บดีบอกต่อ แจกหนักลุ้นโชค🦋🦋🔥🔥

2024-07-23 Thread suchada chotowong
ว็บ บาคาร่า168 -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https:

[protobuf] ⚡⚡⚡⚡สล็อตออนไลน์ สล็อตแท้ เล่นง่าย แตกหนัก ท้าลองงง เว็บลิขสิทธิ์แท้ในไทย⚡⚡⚡⚡

2024-07-23 Thread suchada chotowong
this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/48717275-791e-40e8-bed9-d866c8254f5cn%40googlegroups.com.

[protobuf] 🪶🪶🪶🪶เว็บตรง สล็อต ฝากถอน ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ วอ เลท 2024 ตื่นตาตื่นใจ คมชัด ได้มาตรฐาน🪶🪶🪶🪶

2024-07-23 Thread suchada chotowong
p and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/5c43dffb-80c0-4dd6-91e6-a11d967c8f31n%40googlegroups.com.

[protobuf] 🍁🌾🍃🎄สล็อตเว็บตรง 100% คุณภาพที่ครบครัน ไม่มีขั้นต่ำ ไม่ผ่านเอเย่นต์ 🍁🌾🍃🎄

2024-07-23 Thread suchada chotowong
ls from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/9a6cf61a-48b3-4ab4-b330-8df1a565bf9dn%40googlegroups.com.

[protobuf] 🌈🌈🕸🐱เว็บตรง สล็อตฝากถอน ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ มาเสิร์ฟความมันส์กับเกมใหม่แตกหนัก🌈🌈🕸🐱

2024-07-23 Thread suchada chotowong
p and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/ab32fa6f-fb36-4454-8881-dbf0ba753c8an%40googlegroups.com.

[protobuf] 🐻🐰🐹🐭เว็บสล็อตใหม่ล่าสุด สมัครฟรี ระบบใหม่ได้มาตรฐาน ฝากง่ายถอนง่าย🐻🐰🐹🐭

2024-07-23 Thread suchada chotowong
cribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/7b2600fe-0227-4957-a30a-c4f36ebea047n%40googlegroups.com.

[protobuf] ⭐🌟💫เว็บสล็อตเปิดใหม่ล่าสุด คัดสรรเกมที่ดีที่สุดจากทั่วโลก แจกหนัก โบนัสเพียบ⭐🌟💫

2024-07-23 Thread suchada chotowong
group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/1559f642-c81b-4549-b1e4-f7486fae693an%40googlegroups.com.

[protobuf] 🚀🚀สล็อต pg เว็บตรง แตกหนัก 2024 ฝากถอน ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้🚀🚀

2024-07-22 Thread patchaya roemrat
p and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/4f851e9e-fca0-4106-877e-e0326a2eed69n%40googlegroups.com.

[protobuf] ⏰⏰⏰สล็อต pg เว็บตรง แตกหนัก 2024 ฝากถอน ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ แตกง่าย⏰⏰⏰

2024-07-22 Thread patchaya roemrat
p and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/e0f5da73-9cab-49c5-94e6-7bbe013a00e6n%40googlegroups.com.

[protobuf] 💎💎💎💎สล็อต pg เว็บตรง แตกหนัก 2024 ฝากถอน ไม่มี ขั้นต่ำ 1 บาทก็ ถอนได้ สำหรับนักพนันรุ่นใหม่💎💎💎💎

2024-07-22 Thread patchaya roemrat
nsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/protobuf/fd8c85c4-e350-49ba-9675-2d5fcb53225dn%40googlegroups.com.

[protobuf] Python resolving the wrong version of protobuf

2024-07-22 Thread 'Fraser Robinson' via Protocol Buffers
Hello, We've got a Python project that uses some Google client libraries that rely on protobuf as a dependency. We're using a Cloud Build CI/CD pipeline with poetry as the package manager and pip to install the dependencies in a directory to be zipped and used elsewhere. pip inst

[protobuf] protocol buffers plugin with C++

2024-07-22 Thread Graham Walsh
Hi, Im trying to build an example protoc plugin... the abseil dependencies are a nightmare. (link order). How do I build the example protocol buffer plugin? I need the link order for the abseil libs... here g++ -I../protobuf/third_party/abseil-cpp -I../protobuf/src/ ./my_prot

[protobuf] Backport of Sigsev bug in Python v25

2024-07-22 Thread 'Benjamin Villain' via Protocol Buffers
Hi group, I encountered a sigsev while using v4.25.3 (latest version of v25 Python library) of Protobuf. This bug was fixed in January (https://github.com/protocolbuffers/protobuf/commit/b9e4894462fab2e35da987a44fbe464b4c1d0140) but wasn't backported to v.4.25.x. Is there any plan on

[protobuf] Compilation error while building libprotobuf-c

2024-07-22 Thread Sean
Hi, I'm trying to compile libprotobuf-c, But hitting the following compilation error. Looks like there is a mismatch in the class definitions. How do I got about fixing this? protoc-c/c_message.cc:157:65: error: ‘const class google::protobuf::OneofDescriptor’ has no member named ‘file’

[protobuf] Fix for SIGSEV in Python object deep copy not backported to v25

2024-07-22 Thread 'Benjamin Villain' via Protocol Buffers
Hi, I encountered a sigsev in a project using protobuf v25 (v4.25.3 in pypi). The bug was fixed in later versions (https://github.com/protocolbuffers/protobuf/commit/b9e4894462fab2e35da987a44fbe464b4c1d0140) but I would have expected to see it in v25 since it is still an officially supported

  1   2   3   4   5   6   7   8   9   10   >