aboutsummaryrefslogtreecommitdiffhomepage
path: root/php
Commit message (Collapse)AuthorAge
* Add file option php_metadata_namespace and ruby_package (#4609)Gravatar Paul Yang2018-05-11
|
* Throw error if user want to access message properties (#4603)Gravatar Paul Yang2018-05-10
| | | | | | * Throw error if user want to access message properties * Fix typo
* Avoid direct check of class name (#4601)Gravatar Paul Yang2018-05-10
| | | | | | | | * Avoid direct check of class name So that subclasses are also ok * Use type hint in function signature.
* Add space between class name and concat message (#4577)Gravatar Petar Dambovaliev2018-04-30
| | | | The class name was linked to the next word in the sentence. "User\UserRequestis not found in descriptor pool."
* fix json_decode call parameters (#4381)Gravatar urfinjuezz2018-04-09
|
* includes the expected class in the exception, otherwise the error is harder ↵Gravatar Brent Shaffer2018-04-09
| | | | to track down (#3371)
* Merge branch (#4466)Gravatar Paul Yang2018-04-02
| | | | | | | | * Fix setup.py for windows build. * Bump version number to 3.5.2 * Cat the test-suite.log on errors for presubits
* Sync upb change (#4373)Gravatar Paul Yang2018-03-08
|
* Convert descriptortype to type for upb_msgval_sizeof (#4357)Gravatar Paul Yang2018-03-06
|
* For encoding upb needs descriptor type instead of type. (#4354)Gravatar Paul Yang2018-03-06
|
* PHP: fixed typo in message.cGravatar Adam Cozzette2018-03-05
|
* Merge pull request #4291 from google/3.5.xGravatar Jisi Liu2018-02-26
|\ | | | | Merge 3.5.x to master
| * Fix more memory leak for php c extension (#4211)Gravatar Paul Yang2018-01-25
| | | | | | | | | | | | * Fix more memory leak for php c extension * Fix memory leak for php5.5
| * Well known types are not initialized properly. (#4139)Gravatar Paul Yang2018-01-05
| | | | | | | | | | | | | | | | | | 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 remote-tracking branch 'origin/3.5.x' into masterGravatar Jisi Liu2018-01-03
|\|
| * Merge pull request #4034 from TeBoring/php-timestamp-bugGravatar Paul Yang2017-12-15
| |\ | | | | | | Avoid calling method from php extension directly
| | * Fix for php5.5Gravatar Bo Yang2017-12-14
| | |
| | * Accept DatetimeInterface in fromDatetimeGravatar Bo Yang2017-12-14
| | |
| | * Avoid using php_date_get_date_ce() in case date extension is notGravatar Bo Yang2017-12-13
| | | | | | | | | | | | available.
| | * Call php method via function name instead of calling directly.Gravatar Bo Yang2017-12-12
| | | | | | | | | | | | | | | | | | | | | 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.
| * | Merge pull request #4028 from TeBoring/3.5.xGravatar Paul Yang2017-12-12
| |\ \ | | | | | | | | Add backslach to make class explict in global namespace
| | | * Replace private timelib_update_ts with public date_timestamp_getGravatar Bo Yang2017-12-12
| | | |
| | | * Add PROTOBUF_ENABLE_TIMESTAMP to let user decide whether timestamp utilGravatar Bo Yang2017-12-12
| | |/ | |/| | | | | | | can be used at install time.
| | * Add backslach to make class explict in global namespaceGravatar Bo Yang2017-12-11
| | |
| * | Merge branch '3.5.0.1' into 3.5.xGravatar Bo Yang2017-12-11
| |\ \ | | |/ | |/|
| * | Recursively clear unknown fields in submessages. (#3982)Gravatar Paul Yang2017-12-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Recursively clear unknown fields in submessages. * Recursively discard unknown fields in submsg for c extension * Fix zts build * Add comment for tests * Add a TODO to add a util for encoding varint for better readability. * Add test for oneof message field.
| | * Add release logGravatar Bo Yang2017-12-06
| | |
| | * Update php c extension version number to 3.5.0.1Gravatar Bo Yang2017-12-06
| | |
| | * Fix memory leak in php7Gravatar Bo Yang2017-12-06
| | |
| | * Fix several more memory leakGravatar Bo Yang2017-12-06
| | |
| | * Fix memory leak when creating map field via array.Gravatar Bo Yang2017-12-06
| | |
| | * Fix memory leak when creating repeated field via array.Gravatar Bo Yang2017-12-06
| | |
| | * Remove duplicate typedef. (#3975)Gravatar Paul Yang2017-12-06
| | |
| * | Fix memory leak when creating map field via array.Gravatar Bo Yang2017-12-04
| | |
| * | Fix memory leak when creating repeated field via array.Gravatar Bo Yang2017-12-01
| | |
* | | Merge branch '3.5.x' into 3.5.x-mergeGravatar Adam Cozzette2017-11-30
|\| |
| * | Remove duplicate typedef. (#3975)Gravatar Paul Yang2017-11-30
| | |
| * | Provide discardUnknonwnFields API in php (#3976)Gravatar Paul Yang2017-11-30
| | | | | | | | | | | | | | | | | | * Provide discardUnknownFields API in php implementation * Provide discardUnknownFields API in php c extension.
| * | Update version number for php c extension (#3896)Gravatar Paul Yang2017-11-15
| | |
| * | Use fully qualifed name for DescriptorPool in Any.php to avoid name (#3886)Gravatar Paul Yang2017-11-15
| |/ | | | | conflict
* | Update README.md: C extension works on PHP 7 (#3888)Gravatar Issac Trotts2017-11-15
| | | | | | Here's the pull request that made it happen: https://github.com/google/protobuf/pull/2951
| * All integer types should accept null in json. (#3869)Gravatar Paul Yang2017-11-13
| |
| * Fix php well known type conformance tests (#3828) (#3840)Gravatar Paul Yang2017-11-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix php well known type conformance tests * Properly generate code for test.proto * Provide GPBMetadata files in c extensions for generated files to import. * Remove unnecessary test * Clean up code * Add declaration for initOnce. * Refactoring
* | Fix php well known type conformance tests (#3828)Gravatar Paul Yang2017-11-03
|/ | | | | | | | | | | | | | | | * Fix php well known type conformance tests * Properly generate code for test.proto * Provide GPBMetadata files in c extensions for generated files to import. * Remove unnecessary test * Clean up code * Add declaration for initOnce. * Refactoring
* update joda-time javadoc urlGravatar xuwei-k2017-10-30
|
* Update descriptor protosGravatar Jisi Liu2017-10-18
|
* Merge remote-tracking branch 'origin/3.4.x' into masterGravatar Jisi Liu2017-10-11
|\
* | Reserve unknown fields in php (#3659)Gravatar Paul Yang2017-10-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Reserve unknown fields in upb 1) For decoding, an unknownfields will be lazily created on message, which contains bytes of unknown fields. 2) For encoding, if the unknownfields is present on message, all bytes contained in it will be serialized. * Register the function to encode unknown field at decode time. * Remove upb_handlers_setaddunknown * Use upb_sink_putunknown in decoder * Remove upb_pb_encoder_encode_unknown * Do not expose encode_unknown * Implement reserve unknown field in php Implement. * Make buffer private to CodedInputStream
* | Add well known types to php runtime. (#3697)Gravatar Paul Yang2017-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add well known types to php runtime. * Fix php7.0 tests * No longer generate empty.proto in test as it has been included in runtime. * Fix zts build * Clean code * Rename g_p_b_empty to empty. * Don't generate code for empty.proto in compatibility test * Fix 32-bit * Fix mac build * Fix Makefile.am to add new files
* | Enforce all error report for php tests. (#3670)Gravatar Paul Yang2017-09-22
| | | | | | | | | | | | * Enforce all error report for php tests. * Import vendor/autoload.php in tests/bootstrap_phpunit.php