HHVM 4.106
HHVM 4.106 is released! This release marks the end of support for 4.100; HHVM 4.101–4.105 remain supported, as does the 4.80 LTS release.
Breaking Changes
- The built-in functions
json_last_error(),json_last_error_msg(), andpreg_last_error()are now deprecated and will be removed in a future release. Instead, use these alternatives:
Future Changes
- The deprecated built-in functions
json_last_error(),json_last_error_msg(), andpreg_last_error()will be removed in a future release. - The typechecker error code for using a non-numeric value in a math operation
(e.g.
2 + '3') is changing from4110to4429. This doesn’t introduce any new errors, but may requireHH_FIXMEs to be updated.- Use the
.hhconfigoptionmath_new_code = trueto enable the future behavior now.
- Use the