Feng Xiao
c236896ec5
Merge pull request #4229 from leighmcculloch/patch-1
...
Remove broken link to code.google.com/p/protorpc
7 years ago
Leigh McCulloch
4a3b42ed05
Remove broken link to code.google.com/p/protorpc
...
Remove broken link to RPC implementation https://code.google.com/p/protorpc/ . Going to this URL displays a 404 error message, with no indication that the project has a new location or still exists.
7 years ago
Feng Xiao
ed14fe423b
Merge pull request #3934 from xfxyjwf/builtsources
...
Remove the use of BUILT_SOURCES
7 years ago
Jon Skeet
0c52335587
Update .NET SDK to 2.0.3
...
This will allow SourceLink as per #4179 , and mean that we can use C#
7.0 language features in the library (but not in generated code).
This does not affect which platforms we're *targeting*, so end users
won't see any difference.
It would be nice to update to 2.1.4, but AppVeyor's "Visual Studio
2017" environment is only 2.0.3.
7 years ago
Feng Xiao
94f3be06ba
Merge pull request #4226 from themattchan/patch-1
...
Add Haskell implementations
7 years ago
Thomas Van Lenten
3e1587fd4b
Add an explicit import of stdatomic.h.
...
The generated code for enums needs atomics support, so generate the
import instead of relying on it via transitive imports. This will
make future changes to this likely likely to break generated code
and runtime support are mixed.
Followup to https://github.com/google/protobuf/pull/4184 .
7 years ago
Thomas Van Lenten
6fd2ae7e45
Bring back import of OSAtomic.
...
Followup to https://github.com/google/protobuf/pull/4184 , keep the
import to not break any existing generated code that isn't regenerated
when they update to the newer protobuf code.
7 years ago
Matt Chan
72337d6cc9
Add Haskell implementations
...
Add Awake Security's Haskell Protobuf and GRPC implementations
7 years ago
Feng Xiao
1d02e45468
Merge pull request #4224 from davido/drop_java_6_support
...
Drop java 6 support
7 years ago
David Ostrovsky
019ceea4b3
Drop java 6 support
...
Fixes #4220 .
7 years ago
Feng Xiao
c337d9f929
Remove the use of BUILT_SOURCES
...
Fixes https://github.com/google/protobuf/issues/3912
[BUILT_SOURCES](https://www.gnu.org/software/automake/manual/html_node/Sources.html )
is used with [Automake's automatic dependency tracking](https://www.gnu.org/software/automake/manual/html_node/Dependencies.html#Dependencies )
but doesn't work well in protobuf when cross-compiling. Their presence
causes maek to always generate them even when they are not requested
and as a result causes cross-compilation to fail because the built protoc
cannot be used to generate unittest protos (see: https://github.com/google/protobuf/issues/3912 ).
Removing it with explicit dependencies fixes the build issue when running
'make', 'make all', 'make install' at cross-compilation. It doesn't affect
'make protoc' because BUILT_SOURCES only works for the implicit targets
'all', 'check' or 'install'.
7 years ago
Feng Xiao
80e016e838
Merge pull request #4205 from xuwei-k/patch-2
...
fix typo in FieldMaskTree.java comment
7 years ago
Jonathan Dierksen
a721bf6d29
Migrate away from deprecated OSAtomic APIs. ( #4184 )
...
* Migrate away from deprecated OSAtomic APIs.
7 years ago
kenji yoshida
1c3b20b122
fix typo in FieldMaskTree.java comment
7 years ago
Jon Skeet
47b7d2c7ca
Add DiscardUnknownFields support for C#
...
By default, unknown fields are preserved when parsing. To discard
them, use a parser configured to do so:
var parser = MyMessage.Parser.WithDiscardUnknownFields(true);
7 years ago
Yilun Chong
9f80df0269
Merge pull request #4158 from BSBandme/FixBenchmarks
...
Fix java benchmark to use parser, fix cpp benchmark new arena to use …
7 years ago
Yilun Chong
473a810975
Update py_benchmark.py
7 years ago
Yilun Chong
fa60e550ec
Fix java benchmark to use parser, fix cpp benchmark new arena to use Reset, format some files
7 years ago
Adam Cozzette
b77aa8011d
Merge pull request #4148 from datacompboy/patch-2
...
Add more tests to time_test
7 years ago
Adam Cozzette
d4afdba83d
Merge pull request #4147 from datacompboy/patch-1
...
Fix ValidateDateTime: check day instead month
7 years ago
Yilun Chong
bab843b8b9
Merge pull request #4132 from BSBandme/JavaCaliperCounter
...
Java caliper counter
7 years ago
Yilun Chong
195253c3f6
Add counter to Java benchmark
7 years ago
Yilun Chong
4adc5a48c0
Merge pull request #4065 from BSBandme/python_benchmark_real
...
Add python benchmark
7 years ago
Anton Fedorov
091eeb1261
Update time_test.cc
...
Better test coverage for datetime validation.
7 years ago
Anton Fedorov
473c5cff76
Fix ValidateDateTime: check day instead month
...
Found with PVS-Studio static analyser, see
https://www.viva64.com/en/b/0550/
7 years ago
Yilun Chong
2fc69b1561
Add python benchmark
7 years ago
Jisi Liu
a3868af12b
Merge pull request #4131 from pherl/merge
...
Merge 3.5.x branch into master
7 years ago
Adam Cozzette
eca1d2a711
Merge pull request #4116 from amandeepgautam/master
...
whitelisting aix platform as it has sched_yield
7 years ago
Amandeep Gautam
0c0d481c69
whitelisting aix platform as it has sched_yield
7 years ago
Thomas Van Lenten
4588e6e2b9
Force a copy when saving the NSData that came from another.
7 years ago
Yilun Chong
43caa38d6e
Merge pull request #4014 from BSBandme/JavaCaliper
...
Add caliper supported to java benchmark
7 years ago
Jisi Liu
ec826c5a59
Merge remote-tracking branch 'origin/3.5.x' into master
7 years ago
Jisi Liu
383a4941d5
Merge remote-tracking branch 'origin/3.5.x' into master
7 years ago
Jisi Liu
39f577c38e
Merge pull request #4124 from pherl/nullptr
...
remove nullptr
7 years ago
Jisi Liu
5b1caea024
Merge pull request #4090 from pherl/nopassword
...
Fix uploading binary wheel.
7 years ago
Thomas Van Lenten
156161dfcd
Properly copy maps with string keys but pod values.
...
Add tests to cover all the common special casing in the runtime code to
ensure things come out correctly.
7 years ago
Yilun Chong
aca6c15598
Fix some bug
7 years ago
Jisi Liu
4f3d8657c3
remove nullptr
7 years ago
Yilun Chong
a147a21376
Changed README
7 years ago
kvukic
8529f2aee3
Resolved issue #3510 . Malformed errorr messages replaced with meaningful description
7 years ago
Jisi Liu
8fc40b5502
Fix uploading binary wheel.
...
The script now takes two prompt for user name and password. One single
input redirection no longer works.
7 years ago
Jisi Liu
88e5573b9a
Merge pull request #4089 from pherl/nocache
...
Disable pip cache when testing uploaded packages
7 years ago
Jisi Liu
7ad8e7ad59
Disable pip cache when testing uploaded packages
...
Otherwise, pip complains "cannot find a version satisfies the
requirement." I suspect it was due to caching issues. I usued to
manually add a `sleep 30` between the upload and the installation test
which is quite unstable.
7 years ago
Feng Xiao
099d997591
Merge pull request #4083 from matt-kwong/kokoro_jobs
...
Shard 64-bit Linux languages into different Kokoro jobs
7 years ago
Matt Kwong
0b2be3caaf
Shard 64-bit Linux languages into different Kokoro jobs
7 years ago
Feng Xiao
4b2977b396
Merge pull request #4082 from matt-kwong/kokoro_jobs
...
Migrate Jenkins jobs to Kokoro
7 years ago
Matt Kwong
ae49cfd1a4
Collect xml results for Kokoro
7 years ago
Jisi Liu
106ffc04be
Merge pull request #4073 from pherl/changelog
...
Update changelog for 3.5.1
7 years ago
Jisi Liu
d69f33304f
Merge pull request #4080 from pherl/arm64
...
Add support for Windows ARM64 build
7 years ago
Matt Kwong
6003a61255
Make Kokoro job pull Dockerimage from Dockerhub
7 years ago