aboutsummaryrefslogtreecommitdiffstats
path: root/php
Commit message (Collapse)AuthorAgeFilesLines
* Update protobuf version (#6472)Paul Yang2019-08-052-5/+19
|
* Update protobuf version (#6366)Paul Yang2019-07-112-6/+20
|
* Set oneof case in array constructor (#6351)Paul Yang2019-07-084-2/+9
| | | Forgot to set it previously.
* Revert "Make php message class final to avoid mocking (#6277)" (#6324)Paul Yang2019-07-0127-27/+27
| | | | | | This reverts commit 7f84a943667358a53bd5d255ee9769ca83e75cd9. This is just temporary. Eventually, we still want to roll forward this change. Some users are complaining they need more time to clean up their code.
* Merge branch 'master' into 3.9.xBo Yang2019-06-2132-150/+139
|\ | | | | | | | | | | Conflicts: java/lite/pom.xml java/util/pom.xml
| * Rename get/setXXXValue to get/setXXXUnwrapped (#6295)Paul Yang2019-06-211-44/+44
| |
| * Merge remote-tracking branch 'origin/3.8.x'Bo Yang2019-06-213-61/+29
| |\
| | * Revert "Append field number to accessors if there is conflict (#6169)" (#6282)Paul Yang2019-06-202-49/+0
| | | | | | | | | This reverts commit 9a8ef05a34dab7583b6f253daca294d6b1bfb187.
| | * Change int64 json encoding to be string for php and ruby (#6251)Paul Yang2019-06-171-12/+29
| | | | | | | | | | | | | | | | | | | | | | | | * Change int64 json encoding to be string for php and ruby * Fix ruby test * Sync upb change
| * | Make php message class final to avoid mocking (#6277)Paul Yang2019-06-1827-27/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Make php message class final Because proto messages are just data object, they should not be mocked. Explicitly make them final to avoid accidental usage. * Update generated descriptors
| * | php: Fix formatting of Duration (#6155)Leonard Hecker2019-06-182-10/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * php: Fixed php notices for unknown enum indices * php: Fixed formatting of Duration This fixes: * Missing nanoseconds. The nanoseconds where divided as a float and implicitly converted to a string before being passed to bcadd. This can result in a float formatted in scientific/exponential notation, which bcmath doesn't understand. * Durations are supposed to be formatted without trailing zeroes.
* | | Update version to 3.9.0Hao Nguyen2019-06-172-7/+21
|/ /
* | Merge branch '3.8.x' into 3.8.x-201905311515Hao Nguyen2019-05-316-7/+127
|\|
| * Merge pull request #6160 from haon4/3.8.x-20190521140707Hao Nguyen2019-05-242-6/+20
| |\ | | | | | | Update protobuf version to 3.8.0
| | * Update protobuf versionHao Nguyen2019-05-212-6/+20
| | |
| * | Add use_nested to internalAddGeneratedFile for php implementation (#6117)Paul Yang2019-05-241-1/+1
| | |
| * | Append field number to accessors if there is conflict (#6169)Paul Yang2019-05-242-0/+49
| |/ | | | | Previously, foo_value and foo (wrapper field) will both have get/setFooValue
| * Revert "Revert "Add new file to package.xml (#6116)""Hao Nguyen2019-05-211-0/+1
| | | | | | | | | | This reverts commit 783971e872c210140daaf15a6ce21628106dd210. Revert an accidental revert!
| * Revert "Update protobuf version"Hao Nguyen2019-05-212-20/+6
| | | | | | | | This reverts commit 6d96493b3147a0f253f7eef2447785e19361afe3.
| * Revert "Add new file to package.xml (#6116)"Hao Nguyen2019-05-211-1/+0
| | | | | | | | This reverts commit c40018e52dce3757a1f586ebe27755cb27aa3ba3.
| * Update protobuf versionHao Nguyen2019-05-212-6/+20
| |
| * Add new file to package.xml (#6116)Paul Yang2019-05-171-0/+1
| |
| * Custom mktime to fix issue on mac (#6118)Paul Yang2019-05-091-1/+43
| | | | | | | | | | | | * Custom mktime to fix issue on mac * Remove succeeded tests from failure list
| * Update version to 3.8.0Hao Nguyen2019-04-232-7/+21
| |
* | Update generated filesHao Nguyen2019-05-211-0/+14
| |
* | Update php/release.sh to be executable and create a new branch for the new ↵Hao Nguyen2019-05-061-1/+1
|/ | | | version
* Update generated proto and remove a test from failure_listHao Nguyen2019-04-101-8/+8
|
* Sync latest upb changesBo Yang2019-03-272-2/+9
|
* Merge branch '3.7.x' into merge-3-7-xAdam Cozzette2019-03-2633-343/+463
|\
| * Update version number to 3.7.1 (#5947)Paul Yang2019-03-262-5/+19
| | | | | | | | | | | | * Update version number to 3.7.1 * Update version number in port_def.inc
| * Allow bytes field to be longer than 16000 bytes (#5924)Paul Yang2019-03-252-3/+24
| | | | | | | | | | | | * Allow bytes field to be longer than 16000 bytes * Remove empty line
| * Replace strptime with custom implementation (#5906)Paul Yang2019-03-192-737/+1744
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Replace strptime with custom implementation * Fix ruby strptime * Fix test * Fix ruby conformance test * Use mktime * Remove EmptyFieldMask from failed conformance test list
| * Add terminating character to zend_lookup_class call (#5871) (#5885)David Supplee2019-03-134-7/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | * add terminating character * adjust name length input * add test cases * correct script name * Misc fixes * add new script to EXTRA_DIST list
| * Remove GPBWrapperUtil from generated code (#5880)Paul Yang2019-03-1227-27/+0
| | | | | | | | | | | | * Remove GPBWrapperUtil from generated code * Add newline
| * Parse nested listvalue in json for ruby (#5867)Paul Yang2019-03-122-2/+21
| | | | | | | | | | | | | | | | * Add conformance test for nested listvalue * Fix upb for parsing repeated Value/ListValue * Add failed repeated ListValue conformance test into php failure list
* | Fix "the the".Benjamin Peterson2019-03-251-1/+1
| |
* | Add terminating character to zend_lookup_class call (#5871)David Supplee2019-03-124-7/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * add terminating character * adjust name length input * add test cases * correct script name * Misc fixes * add new script to EXTRA_DIST list
* | PHP updates for new upb APIs (#5604)Joshua Haberman2019-03-068-12554/+6719
| |
* | Merge branch '3.7.x'Bo Yang2019-03-049-89/+229
|\|
| * Update version number to 3.7.0 (#5793)Paul Yang2019-02-282-6/+20
| | | | | | | | | | | | | | | | * Update version number to 3.7.0 * Add php/releash.sh to Makefile.am * Make cpp_distcheck exit on fail
| * Add a script to mirror php changes to protobuf-php (#5778)Paul Yang2019-02-261-0/+37
| | | | | | | | | | | | * Add a script to mirror php changes to protobuf-php * Create tag
| * Date and time need to be before version (#5777)Paul Yang2019-02-251-2/+2
| |
| * Update version to 3.7.0rc3Bo Yang2019-02-222-11/+11
| |
| * Update version to 3.7.0 (#5749)Paul Yang2019-02-192-6/+20
| | | | | | | | | | | | * Update version to 3.7.0 * Update version number for java bom
| * PHP: Exclude repeated and map fields from normalization in constructor (#5723)michaelbausor2019-02-154-13/+240
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
| * Fix oneof message in array constructor (#5727)Paul Yang2019-02-142-8/+34
| |
| * RC release should use beta for api version (#5695)Paul Yang2019-02-071-2/+2
| |
| * Update php version number to 3.7.0RC2 (#5666)Paul Yang2019-02-012-6/+6
| | | | | | | | | | | | * Update php version number to 3.7.0RC2 * Update version number in source code
| * Updated version to 3.7.0rc2Adam Cozzette2019-01-301-2/+2
| |
| * Convert integer to string if field is string field in jsonBo Yang2019-01-282-0/+13
| | | | | | | | | | | | | | | | | | 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.