aboutsummaryrefslogtreecommitdiff
path: root/php
Commit message (Collapse)AuthorAgeFilesLines
* Add file option php_metadata_namespace and ruby_package (#4609)Paul Yang2018-05-112-0/+92
|
* Throw error if user want to access message properties (#4603)Paul Yang2018-05-102-2/+8
| | | | | | * Throw error if user want to access message properties * Fix typo
* Avoid direct check of class name (#4601)Paul Yang2018-05-101-7/+3
| | | | | | | | * 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)Petar Dambovaliev2018-04-301-1/+1
| | | | 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)urfinjuezz2018-04-091-1/+1
|
* includes the expected class in the exception, otherwise the error is harder ↵Brent Shaffer2018-04-091-1/+1
| | | | to track down (#3371)
* Merge branch (#4466)Paul Yang2018-04-022-4/+20
| | | | | | | | * 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)Paul Yang2018-03-082-195/+2783
|
* Convert descriptortype to type for upb_msgval_sizeof (#4357)Paul Yang2018-03-061-1/+1
|
* For encoding upb needs descriptor type instead of type. (#4354)Paul Yang2018-03-062-13/+13
|
* PHP: fixed typo in message.cAdam Cozzette2018-03-051-1/+1
|
* Merge pull request #4291 from google/3.5.xJisi Liu2018-02-268-49/+177
|\ | | | | Merge 3.5.x to master
| * Fix more memory leak for php c extension (#4211)Paul Yang2018-01-256-19/+109
| | | | | | | | | | | | * Fix more memory leak for php c extension * Fix memory leak for php5.5
| * 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 remote-tracking branch 'origin/3.5.x' into masterJisi Liu2018-01-0310-30/+320
|\|
| * 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.
| * | Merge pull request #4028 from TeBoring/3.5.xPaul Yang2017-12-121-1/+1
| |\ \ | | |/ | |/| Add backslach to make class explict in global namespace
| | * Add backslach to make class explict in global namespaceBo Yang2017-12-111-1/+1
| | |
| * | Merge branch '3.5.0.1' into 3.5.xBo Yang2017-12-116-7/+66
| |\ \ | | |/ | |/|
| | * Add release logv3.5.0.1Bo Yang2017-12-061-0/+16
| | |
| | * Update php c extension version number to 3.5.0.1Bo Yang2017-12-062-4/+4
| | |
| | * Fix memory leak in php7Bo Yang2017-12-063-5/+11
| | |
| | * Fix several more memory leakBo Yang2017-12-064-6/+27
| | |
| | * Fix memory leak when creating map field via array.Bo Yang2017-12-062-2/+6
| | |
| | * Fix memory leak when creating repeated field via array.Bo Yang2017-12-062-2/+6
| | |
| | * Remove duplicate typedef. (#3975)Paul Yang2017-12-061-19/+7
| | |
| * | Recursively clear unknown fields in submessages. (#3982)Paul Yang2017-12-073-4/+159
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
| * | Fix memory leak when creating map field via array.Bo Yang2017-12-042-2/+6
| | |
| * | Fix memory leak when creating repeated field via array.Bo Yang2017-12-012-2/+6
| | |
* | | Merge branch '3.5.x' into 3.5.x-mergeAdam Cozzette2017-11-307-32/+63
|\| |
| * | Remove duplicate typedef. (#3975)Paul Yang2017-11-301-19/+7
| | |
| * | Provide discardUnknonwnFields API in php (#3976)Paul Yang2017-11-305-0/+27
| | | | | | | | | | | | | | | | | | * Provide discardUnknownFields API in php implementation * Provide discardUnknownFields API in php c extension.
| * | Update version number for php c extension (#3896)Paul Yang2017-11-152-4/+20
| | |
| * | Use fully qualifed name for DescriptorPool in Any.php to avoid name (#3886)Paul Yang2017-11-151-4/+3
| |/ | | | | conflict
| * All integer types should accept null in json. (#3869)Paul Yang2017-11-131-5/+6
| |
| * Fix php well known type conformance tests (#3828) (#3840)Paul Yang2017-11-047-49/+508
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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 README.md: C extension works on PHP 7 (#3888)Issac Trotts2017-11-151-1/+1
| | | | | | Here's the pull request that made it happen: https://github.com/google/protobuf/pull/2951
* | Fix php well known type conformance tests (#3828)Paul Yang2017-11-037-49/+508
|/ | | | | | | | | | | | | | | | * 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 urlxuwei-k2017-10-301-1/+1
|
* Update descriptor protosJisi Liu2017-10-181-3/+6
|
* Merge remote-tracking branch 'origin/3.4.x' into masterJisi Liu2017-10-1114-21/+1205
|\
| * Merge pull request #3612 from TeBoring/php-bugPaul Yang2017-09-1511-16/+1011
| |\ | | | | | | Add prefix to php reserved keywords.
| | * Exclude valid constant name from reserved name.Bo Yang2017-09-126-223/+600
| | |
| | * Change array to map for reserved names in c extensionBo Yang2017-09-113-24/+69
| | |