Go to file
Mike Kruskal 4f9e41767a Release prototype of Protobuf Editions.
This represents the future direction of protobuf, replacing proto2/proto3 syntax with editions.  These will enable more incremental evolution of protobuf APIs through features, which are individual behaviors (such as whether field presence is explicit or implicit).  For more details see https://protobuf.dev/editions/overview/.

This PR contains a working implementation of editions for the protoc frontend and C++ code generation, along with various infrastructure improvements to support it.  It gives early access for anyone who wants to a preview of editions, but has no effect on proto2/proto3 syntax.  It is flag-guarded behind the `--experimental_editions` flag, and is an experimental feature with no guarantees.

PiperOrigin-RevId: 544805690
2023-06-30 20:18:49 -07:00
.github Remove excess C++14 flag in our CMake tests. 2023-06-30 15:26:55 -07:00
build_defs
ci Force push auto-commits to bypass branch protection status checks 2023-06-09 10:01:40 -07:00
cmake Release prototype of Protobuf Editions. 2023-06-30 20:18:49 -07:00
conformance
csharp Auto-generate files after cl/542949247 2023-06-23 21:10:34 +00:00
docs Reserve option for proto-telemetry (#12758) 2023-05-15 20:10:38 -07:00
editors protobuf-mode: Remove no-op easy-menu-add call. (#12674) 2023-05-05 20:30:44 -07:00
examples
java Migrate away from `OneofDescriptor.isSynthetic()` 2023-06-29 11:42:37 -07:00
objectivec Fix objectivec test failure in Bazel 6+. 2023-06-26 15:59:48 -07:00
php Release prototype of Protobuf Editions. 2023-06-30 20:18:49 -07:00
pkg Release prototype of Protobuf Editions. 2023-06-30 20:18:49 -07:00
python Raise warinings when extend repeated field with none iterable in OSS. OSS will raise errors soon 2023-06-20 13:49:33 -07:00
ruby Release prototype of Protobuf Editions. 2023-06-30 20:18:49 -07:00
rust Fix hazzer emission of Optional 2023-06-28 10:07:11 -07:00
src Release prototype of Protobuf Editions. 2023-06-30 20:18:49 -07:00
third_party Merge commit '4b414d60eeaa00f6fbbbdb2f937b26601e903ee9' into chore-deps-update-utf8-range 2023-05-26 22:35:17 +00:00
toolchain
.bazelignore
.bazelrc
.gitignore
.gitmodules
.readthedocs.yml
BUILD.bazel Release prototype of Protobuf Editions. 2023-06-30 20:18:49 -07:00
CMakeLists.txt cleanup(cmake): prefer target over global options (#12916) 2023-05-30 14:56:51 -07:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
CONTRIBUTORS.txt
LICENSE
Protobuf-C++.podspec Sync up the min os versions between the C++ and ObjC CocoaPods support. 2023-06-05 10:04:26 -07:00
Protobuf.podspec Merge to main after 23.0 release (#12721) 2023-05-09 11:28:29 -07:00
README.md typo fix: Javascript -> JavaScript in protobuf readme 2023-06-14 20:56:29 -07:00
SECURITY.md
WORKSPACE
appveyor.bat
appveyor.yml
fix_permissions.sh
generate_descriptor_proto.sh Release prototype of Protobuf Editions. 2023-06-30 20:18:49 -07:00
global.json
google3_export_generated_files.sh
maven_install.json deps: Update Guava to 32.0.1 (#13099) 2023-06-20 09:59:40 -07:00
protobuf.bzl
protobuf_deps.bzl Raise warinings when extend repeated field with none iterable in OSS. OSS will raise errors soon 2023-06-20 13:49:33 -07:00
protobuf_release.bzl
protobuf_version.bzl Merge to main after 23.0 release (#12721) 2023-05-09 11:28:29 -07:00
regenerate_stale_files.sh
update_subtrees.sh
version.json Updating version.json to: 23.1-dev 2023-05-08 09:48:50 -07:00

README.md

Protocol Buffers - Google's data interchange format

Copyright 2008 Google Inc.

Overview

Protocol Buffers (a.k.a., protobuf) are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data. You can learn more about it in protobuf's documentation.

This README file contains protobuf installation instructions. To install protobuf, you need to install the protocol compiler (used to compile .proto files) and the protobuf runtime for your chosen programming language.

Protocol Compiler Installation

The protocol compiler is written in C++. If you are using C++, please follow the C++ Installation Instructions to install protoc along with the C++ runtime.

For non-C++ users, the simplest way to install the protocol compiler is to download a pre-built binary from our GitHub release page.

In the downloads section of each release, you can find pre-built binaries in zip packages: protoc-$VERSION-$PLATFORM.zip. It contains the protoc binary as well as a set of standard .proto files distributed along with protobuf.

If you are looking for an old version that is not available in the release page, check out the Maven repository.

These pre-built binaries are only provided for released versions. If you want to use the github main version at HEAD, or you need to modify protobuf code, or you are using C++, it's recommended to build your own protoc binary from source.

If you would like to build protoc binary from source, see the C++ Installation Instructions.

Protobuf Runtime Installation

Protobuf supports several different programming languages. For each programming language, you can find instructions in the corresponding source directory about how to install protobuf runtime for that specific language:

Language Source
C++ (include C++ runtime and protoc) src
Java java
Python python
Objective-C objectivec
C# csharp
Ruby ruby
Go protocolbuffers/protobuf-go
PHP php
Dart dart-lang/protobuf
JavaScript protocolbuffers/protobuf-javascript

Quick Start

The best way to learn how to use protobuf is to follow the tutorials in our developer guide.

If you want to learn from code examples, take a look at the examples in the examples directory.

Documentation

The complete documentation is available at the Protocol Buffers doc site.

Support Policy

Read about our version support policy to stay current on support timeframes for the language libraries.

Developer Community

To be alerted to upcoming changes in Protocol Buffers and connect with protobuf developers and users, join the Google Group.