aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #5001 from acozzette/backport-spelling-fix3.5.xAdam Cozzette2018-08-031-1/+1
|\ | | | | Fix spelling error of __GNUC_MINOR__
| * Fix spelling error of __GNUC_MINOR__Adam Aili2018-08-031-1/+1
|/
* Merge pull request #4936 from arashikou/3.5.xFeng Xiao2018-07-191-1/+1
|\ | | | | Do Not Define GOOGLE_FALLTHROUGH_INTENDED on GCC Without Attribute Support
| * Do Not Define GOOGLE_FALLTHROUGH_INTENDED on GCC Without Attribute SupportJohn W. Bruce2018-07-181-1/+1
|/ | | | | | | | | | The definition of GOOGLE_FALLTHROUGH_INTENDED assumed that [[gnu::fallthrough]] was always available on GCC 7+. While gnu::fallthrough is supported on GCC 7+, C++ attributes themselves are not supported on GCC if the C++ standard is before C++11. As a fix, the guard on this definition has been expanded to include a check for C++ attribute support. The form of this check is the one recommended by GCC at https://gcc.gnu.org/projects/cxx-status.html .
* Guards for older GCC versions (#4870)Tom Kent2018-07-0613-26/+26
| | | Guards for older GCC versions.
* Merge pull request #4572 from jozefizso/fix/4494_compilation_error_c4146Feng Xiao2018-04-271-2/+2
|\ | | | | Using binary one's complement to negate an unsigned int
| * Using binary one's complement to negate an unsigned intJozef Izso2018-04-271-2/+2
|/ | | | | | This removes a Visual Studio warning C4146: unary minus operator applied to unsigned type, result still unsigned. Original code: https://github.com/google/protobuf/commit/24493eef9395e5b832360e12efabf9c363c9cb15
* Merge pull request #4398 from pherl/catlog3.5Jisi Liu2018-03-191-1/+1
|\ | | | | Cat the test-suite.log on errors for presubmits
| * Cat the test-suite.log on errors for presubitsJisi Liu2018-03-191-1/+1
|/
* Bump version number to 3.5.2v3.5.2Bo Yang2018-03-0513-15/+31
|
* Fix setup.py for windows build.Bo Yang2018-03-051-4/+22
|
* Merge pull request #4236 from pherl/3.5.xJisi Liu2018-01-261-1/+1
|\ | | | | Bumping number to fix ruby 2.1 on mac
| * Bumping number to fix ruby 2.1 on macJisi Liu2018-01-261-1/+1
| |
* | Fix more memory leak for php c extension (#4211)Paul Yang2018-01-257-27/+117
|/ | | | | | * Fix more memory leak for php c extension * Fix memory leak for php5.5
* Merge pull request #4185 from pherl/ruby2.5Jisi Liu2018-01-171-2/+2
|\ | | | | Update rake file to build of 2.1.6.
| * Update rake file to build of 2.1.6.Jisi Liu2018-01-171-2/+2
| |
* | Merge pull request #4182 from pherl/ruby2.5Jisi Liu2018-01-172-3/+3
|\| | | | | Support ruby2.5
| * Support ruby2.5Jisi Liu2018-01-172-3/+3
| |
* | Well known types are not initialized properly. (#4139)Paul Yang2018-01-053-30/+68
| | | | | | | | | | | | | | | | | | Previously, within the same load period of protobuf module, well known types are not initialized correctly for the second request. The reason is that well known type are only initialized if a method local static variable is not set. However, that variable is not reset after request ends. Therefore, when the second request comes, the method local static variable is still set (by previous request) and well types are not initialized in this case.
* | Merge pull request #4146 from pherl/fix_protocJisi Liu2018-01-051-1/+1
|\ \ | | | | | | Bump protoc-artifact version for a patch rebuild
| * | Bump protoc-artifact version for a patch rebuildJisi Liu2018-01-051-1/+1
| |/
* | Merge pull request #4124 from pherl/nullptrJisi Liu2018-01-031-1/+1
|\ \ | | | | | | remove nullptr
| * | remove nullptrJisi Liu2018-01-021-1/+1
| | |
* | | Merge pull request #4090 from pherl/nopasswordJisi Liu2018-01-031-6/+3
|\ \ \ | |/ / |/| | Fix uploading binary wheel.
| * | Fix uploading binary wheel.Jisi Liu2017-12-221-6/+3
| | | | | | | | | | | | | | | The script now takes two prompt for user name and password. One single input redirection no longer works.
* | | Merge pull request #4089 from pherl/nocacheJisi Liu2017-12-221-1/+2
|\| | | |/ |/| Disable pip cache when testing uploaded packages
| * Disable pip cache when testing uploaded packagesJisi Liu2017-12-221-1/+2
|/ | | | | | | 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.
* Merge pull request #4073 from pherl/changelogv3.5.1Jisi Liu2017-12-201-0/+31
|\ | | | | Update changelog for 3.5.1
| * Update changelogJisi Liu2017-12-201-1/+1
| |
| * Update changelogJisi Liu2017-12-191-2/+7
| |
| * Merge branch '3.5.x' of github.com:google/protobuf into changelogJisi Liu2017-12-1926-28/+28
| |\
| * | Update changelog for 3.5.1Jisi Liu2017-12-191-0/+26
| | |
* | | Merge pull request #4080 from pherl/arm64Jisi Liu2017-12-201-0/+3
|\ \ \ | | | | | | | | Add support for Windows ARM64 build
| * | | Add support for Windows ARM64 buildMiradham Kamilov2017-12-201-0/+3
| | |/ | |/|
* | | Merge pull request #4072 from google/jieluoJisi Liu2017-12-1955-769/+4529
|\ \ \ | | | | | | | | Cherrypick for csharp, including:
| * | | Cherrypick for csharp, including:Jie Luo2017-12-1955-769/+4529
| | |/ | |/| | | | | | | | | | | | | Add preserve UnknownFields Compare floating point values bitwise Add auto-generated header to C# generated files
* | | Merge pull request #4076 from pherl/stringbackJisi Liu2017-12-191-1/+1
|\ \ \ | |_|/ |/| | Fix string::back() usage in googletest.cc
| * | Fix string::back() usage in googletest.ccJisi Liu2017-12-191-1/+1
|/ /
* | Merge pull request #4074 from pherl/mapatJisi Liu2017-12-191-1/+1
|\ \ | | | | | | Replace C++11 only method std::map::at
| * | Replace C++11 only method std::map::atJisi Liu2017-12-191-1/+1
| |/
* | Merge pull request #4070 from pherl/3.5.xJisi Liu2017-12-1925-27/+27
|\ \ | |/ |/| Update version number to 3.5.1
| * Update version number to 3.5.1Jisi Liu2017-12-1925-27/+27
|/
* Fix file permission for python package.Feng Xiao2017-12-151-0/+1
| | | | `umask 0022` makes sure the created package will be accessible by all users.
* Merge pull request #4034 from TeBoring/php-timestamp-bugPaul Yang2017-12-154-16/+84
|\ | | | | Avoid calling method from php extension directly
| * Fix for php5.5Bo Yang2017-12-141-1/+1
| |
| * Accept DatetimeInterface in fromDatetimeBo Yang2017-12-142-12/+14
| |
| * Avoid using php_date_get_date_ce() in case date extension is notBo Yang2017-12-131-2/+15
| | | | | | | | available.
| * Call php method via function name instead of calling directly.Bo Yang2017-12-124-34/+50
| | | | | | | | | | | | | | This changes the linking error if php extension is not statically linked to a runtime error. In this way, users who don't need Timestamp can still use protobuf even if date extension is not statically linked in php.
| * Replace private timelib_update_ts with public date_timestamp_getBo Yang2017-12-122-5/+31
| |
| * Add PROTOBUF_ENABLE_TIMESTAMP to let user decide whether timestamp utilBo Yang2017-12-122-2/+13
| | | | | | | | can be used at install time.