aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Added well_known_types_embed.cc to CLEANFILES so that it gets cleaned upAdam Cozzette2016-12-211-1/+2
|
* maps_test.js: check whether Symbol is defined before using it (#2524)Adam Cozzette2016-12-211-6/+3
| | | | | Symbol is not yet available on older versions of Node.js and so this test fails with them. This change just directly checks whether Symbol is available before we try to use it.
* Update _GNUC_VER to use the correct implementation of atomic operationBo Yang2016-12-211-0/+1
| | | | on Mac.
* Explicitly import used class in nano test to avoid random test fail.Bo Yang2016-12-201-1/+4
|
* Update conformance test failure list.Bo Yang2016-12-203-1025/+0
|
* Down-integrate internal changes to github.Bo Yang2016-12-19112-3044/+5638
|\
| * Down-integrate internal changes to github.Bo Yang2016-12-19114-3052/+5658
| |
* | Merge pull request #2517 from acozzette/js-embedAdam Cozzette2016-12-196-325/+35
|\ \ | | | | | | Auto-generate well_known_types_embed.cc
| * | Fixed "make check" for cmake buildAdam Cozzette2016-12-191-0/+1
| | | | | | | | | | | | | | | | | | | | | The check target did not depend on the test_plugin binary, so this would cause "make check" to fail at times because of the absence of test_plugin. This change adds a dependency on test_plugin so that it will always get built before the tests are executed.
| * | Auto-generate well_known_types_embed.ccAdam Cozzette2016-12-195-325/+34
|/ / | | | | | | | | | | | | Until now this file was just checked into the repo, but actually it should be generated from any.js, struct.js, and timestamp.js. This change updates the build system to make this happen. To make it work I also had to remove some C++11 features from embed.cc.
* | Merge pull request #2227 from KindDragon/3.1.xFeng Xiao2016-12-164-41/+43
|\ \ | | | | | | Missed LIBPROTOC_EXPORT for GRPC added
| * | LIBPROTOC_EXPORT added to others functions in csharp_names.h and ↵Arkadiy Shapkin2016-12-012-33/+33
| | | | | | | | | | | | objectivec_helpers.h
| * | Missed LIBPROTOC_EXPORT for GRPC addedArkadiy Shapkin2016-12-014-8/+10
| | |
* | | Give C# ByteString a sensible GetHashCode implementation.Jon Skeet2016-12-162-1/+14
| | | | | | | | | | | | Fixes #2511.
* | | Merge pull request #2499 from ckennelly/masterAdam Cozzette2016-12-152-2/+11
|\ \ \ | | | | | | | | Define LANG_CXX11 for port.h and use this to guard C++11 features.
| * | | Define LANG_CXX11 for port.h and use this to guard C++11 features.Chris Kennelly2016-12-142-2/+11
|/ / /
* | | Merge pull request #2495 from acozzette/android-hashAdam Cozzette2016-12-142-9/+3
|\ \ \ | | | | | | | | Removed Android-specific code from stubs/hash.h
| * | | Removed Android-specific code from stubs/hash.hAdam Cozzette2016-12-132-9/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This #ifdef in hash.h causes us to give up on finding a hash function on Android, when there do seem to be hash functions available in practice. I also had to tweak a macro in map.h that was disabling on Android an allocator construct() method that we need.
* | | | Merge pull request #2498 from sergiocampama/enumThomas Van Lenten2016-12-141-1/+5
|\ \ \ \ | | | | | | | | | | Fixes and expands comments on how to use GPB_ENUM_FWD_DECLARE
| * | | | Fixes and expands comments on how to use GPB_ENUM_FWD_DECLARESergio Campama2016-12-141-1/+5
|/ / / /
* | | | Added conformance testing for binary primitive types. (#2491)Joshua Haberman2016-12-132-37/+162
| | | | | | | | | | | | This is basic and more tests will be added over time.
* | | | Merge pull request #2496 from xyzzyz/fix-overflowFeng Xiao2016-12-131-1/+1
|\ \ \ \ | | | | | | | | | | Fix integer overflow in FastUInt32ToBufferLeft
| * | | | Fix integer overflow in FastUInt32ToBufferLeftAdam Michalik2016-12-131-1/+1
| |/ / / | | | | | | | | | | | | | | | | If digits > 2, and int is 32 bit, line 999 overflows. It has been fixed internally in CL 41203823.
* | | | Merge pull request #2493 from jbrianceau/add-missing-climits-includeFeng Xiao2016-12-133-0/+3
|\ \ \ \ | | | | | | | | | | Add missing includes
| * | | | Add missing include in embed.ccJulien Brianceau2016-12-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | This changes fixes "error C2039: 'getline': is not a member of 'std'" compilation error.
| * | | | Add missing includesJulien Brianceau2016-12-132-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | This changes fixes "use of undeclared identifier 'INT_MAX'" compilation error.
* | | | | Merge pull request #2484 from ngg/uwp_buildFeng Xiao2016-12-1316-94/+95
|\ \ \ \ \ | |_|/ / / |/| | | | Add support for Windows ARM builds
| * | | | Add support for Windows ARM buildsGergely Nagy2016-12-1216-94/+95
| | | | |
* | | | | Merge pull request #2487 from jtattermusch/csharp_leading_whitespaceJan Tattermusch2016-12-1319-1059/+1059
|\ \ \ \ \ | |_|/ / / |/| | | | remove leading whitespace in C# xml comments
| * | | | remove leading whitespace in C# xml commentsJan Tattermusch2016-12-1219-1059/+1059
| | | | |
* | | | | Merge pull request #2471 from jbrianceau/fix-include-styleFeng Xiao2016-12-123-3/+3
|\ \ \ \ \ | | | | | | | | | | | | Fix #include in cc files
| * | | | | Fix #include in cc filesJulien Brianceau2016-12-093-3/+3
| | | | | |
* | | | | | Merge pull request #2490 from xfxyjwf/icon2Jisi Liu2016-12-121-1/+1
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | Add a badge for bazel build status.
| * | | | | Add a badge for bazel build status.Feng Xiao2016-12-121-1/+1
|/ / / / /
* | | | | Merge pull request #2454 from pongad/go_packageFeng Xiao2016-12-123-8/+10
|\ \ \ \ \ | |_|/ / / |/| | | | update descriptor.proto's go_package
| * | | | update descriptor.proto's go_packageMichael Darakananda2016-12-073-8/+10
| | |_|/ | |/| | | | | | | | | | | | | | This change has already been made in google's repo. Replicating the change here to unblock work on genproto.
* | | | generate_changelog.py: flush output so piping works correctly.Josh Haberman2016-12-091-0/+1
| | | |
* | | | Merge pull request #2476 from acozzette/generated-message-reflection-fixAdam Cozzette2016-12-091-4/+4
|\ \ \ \ | | | | | | | | | | Use uint32 in GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET macro
| * | | | Use uint32 in GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET macroAdam Cozzette2016-12-091-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There have been some reports that this necessary to prevent build failures in some environments. It makes sense to do this anyway since the result of this macro is ultimately assigned to uint32 in the generated code.
* | | | | Merge pull request #2475 from sergiocampama/rvm2Thomas Van Lenten2016-12-092-13/+0
|\ \ \ \ \ | |/ / / / |/| | | | Reenable cocoapods objc test and remove unnecessary workaround for rvm
| * | | | Reenable cocoapods objc test and remove unnecessary workaround for rvmSergio Campama2016-12-092-13/+0
|/ / / /
* | | | Merge pull request #2473 from thomasvl/update_xcodesThomas Van Lenten2016-12-093-10/+43
|\ \ \ \ | |_|/ / |/| | | Update xcode version support and travis usage
| * | | Mark objectivec_cocoapods_integration as failingThomas Van Lenten2016-12-091-0/+4
| | | |
| * | | Skip benchmark test if cmake isn't installed.Thomas Van Lenten2016-12-091-5/+15
| | | |
| * | | Xcode 8.1 supportThomas Van Lenten2016-12-093-6/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add entries to objectivec/DevTools/full_mac_build.sh - Support `-quiet` via an option on full_mac_build.sh. NOTE: we don't use this on travis because the lack of output for a long time could cause travis to kill the build (when we get a slow VM). - Update travis config to use newer images.
* | | | Merge pull request #2468 from sergei-ivanov/patch-1Feng Xiao2016-12-081-2/+2
|\ \ \ \ | | | | | | | | | | Update third_party.md
| * | | | Update third_party.mdSergei Ivanov2016-12-091-2/+2
| | | | | | | | | | | | | | | Updated the location for `protobuf-maven-plugin`
* | | | | Disable jruby test. (#2469)Paul Yang2016-12-081-1/+1
|/ / / / | | | | | | | | Missed in #2467.
* | | | Update commit id in Dockerfile to trigger update. (#2467)Paul Yang2016-12-084-9/+16
| | | |
* | | | Merge pull request #2462 from jbrianceau/fix-comp-builds-part2Feng Xiao2016-12-0813-91/+94
|\ \ \ \ | | | | | | | | | | C++: export _xxx_default_instance_ symbols