Skip to content

Commit aba0910

Browse files
New version: Google.Protobuf version 35.0 (microsoft#377014)
1 parent 3eab652 commit aba0910

3 files changed

Lines changed: 160 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Created with komac v2.16.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
3+
4+
PackageIdentifier: Google.Protobuf
5+
PackageVersion: '35.0'
6+
InstallerType: zip
7+
NestedInstallerType: portable
8+
NestedInstallerFiles:
9+
- RelativeFilePath: bin/protoc.exe
10+
ReleaseDate: 2026-05-19
11+
ArchiveBinariesDependOnPath: true
12+
Installers:
13+
- Architecture: x86
14+
InstallerUrl: https://github.com/protocolbuffers/protobuf/releases/download/v35.0/protoc-35.0-win32.zip
15+
InstallerSha256: 99FF33772CA055CD096782D05395BBCC4B6187CCE284D2A914FC3745D3ECB6B6
16+
- Architecture: x64
17+
InstallerUrl: https://github.com/protocolbuffers/protobuf/releases/download/v35.0/protoc-35.0-win64.zip
18+
InstallerSha256: D1CEDE9E308CC3EB072392AF1C02CCAE4BDD3D2F374EC2970DBD8CDFDAA91363
19+
ManifestType: installer
20+
ManifestVersion: 1.12.0
Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
# Created with komac v2.16.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
3+
4+
PackageIdentifier: Google.Protobuf
5+
PackageVersion: '35.0'
6+
PackageLocale: en-US
7+
Publisher: Protocol Buffers
8+
PublisherUrl: https://github.com/protocolbuffers
9+
PublisherSupportUrl: https://github.com/protocolbuffers/protobuf/issues
10+
PackageName: protobuf
11+
PackageUrl: https://github.com/protocolbuffers/protobuf
12+
License: Proprietary
13+
LicenseUrl: https://github.com/protocolbuffers/protobuf/blob/HEAD/LICENSE
14+
Copyright: Copyright 2008 Google Inc.
15+
CopyrightUrl: https://github.com/protocolbuffers/protobuf/blob/main/LICENSE
16+
ShortDescription: Protocol Buffers (a.k.a., protobuf) are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data.
17+
Tags:
18+
- marshalling
19+
- protobuf
20+
- protobuf-runtime
21+
- protoc
22+
- protocol-buffers
23+
- protocol-compiler
24+
- rpc
25+
- serialization
26+
ReleaseNotes: |-
27+
Announcements
28+
- Protobuf News may include additional announcements or pre-announcements for upcoming changes.
29+
Bazel
30+
- Bazel 9 Support: Upgrade tests to Bazel 9 (3ee8d8a)
31+
- Moved protocopt flag out of the cc dir, since it is not a c++-specific flag. (325d8dc)
32+
- Add support for bazel 9.x (#26201) (f08d703)
33+
- Change @protobuf//bazel/flags:prefer_prebuilt_proto flag to True. (f9f32d2)
34+
- Dropped support for Bazel 7. (1816758)
35+
Compiler
36+
- Implement the Edition 2026 naming style enforcement feature. This will help prevent field name collisions. (ae0d964)
37+
- Add enum to enforce_naming_style feature to avoid field naming collisions which will be implemented in Edition 2026. (e4911a1)
38+
- Fail writing files in protoc CLI if any file output path is relative. (3bf2b07)
39+
- Mangle types named XyzView if there is any direct sibling named Xyz (63d6ef0)
40+
- Improve the namespacing selected by rustc used for gencode types in errors. (ce2eb73)
41+
- Fully qualify scalar types in Kotlin/Native proto generator. (adc8d22)
42+
- Change _opt() accessors to return an std::Option instead of protobuf::Optional (6ced612)
43+
- Make Message's trait bounds much better for generic use (be1292f)
44+
- Support more chars in type URLs in the C++ text-format parser. (3a87c6c)
45+
- Validate Feature Support on Custom Options (34c1110)
46+
- Trait clarity effort: introduce Singular trait, for types which are allowed as simple fields (cdbfaf1)
47+
- Trait clarity improvement on Map traits (a8daa95)
48+
C++
49+
- Workaround for attribute handling bug in gcc < 13 (78dc67e)
50+
- Implement the Edition 2026 naming style enforcement feature. This will help prevent field name collisions. (ae0d964)
51+
- Add enum to enforce_naming_style feature to avoid field naming collisions which will be implemented in Edition 2026. (e4911a1)
52+
- Enhance ParseInfoTree to provide location of names and values. (1cb4fdb)
53+
- Add integer overflow check to RepeatedPtrField::MergeFrom. (cb5fe97)
54+
- Adding sanity check for ListFields reflection call (555360e)
55+
- Introduce Arena::UniquePtr and Arena::Ptr as smart pointers to better manage (bb00218)
56+
- Bug fix for edition 2024 visibility checking. Visibility checking was not properly applied to service method input and output types. This is now applied properly and will error if method input/output types do not have visibility to those messages. (5a56dee)
57+
- Fixed data race in Python Free Threading by removing unnecessary SetHasBitForRepeated() call. (8c1a9a4)
58+
- Add support for bazel 9.x (#26201) (f08d703)
59+
- Add proto2::sort/stable_sort utilities that behave as the standard ones but are optimized for Protobuf containers. (252281f)
60+
- Add proto2::erase/erase_if utilities that behave as the standard ones but are optimized for Protobuf containers. (dc9fb35)
61+
- Extend Abseil flag support for enums to include std::vector. (bd42ac6)
62+
- Dropped support for Bazel 7. (1816758)
63+
- Add native Abseil flag support to protobuf message types. (ec42e19)
64+
- Support more chars in type URLs in the C++ text-format parser. (3a87c6c)
65+
- Stripping empty options (d5d6d4c)
66+
- Creating generic MaybeAddError helper function (4bcf773)
67+
- Validate Feature Support on Custom Options (34c1110)
68+
- Add bounds checks to UnsafeArenaExtractSubrange, ReleaseLast and SwapElements. (d124c2d)
69+
- Fix UTF-8 Validation of string extensions in C++ (0936f33)
70+
- Remove first implementation of protobuf out of bounds enforcement. (507f86b)
71+
- Add native Abseil flag support to protobuf enums. (a203388)
72+
- Improve EINTR handling for close in zero_copy_stream_impl.h (a904af9)
73+
- Add cc_proto_library for MessageSet in //src/google/protobuf/bridge (6d23e8e)
74+
Java
75+
- Add BytecodeClassName functions, matching helpers in the java GeneratorNames utility. (514aceb)
76+
- Add enum to enforce_naming_style feature to avoid field naming collisions which will be implemented in Edition 2026. (e4911a1)
77+
- Avoid toBigIntegerExact in JsonFormat to avoid degenerate parse behavior in the face of large exponents. (57093a8)
78+
- Dropped support for Bazel 7. (1816758)
79+
- Add native Abseil flag support to protobuf enums. (a203388)
80+
Csharp
81+
- Implement WriteDelimitedTo(BufferWriter) (#21325) (407f457)
82+
- Add an "include" directory containing WKTs for Google.Protobuf.Tools nuget package. (6029d17)
83+
Objective-C
84+
- ObjC: Block Roots from being created. (8274114)
85+
- Fix naming convention in c_function extension syntax (e3bee07)
86+
- Modify unit tests to use c_function extension syntax via ifdefs (e1f2f52)
87+
Rust
88+
- Mangle types named XyzView if there is any direct sibling named Xyz (63d6ef0)
89+
- Improve the namespacing selected by rustc used for gencode types in errors. (ce2eb73)
90+
- Allow ProtoStr to be used in const contexts. (7f7b974)
91+
- Make any &T impl AsView if T impl AsView (d787869)
92+
- Change _opt() accessors to return an std::Option instead of protobuf::Optional (6ced612)
93+
- Add some common methods to ProtoStr to make it more ergonomic to use without dropping down to &[u8] (f8daf2f)
94+
- Ffi_11: Define basic arithmetic operations and comparison with underlying type (74b6f3f)
95+
- Make Message's trait bounds much better for generic use (be1292f)
96+
- Remove ProxiedInMapValue alias, since it is superceded by MapValue (5bde6e8)
97+
- Add fn push_default(&mut self) -> SomeMsgMut<> fn for Repeated message type fields. (a3bf3ec)
98+
- Fix that f32 and f64 were incorrectly tagged as legal for MapKeys in RustProto. (ab3793e)
99+
- Trait clarity effort: introduce Singular trait, for types which are allowed as simple fields (cdbfaf1)
100+
- Trait clarity improvement on Map traits (a8daa95)
101+
- See also UPB changes below, which may affect Rust.
102+
Python
103+
- Fix Python text_format by adding an optional recursion depth limit (#26604) (8abff6b)
104+
- Fix data race in CMessage lazy initialization for Python freethreading. (28e4512)
105+
- Fixed data race in Python Free Threading by removing unnecessary SetHasBitForRepeated() call. (8c1a9a4)
106+
- Fix type annotation for FindAllExtensionNumbers() to be a list rather than the more general Iterator. (3edd615)
107+
- Add type hints to descriptor_database.py. (cbe6403)
108+
- Fixed a bug in msg.MergeFrom(msg2) in Python. (ab14c0f)
109+
- Fix NULL byte handling issue in Python Protobuf find symbols in pool (059dc7e)
110+
- Add support for bazel 9.x (#26201) (f08d703)
111+
- Add recursion guards for the following nested messages: (b4c3fec)
112+
- Protobuf Python UPB Free Threading support. (f10c1de)
113+
- Fix Any recursion depth bypass in Python json_format.ParseDict (#25239) (d2b0016)
114+
- Supports exporting int as int (ea78297)
115+
PHP
116+
- Fail writing files in protoc CLI if any file output path is relative. (3bf2b07)
117+
PHP C-Extension
118+
- Fix 1-byte stack overflow in PHP extension int64 formatting (#26530) (3f04505)
119+
- See also UPB changes below, which may affect PHP C-Extension.
120+
Ruby
121+
- Gracefully handle payloads >2GB. (918ad5b)
122+
Ruby C-Extension
123+
- Gracefully handle payloads >2GB. (918ad5b)
124+
- See also UPB changes below, which may affect Ruby C-Extension.
125+
UPB (Python/PHP/Ruby C-Extension)
126+
- Fixed two GCC-only issues around upb's generated extension registry.
127+
- Avoid theoretical overflow of uintptr_t in AddAllLinkedExtensions (e7785e0)
128+
- Test(proto): Add message to test oneof name conflict resolution (29476e1)
129+
- Add recursion guards for the following nested messages: (b4c3fec)
130+
ReleaseNotesUrl: https://github.com/protocolbuffers/protobuf/releases/tag/v35.0
131+
ManifestType: defaultLocale
132+
ManifestVersion: 1.12.0
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Created with komac v2.16.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
3+
4+
PackageIdentifier: Google.Protobuf
5+
PackageVersion: '35.0'
6+
DefaultLocale: en-US
7+
ManifestType: version
8+
ManifestVersion: 1.12.0

0 commit comments

Comments
 (0)