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
Protobuf Team Bot
fd6fc8c7cc
Auto-generate files after cl/517211904
2 years ago
zhangskz
b15bf628e5
Merge 22.x back to main ( #12200 )
...
Closes #12200
COPYBARA_INTEGRATE_REVIEW=https://github.com/protocolbuffers/protobuf/pull/12200 from protocolbuffers:main-202303101853 1efa2e7205
PiperOrigin-RevId: 515722578
2 years ago
Mike Kruskal
25dfc39b11
Internal changes
...
PiperOrigin-RevId: 515648197
2 years ago
Protobuf Team Bot
81f89d509d
Updating version.json and repo version numbers to: 22.2
2 years ago
deannagarcia
15bd2c21cf
Merge 22.x back to main ( #12169 )
...
Closes #12169
PiperOrigin-RevId: 515161008
2 years ago
Protobuf Team Bot
839e8d25ea
Updating version.json and repo version numbers to: 22.1
2 years ago
Protobuf Team Bot
818129adff
Auto-generate files after cl/514783686
2 years ago
Protobuf Team Bot
51f22eb334
Auto-generate files after cl/514587333
2 years ago
Protobuf Team Bot
f3fba625c6
Auto-generate files after cl/514424955
2 years ago
Protobuf Team Bot
02bbd4e492
Auto-generate files after cl/513973094
2 years ago
Protobuf Team Bot
1501afeb23
Auto-generate files after cl/512017807
2 years ago
Mike Kruskal
649cc30872
Open-source some of our string_view tests.
...
This support was added in 22.x, but we don't have any tests locking it down.
Closes https://github.com/protocolbuffers/protobuf/issues/8096
PiperOrigin-RevId: 510242380
2 years ago
Protobuf Team Bot
a847a8dc4b
Updating version.json and repo version numbers to: 22.0
2 years ago
Mike Kruskal
ff91b25494
Use generated Conformance proto for Bazel targets.
...
PiperOrigin-RevId: 510158778
2 years ago
Protobuf Team Bot
3219a0b0d9
Auto-generate files after cl/509546035
2 years ago
Jon Skeet
7ee157bc35
Generate C# conformance test in script ( #11880 )
...
This is already generated code, but wasn't included in our generation script. This change makes sure it will be up-to-date, and uses the now-conventional .pb.cs file extension.
This does *not* affect the conformance tests run from Bazel, as they generate the file separately and build the conformance tests using only Program.cs and the freshly-generated code. However, the csharp/src/Google.Protobuf.Conformance/BUILD.bazel still needs to be kept up-to-date with the filename change.
Closes #11880
COPYBARA_INTEGRATE_REVIEW=https://github.com/protocolbuffers/protobuf/pull/11880 from jskeet:generate-conformance 34bb22cc46
PiperOrigin-RevId: 509542860
2 years ago
Protobuf Team Bot
6e327701e9
Automated rollback of commit 3493da3878
.
...
PiperOrigin-RevId: 509537125
2 years ago
Sandy Zhang
3493da3878
Automated rollback of commit 0b72758dac
.
...
PiperOrigin-RevId: 508713070
2 years ago
Protobuf Team Bot
4dd7a1e380
Updating version.json and repo version numbers to: 22.0-rc3
2 years ago
Protobuf Team Bot
0b72758dac
C# test changes to account for internal/external differences.
...
PiperOrigin-RevId: 508402030
2 years ago
Protobuf Team Bot
fa7a079c11
Updating version.json and repo version numbers to: 22.0-rc2
2 years ago
Protobuf Team Bot
e2aecce291
Auto-generate files after cl/506649450
2 years ago
Protobuf Team Bot
fb1d877949
Internal changes
...
PiperOrigin-RevId: 506649450
2 years ago
Protobuf Team Bot
96b1fce644
Auto-generate files after cl/506075942
2 years ago
Deanna Garcia
9c5ab0ccdb
Undo ruby major version bump based on discussions with cloud team.
...
We will aim to get binary gems in 3.22.0, but if they aren't done we will do an all source release and bump to 4.22.0 at full release time.
PiperOrigin-RevId: 506075942
2 years ago
Protobuf Team Bot
e06013ce9f
Auto-generate files after cl/506062884
2 years ago
Protobuf Team Bot
78376c3131
[ObjC] Add the debug runtime check to more startup cases.
...
Descriptor was relying on the Root for the runtime check, but since the Root is
only startup up when needed, add the debug runtime check to the cases where the
Root isn't started up.
EnumDescriptors are normally started up by fields, but a developer could
directly call the public apis, so add the debug runtime check for safety sake.
PiperOrigin-RevId: 506062884
2 years ago
Protobuf Team Bot
72bf2eacea
Auto-generate files after cl/506033849
2 years ago
Protobuf Team Bot
a12b0c06fa
Reinstate descriptor-sensitive C# tests.
...
PiperOrigin-RevId: 506033849
2 years ago
Protobuf Team Bot
af559fcc07
Auto-generate files after cl/506020387
2 years ago
Protobuf Team Bot
663fca1658
[ObjC] Add compile time asserts around legacy codegen support.
...
Looking back through history, figure out each place a generation change was
added and added compile asserts to help leave signals for what can be cleaned up
when if the legacy support is ever moved forward.
PiperOrigin-RevId: 506020387
2 years ago
Protobuf Team Bot
cbc8623dfb
Auto-generate files after cl/505999766
2 years ago
Protobuf Team Bot
8f79909101
[ObjC] Provide NSCopying on all GPB*Descriptor objects.
...
PiperOrigin-RevId: 505999766
2 years ago