Protobuf Team Bot
9f45862162
Auto-generate files after cl/557972284
1 year ago
Protobuf Team Bot
32ec0d5dbd
Auto-generate files after cl/557967343
1 year ago
Protobuf Team Bot
76f9547ebc
Auto-generate files after cl/555615362
1 year ago
Jie Luo
b359e5020a
Lock down ctype=CORD in proto file.
...
ctype can not be used for none string/bytes fields. ctye=CORD can not be used for extensions. A new macro PROTOBUF_FUTURE_REMOVE_WRONG_CTYPE is added that will be flipped for our next breaking release.
PiperOrigin-RevId: 555615362
1 year ago
ericsalo
843b74e601
Main 202308091812 ( #13489 )
...
Closes #13489
COPYBARA_INTEGRATE_REVIEW=https://github.com/protocolbuffers/protobuf/pull/13489 from protocolbuffers:main-202308091812 e729f0bf5a
PiperOrigin-RevId: 555301642
1 year ago
Protobuf Team Bot
aba9a7f1a3
Internal change
...
PiperOrigin-RevId: 555251853
1 year ago
Protobuf Team Bot
093e258a71
Updating version.json and repo version numbers to: 24.0
1 year ago
Protobuf Team Bot
3487ae0c01
Updating version.json and repo version numbers to: 24.0-rc3
1 year ago
Protobuf Team Bot
034ec9d9f6
Updating version.json and repo version numbers to: 24.0-rc2
1 year ago
Protobuf Team Bot
f254501c65
Auto-generate files after cl/547959326
1 year ago
Protobuf Team Bot
4602d346a4
Auto-generate files after cl/547610367
1 year ago
Protobuf Team Bot
05835e374d
Updating version.json and repo version numbers to: 24.0-rc1
1 year ago
Protobuf Team Bot
318cc4eb78
Auto-generate files after cl/545757296
1 year ago
Protobuf Team Bot
194d18566b
Auto-generate files after cl/544805690
1 year ago
Protobuf Team Bot
00d8021801
Auto-generate files after cl/542949247
1 year ago
Matt Kulukundis
62fdfd1062
Fix a typo
...
PiperOrigin-RevId: 540349262
1 year ago
Protobuf Team Bot
2b1babf6ed
Auto-generate files after cl/536519387
2 years ago
Protobuf Team Bot
3185c2fa0b
Auto-generate files after cl/535728592
2 years ago
James Newton-King
cfb702a078
[C#] Replace regex that validates descriptor names ( #12174 )
...
This PR replaces the descriptor name validation regex with a validation method. This change allows the `System.Text.RegularExpressions` engine to be trimmed away in published apps that do standard protobuf serialization.
There are some other usages of `Regex` in Google.Protobuf, but they in `JsonParser`. They are only included in a published app if `JsonParser` is used.
Another benefit is a slightly faster app startup time. The removed regex was compiled, which has a high-ish fixed cost.
cc @jskeet @jtattermusch
Closes #12174
COPYBARA_INTEGRATE_REVIEW=https://github.com/protocolbuffers/protobuf/pull/12174 from JamesNK:jamesnk/remove-regex 9d065a3a71
PiperOrigin-RevId: 532210203
2 years ago
Protobuf Team Bot
d33b00bdaa
Auto-generate files after cl/532175274
2 years ago
Protobuf Team Bot
902af9abf7
Auto-generate files after cl/531610557
2 years ago
deannagarcia
0e23f18865
Merge to main after 23.0 release ( #12721 )
...
Closes #12721
COPYBARA_INTEGRATE_REVIEW=https://github.com/protocolbuffers/protobuf/pull/12721 from protocolbuffers:main-202305082101 36482b4c68
PiperOrigin-RevId: 530664393
2 years ago
Protobuf Team Bot
67d9ea87f3
Internal change
...
PiperOrigin-RevId: 530619366
2 years ago
Protobuf Team Bot
6e511679de
Updating version.json and repo version numbers to: 23.0
2 years ago
Protobuf Team Bot
d8f44cc2fb
Updating version.json and repo version numbers to: 23.0-rc3
2 years ago
Protobuf Team Bot
9d97f983cd
Auto-generate files after cl/529209314
2 years ago
Adam Cozzette
7c95aacc18
Add option retention test for C#
...
PiperOrigin-RevId: 528614030
2 years ago
Protobuf Team Bot
c045343d61
Auto-generate files after cl/528023935
2 years ago
Protobuf Team Bot
1c05447e46
Auto-generate files after cl/528013709
2 years ago
Adam Cozzette
a2e8a2c88e
Add unittest_retention.proto to csharp/generate_protos.sh
...
PiperOrigin-RevId: 528013709
2 years ago
Protobuf Team Bot
51f51ac4ef
Updating version.json and repo version numbers to: 23.0-rc2
2 years ago
Protobuf Team Bot
28060e4987
Auto-generate files after cl/527076622
2 years ago
Protobuf Team Bot
b21d6be78b
Updating version.json and repo version numbers to: 23.0-rc1
2 years ago
Protobuf Team Bot
bc127f2b56
Auto-generate files after cl/526184056
2 years ago
Protobuf Team Bot
84a3b594c7
Auto-generate files after cl/524383969
2 years ago
Protobuf Team Bot
482156c0f9
Updating version.json and repo version numbers to: 22.3
2 years ago
Protobuf Team Bot
f11079b01f
Auto-generate files after cl/523269837
2 years ago
Protobuf Team Bot
11d9cd97cf
Auto-generate files after cl/523228262
2 years ago
Romfos
09f094c811
[dotnet, csharp] Run tests for supported platforms .NET 6, .NET Framework 4.6.2 ( #12378 )
...
What's changed?
- Update some nuget packages (for test projects)
- Run unit tests for supported platforms: .NET 6 + .NET Framework 4.6.2
Notes:
.NET Framework 4.6.1 is out of support, .NET Framework 4.6.2 is the older version that is still supported
https://devblogs.microsoft.com/dotnet/net-framework-4-5-2-4-6-4-6-1-will-reach-end-of-support-on-april-26-2022/
.NET 5 is out of support
https://devblogs.microsoft.com/dotnet/dotnet-5-end-of-support-update/
.NET Core 3.1 is out of support
https://devblogs.microsoft.com/dotnet/net-core-3-1-will-reach-end-of-support-on-december-13-2022/
Visual studio 2012 is out of support
https://devblogs.microsoft.com/visualstudio/support-ends-for-older-versions-of-visual-studio-feb2022
Closes #12378
COPYBARA_INTEGRATE_REVIEW=https://github.com/protocolbuffers/protobuf/pull/12378 from Romfos:main 227661e02c
PiperOrigin-RevId: 523196896
2 years ago
Protobuf Team Bot
6ae84761bf
Auto-generate files after cl/520049946
2 years ago
Mike Kruskal
3f4af6661a
Internal Code Change
...
PiperOrigin-RevId: 520049946
2 years ago
Protobuf Team Bot
5b59a02b91
Auto-generate files after cl/519752053
2 years ago
Protobuf Team Bot
e56cf5d8d4
Auto-generate files after cl/518395462
2 years ago
Protobuf Team Bot
35ffb665e2
Auto-generate files after PR #12262
2 years ago
Jon Skeet
4326e0f852
Make json_name take priority over name (fully) in C# parsing ( #12262 )
...
Fixes #11987
(testprotos.pb and UnittestIssues.pb.cs are both generated; no need to review.)
Closes #12262
COPYBARA_INTEGRATE_REVIEW=https://github.com/protocolbuffers/protobuf/pull/12262 from jskeet:json-mapping 95785247b7
PiperOrigin-RevId: 518186721
2 years ago
Jon Skeet
0dda953e06
Fix compile-time error for Google.Protobuf in C# 11 ( #12261 )
...
Note that the error only affects users trying to build Google.Protobuf directly using C# 11. It doesn't affect users who are compiling code against the pre-built library (which is likely to be basically everyone).
Fixes #11004 .
(This is code I'm less familiar with than most of the library, and I'd be nervous of making any more wide-ranging changes. This seems pretty safe though.)
cc @JamesNK who first noticed this.
Closes #12261
COPYBARA_INTEGRATE_REVIEW=https://github.com/protocolbuffers/protobuf/pull/12261 from jskeet:csharp-11 6bf22b892b
PiperOrigin-RevId: 518178901
2 years ago
Protobuf Team Bot
5d3d9aa372
Auto-generate files after cl/518088680
2 years ago
Protobuf Team Bot
9b4a3ed9e4
Auto-generate files after cl/517595570
2 years ago
Protobuf Team Bot
22a3404240
Auto-generate files after cl/517494787
2 years ago
Protobuf Team Bot
a7846178ef
Auto-generate files after cl/517453262
2 years ago