- 26 Mar, 2019 1 commit
-
-
Paul Yang authored
* Update version number to 3.7.1 * Update version number in port_def.inc
-
- 25 Mar, 2019 1 commit
-
-
Paul Yang authored
* Allow bytes field to be longer than 16000 bytes * Remove empty line
-
- 20 Mar, 2019 1 commit
-
-
Paul Yang authored
* Replace strptime with custom implementation * Fix ruby strptime * Fix test * Fix ruby conformance test * Use mktime * Remove EmptyFieldMask from failed conformance test list
-
- 13 Mar, 2019 2 commits
-
-
David Supplee authored
* add terminating character * adjust name length input * add test cases * correct script name * Misc fixes * add new script to EXTRA_DIST list
-
Paul Yang authored
* Remove GPBWrapperUtil from generated code * Add newline
-
- 12 Mar, 2019 1 commit
-
-
Paul Yang authored
* Add conformance test for nested listvalue * Fix upb for parsing repeated Value/ListValue * Add failed repeated ListValue conformance test into php failure list
-
- 28 Feb, 2019 1 commit
-
-
Paul Yang authored
* Update version number to 3.7.0 * Add php/releash.sh to Makefile.am * Make cpp_distcheck exit on fail
-
- 26 Feb, 2019 1 commit
-
-
Paul Yang authored
* Add a script to mirror php changes to protobuf-php * Create tag
-
- 25 Feb, 2019 1 commit
-
-
Paul Yang authored
-
- 22 Feb, 2019 1 commit
-
-
Bo Yang authored
-
- 19 Feb, 2019 1 commit
-
-
Paul Yang authored
* Update version to 3.7.0 * Update version number for java bom
-
- 16 Feb, 2019 1 commit
-
-
michaelbausor authored
* Exclude repeated and map fields from normalization * Remove erroneous comments * Remove unnecessary check for map type * Add support for repeated/map fields, add tests * Fix wrapper message in repeated/map fields in array constructor * Address PR comments * Removed unused code * Update docs
-
- 14 Feb, 2019 1 commit
-
-
Paul Yang authored
-
- 07 Feb, 2019 1 commit
-
-
Paul Yang authored
-
- 01 Feb, 2019 1 commit
-
-
Paul Yang authored
* Update php version number to 3.7.0RC2 * Update version number in source code
-
- 31 Jan, 2019 1 commit
-
-
Adam Cozzette authored
-
- 28 Jan, 2019 2 commits
-
-
Bo Yang authored
json_decode automatically convert numeric string to integer, so that we need to convert it back. However, this will suceed to parse invalid json data with string field set as integer even though it should have failed. Because, the failure case is less often than the succeeding case, we decided to make this change. Users should make sure their data don't use integer for string fields by themselves.
-
Paul Yang authored
-
- 25 Jan, 2019 1 commit
-
-
Paul Yang authored
Previously, internalAddGeneratedFile has to depend on old non-nested name for sub-messages. This creates a hard dependency on old generated code for compatibility usage. If user's code has custome error handler, the deprecation warning in the old generated code will also be thrown (even though users haven't explicitly depended on the old message name). To fix this problem, this change added an additional flag in the generated code to tell run time that it's safe to use new message name. In this way, internalAddGeneratedFile can safely depend on new name and don't trigger unnecessary deprecation warning.
-
- 24 Jan, 2019 1 commit
-
-
Hao Nguyen authored
-
- 23 Jan, 2019 1 commit
-
-
Paul Yang authored
* Fix more issues for reference values * Revert change in gdb test * Add more tests
-
- 22 Jan, 2019 2 commits
- 18 Jan, 2019 1 commit
-
-
Joshua Haberman authored
* Fixed compile warnings for PHP extension. * Fixed some compile errors on PHP <7 and with TSR enabled. * One more fix for TSRM builds.
-
- 17 Jan, 2019 1 commit
-
-
Paul Yang authored
* Fix field mask for php in json * Update byte size
-
- 12 Jan, 2019 1 commit
-
-
Nicolás Elliott authored
Added a few \ on the comments to match the exceptions scope when is referenced while in a namespace. So the IDEs can be happy.
-
- 08 Jan, 2019 1 commit
-
-
Paul Yang authored
* Fix Empty ListValue/Struct json encoding * Add test for empty ListValue
-
- 26 Dec, 2018 1 commit
-
-
Paul Yang authored
* Fix Any json encoding/decoding in php * Fix comments
-
- 18 Dec, 2018 1 commit
-
-
Paul Yang authored
* Inherit from message instead of implement When regestering class (implmenets other class) during MINIT, zend_class_implements would call zend_class_entry->interface_gets_implemented(). In PHP-7.3 interface_gets_implemented shares the same location with create_object. However, during MINIT, the global object storeage hasn't been initialized. And thus, caused segment fault in php 7.3. * Use zend_string_init where interned string may be the value. zend_string_dup will keep using the existing interned string. In php 7.3, interned string cannot be destroyed from user's code. * Uncommment debug code * Use latest phpunit for each php versions * Revert change in Dockerfile * Update php test to use the new docker image * Update composer * Change docker organization * Update phpunit * Debug phpunit * Store phpunit into bin dir in docker image * Install valgrind to docker * Fix compatibility test * Remove generated_service_test from compatibility c extension test * Update 32bit php test to the new docker image * Install bison * Fix build.sh * Fix DOCKERIMAGE_PREFIX * Fix basename * Add comment to build_and_run_docker2.sh * Remove commented code * Fix comments
-
- 15 Dec, 2018 1 commit
-
-
Paul Yang authored
* Down-integrate internal changes * Update generated code for php, objc and csharp. * Add missing dependency in conformance_php
-
- 14 Dec, 2018 1 commit
-
-
Hao Nguyen authored
Replace update_version shell script with a python script, which is much better at handling XML rewrite. Update the PHP version too. As part of rewrite, some XML file format will change a little, but the semantics is still the same so it should be okay.
-
- 29 Nov, 2018 1 commit
-
-
michaelbausor authored
* adds string-to-int and int-to-string methods to enums * remove check for valueToName property in EnumTrait * Remove unused imports * Update to avoid using EnumTrait * Remove EnumTrait * Update enum types * Move name and value methods into generated classes * Remove functions from GPBUtil * Test well known enums * Implement enum value to/from name in c extension * Only generate use statement when namespace is present
-
- 09 Nov, 2018 1 commit
-
-
Adam Cozzette authored
-
- 12 Oct, 2018 1 commit
-
-
Paul Yang authored
-
- 07 Oct, 2018 1 commit
-
-
michaelbausor authored
* Add support for primitive types in setters * Update to address PR feedback * Add tests and fixes for repeated fields * Remove repeated field code, add getters * Cleanup, test getters and oneofs * Move boxing logic into separate class * Add tests for wrapper type constructor args * Update to add new setXXXValue methods * Fix tests for invalid values * Fix c extension for wrapper accessors * Fix the bug that well known types didn't call Message_construct * Address PR comments * Refactoring init message with array logic * Add include path to protoc * Add missing TSRM_LS defintion * Fix TSRM_LS * Fix dist check
-
- 23 Sep, 2018 1 commit
-
-
Paul Yang authored
* Adopt upb change for timestamp and duration json to php * Remove unused code * Re-sync upb * Fix php implementation timestamp json parsing * Fix strptime use local timezone on mac. * Remove succeeding tests * Resync * Add tests for values * Fix php tests * Fix encoder handlers change default value Previously, oneofsubmsg_handler and submsg_handler change zval's default value directly. The fix use REPLACE_ZVAL_VALUE which create a copy of parsed value and assign it to zval.
-
- 31 Aug, 2018 1 commit
-
-
Paul Yang authored
* Fix well known type class not inheriting Message Previously, well known types only implement Message interface but not inhert it. Fix the problem by calling zend_do_inheritance * Add back commented tests
-
- 22 Aug, 2018 1 commit
-
-
Feng Xiao authored
-
- 10 Aug, 2018 1 commit
-
-
Bo Yang authored
-
- 09 Aug, 2018 1 commit
-
-
Feng Xiao authored
-