Commit graph

4300 commits

Author SHA1 Message Date
Paul Yang
5750146bd6 Update version number to 3.2.0-rc.1 (#2578) 2017-01-11 21:56:54 +00:00
Bo Yang
4447637bf7 Remove redundent embed.cc from src/Makefile.am 2017-01-10 13:20:16 -08:00
Adam Cozzette
790fc9387c Fixed "make distcheck" for the Autotools build
To make the test pass I needed to fix out-of-tree builds and update
EXTRA_DIST and CLEANFILES.
2017-01-10 13:18:47 -08:00
Bo Yang
531ebd9b94 Add embed.cc in src/Makefile.am to fix dist check. 2017-01-10 12:28:39 -08:00
Bo Yang
60d4f8af48 Decoding unknown field should succeed. 2017-01-10 11:00:23 -08:00
Bo Yang
e259b515a5 Fix generated code when there is no namespace but there is enum definition. 2017-01-10 01:02:35 +00:00
Marcus Longmuir
83fb8c7d29 Fix generation of extending nested messages in JavaScript (#2439)
* Fix generation of extending nested messages in JavaScript

* Added missing test8.proto to build
2017-01-09 11:45:52 -08:00
Thomas Van Lenten
64cbfab937 Minor fix for autocreated object repeated fields and maps.
- If setting/clearing a repeated field/map that was objects, check the class
  before checking the autocreator.
- Just to be paranoid, don’t mutate within copy/mutableCopy for the autocreated
  classes to ensure there is less chance of issues if someone does something
  really crazy threading wise.
- Some more tests for the internal AutocreatedArray/AutocreatedDictionary
  classes to ensure things are working as expected.
- Add Xcode 8.2 to the full_mac_build.sh supported list.
2017-01-09 11:43:17 -08:00
Adam Cozzette
77e434de36 Fixed cross compilations with the Autotools build
Pull request #2517 caused cross compilations to start failing, because
the js_embed binary was being built to run on the target platform
instead of on the build machine. This change updates the Autotools build
to use the AX_PROG_CXX_FOR_BUILD macro to find a suitable compiler for
the build machine and always use that when building js_embed.
2017-01-09 11:41:39 -08:00
Julien Brianceau
46dee43e25 Fix include in auto-generated well_known_types_embed.cc
Restore include style fix (e3da722) that has been trampled by
auto-generation of well_known_types_embed.cc
2017-01-09 11:41:02 -08:00
Julien Brianceau
a24ddc570f Fix warning in compiler/js/embed.cc
embed.cc: In function ‘std::string CEscape(const string&)’:
embed.cc:51:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < str.size(); ++i) {
                                ^
2017-01-09 11:39:55 -08:00
Bo Yang
d1fde361a7 Fix int64 decoding on 32-bit machines. 2017-01-09 18:37:54 +00:00
Sufir
c871ce6e7b PHP fix int64 decoding (#2516)
* fix int64 decoding

* fix int64 decoding + tests
2017-01-08 11:53:17 -08:00
Feng Xiao
911e84e706 Merge pull request #2550 from TeBoring/3.2.x
Bump version number to 3.2.0
2016-12-29 21:31:07 -08:00
NicklasWallgren
da9fea1d20 Fixed issue with autoloading - Invalid paths (#2538) 2016-12-28 13:35:11 -08:00
Bo Yang
f5cc1a54c5 Bump version number to 3.2.0 2016-12-28 13:12:18 -08:00
Bo Yang
e230283f75 Add new js file in extra dist. 2016-12-28 10:56:57 -08:00
Bo Yang
117f771641 Update _GNUC_VER to use the correct implementation of atomic operation on Mac. 2016-12-22 15:24:53 -08:00
Adam Cozzette
2f38ce1f98 Added Bazel genrule for generating well_known_types_embed.cc
In pull request #2517 I made this change for the CMake and autotools
builds but forgot to do it for the Bazel build.
2016-12-21 13:47:34 -08:00
Adam Cozzette
2d8a54477f Updated Makefile.am to fix out-of-tree builds 2016-12-21 13:47:24 -08:00
Adam Cozzette
f424c715e1 Added well_known_types_embed.cc to CLEANFILES so that it gets cleaned up 2016-12-21 13:47:09 -08:00
Adam Cozzette
c7cbf5fc37 maps_test.js: check whether Symbol is defined before using it (#2524)
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.
2016-12-21 13:45:49 -08:00
Bo Yang
e02ff1a194 Update _GNUC_VER to use the correct implementation of atomic operation
on Mac.
2016-12-21 13:19:46 -08:00
Bo Yang
cf502405fc Explicitly import used class in nano test to avoid random test fail. 2016-12-20 16:47:36 -08:00
Bo Yang
a9cdd803d6 Update conformance test failure list. 2016-12-20 12:57:03 -08:00
Bo Yang
9cb253f46e Down-integrate internal changes to github. 2016-12-19 16:04:00 -08:00
Bo Yang
199d82fde1 Down-integrate internal changes to github. 2016-12-19 16:00:01 -08:00
Adam Cozzette
fb15862bac Merge pull request #2517 from acozzette/js-embed
Auto-generate well_known_types_embed.cc
2016-12-19 14:49:11 -08:00
Adam Cozzette
98d89d4277 Fixed "make check" for cmake build
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.
2016-12-19 14:38:21 -08:00
Adam Cozzette
1b3a0c16e6 Auto-generate well_known_types_embed.cc
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.
2016-12-19 14:38:21 -08:00
Feng Xiao
f39cf88a34 Merge pull request #2227 from KindDragon/3.1.x
Missed LIBPROTOC_EXPORT for GRPC added
2016-12-16 10:56:36 -08:00
Jon Skeet
b18bc9b944 Give C# ByteString a sensible GetHashCode implementation.
Fixes #2511.
2016-12-16 12:04:40 +00:00
Adam Cozzette
a95e38ce8d Merge pull request #2499 from ckennelly/master
Define LANG_CXX11 for port.h and use this to guard C++11 features.
2016-12-15 13:15:22 -08:00
Chris Kennelly
a902e2588d Define LANG_CXX11 for port.h and use this to guard C++11 features. 2016-12-14 14:03:55 -08:00
Adam Cozzette
83d681ee2c Merge pull request #2495 from acozzette/android-hash
Removed Android-specific code from stubs/hash.h
2016-12-14 13:39:31 -08:00
Thomas Van Lenten
d1c1dad047 Merge pull request #2498 from sergiocampama/enum
Fixes and expands comments on how to use GPB_ENUM_FWD_DECLARE
2016-12-14 11:49:21 -05:00
Sergio Campama
c68fc589a9 Fixes and expands comments on how to use GPB_ENUM_FWD_DECLARE 2016-12-14 11:35:44 -05:00
Joshua Haberman
2ff42dcf2c Added conformance testing for binary primitive types. (#2491)
This is basic and more tests will be added over time.
2016-12-13 16:31:02 -08:00
Feng Xiao
f983302ca7 Merge pull request #2496 from xyzzyz/fix-overflow
Fix integer overflow in FastUInt32ToBufferLeft
2016-12-13 15:19:34 -08:00
Feng Xiao
837fd6b6a0 Merge pull request #2493 from jbrianceau/add-missing-climits-include
Add missing includes
2016-12-13 15:11:09 -08:00
Feng Xiao
f77b7d9ee3 Merge pull request #2484 from ngg/uwp_build
Add support for Windows ARM builds
2016-12-13 11:11:18 -08:00
Adam Michalik
4c5d3eddf9 Fix integer overflow in FastUInt32ToBufferLeft
If digits > 2, and int is 32 bit, line 999 overflows. It has been fixed
internally in CL 41203823.
2016-12-13 11:02:58 -08:00
Adam Cozzette
5587562a70 Removed Android-specific code from stubs/hash.h
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.
2016-12-13 11:00:12 -08:00
Julien Brianceau
7b220f3db5 Add missing include in embed.cc
This changes fixes "error C2039: 'getline': is not a member of 'std'"
compilation error.
2016-12-13 14:57:11 +01:00
Jan Tattermusch
9d709f446f Merge pull request #2487 from jtattermusch/csharp_leading_whitespace
remove leading whitespace in C# xml comments
2016-12-13 13:42:23 +01:00
Julien Brianceau
83c728a940 Add missing includes
This changes fixes "use of undeclared identifier 'INT_MAX'"
compilation error.
2016-12-13 10:09:11 +01:00
Feng Xiao
eb455ce1c9 Merge pull request #2471 from jbrianceau/fix-include-style
Fix #include in cc files
2016-12-12 16:27:16 -08:00
Jisi Liu
6b86a8922b Merge pull request #2490 from xfxyjwf/icon2
Add a badge for bazel build status.
2016-12-12 15:04:18 -08:00
Feng Xiao
4c252dd80b Add a badge for bazel build status. 2016-12-12 14:58:13 -08:00
Gergely Nagy
ec021f5429 Add support for Windows ARM builds 2016-12-12 23:04:09 +01:00