| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| | |
|
| |
|
| |
Forgot to set it previously.
|
| |
|
|
|
|
| |
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.
|
| |\
| |
| |
| |
| |
| | |
Conflicts:
java/lite/pom.xml
java/util/pom.xml
|
| | | |
|
| | |\ |
|
| | | |
| | |
| | | |
This reverts commit 9a8ef05a34dab7583b6f253daca294d6b1bfb187.
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Change int64 json encoding to be string for php and ruby
* Fix ruby test
* Sync upb change
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* 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: 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 protobuf version to 3.8.0
|
| | | | |
|
| | | | |
|
| | |/
| |
| | |
Previously, foo_value and foo (wrapper field) will both have get/setFooValue
|
| | |
| |
| |
| |
| | |
This reverts commit 783971e872c210140daaf15a6ce21628106dd210.
Revert an accidental revert!
|
| | |
| |
| |
| | |
This reverts commit 6d96493b3147a0f253f7eef2447785e19361afe3.
|
| | |
| |
| |
| | |
This reverts commit c40018e52dce3757a1f586ebe27755cb27aa3ba3.
|
| | | |
|
| | | |
|
| | |
| |
| |
| |
| |
| | |
* Custom mktime to fix issue on mac
* Remove succeeded tests from failure list
|
| | | |
|
| | | |
|
| |/
|
|
| |
version
|
| | |
|
| | |
|
| |\ |
|
| | |
| |
| |
| |
| |
| | |
* Update version number to 3.7.1
* Update version number in port_def.inc
|
| | |
| |
| |
| |
| |
| | |
* Allow bytes field to be longer than 16000 bytes
* Remove empty line
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* 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
* adjust name length input
* add test cases
* correct script name
* Misc fixes
* add new script to EXTRA_DIST list
|
| | |
| |
| |
| |
| |
| | |
* Remove GPBWrapperUtil from generated code
* Add newline
|
| | |
| |
| |
| |
| |
| |
| |
| | |
* Add conformance test for nested listvalue
* Fix upb for parsing repeated Value/ListValue
* Add failed repeated ListValue conformance test into php failure list
|
| | | |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* add terminating character
* adjust name length input
* add test cases
* correct script name
* Misc fixes
* add new script to EXTRA_DIST list
|
| | | |
|
| |\| |
|
| | |
| |
| |
| |
| |
| |
| |
| | |
* 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
* Create tag
|
| | | |
|
| | | |
|
| | |
| |
| |
| |
| |
| | |
* Update version to 3.7.0
* Update version number for java bom
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* 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
|
| | | |
|
| | | |
|
| | |
| |
| |
| |
| |
| | |
* Update php version number to 3.7.0RC2
* Update version number in source code
|
| | | |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|