-XML-RPC for PHP version 4.9 - 2022/11/28
+## XML-RPC for PHP version 4.9.1 - unreleased
+
+* fixed: php warnings on php 8.2
+
+
+## XML-RPC for PHP version 4.9.0 - 2022/11/28
* security fix: hardened the `Client::send()` method against misuse of the `$method` argument (issue #81).
Abusing its value, it was possible to force the client to _access local files_ or _connect to undesired urls_ instead
* improved: the test container for local testing now defaults to php 7.4 on ubuntu 20 focal
-XML-RPC for PHP version 4.8.1 - 2022/11/10
+## XML-RPC for PHP version 4.8.1 - 2022/11/10
* improved: remove warnings with php 8.1 due to usage of strftime (issue #103)
* improved: cast correctly php objects sporting `DateTimeInterface` to phpxmlrpc datetime values
-XML-RPC for PHP version 4.8.0 - 2022/6/20
+## XML-RPC for PHP version 4.8.0 - 2022/6/20
* fixed: the `benchmark.php` file had seen some tests accidentally dropped
(might also happen on other php versions) (issue #99)
-XML-RPC for PHP version 4.7.2 - 2022/5/25
+## XML-RPC for PHP version 4.7.2 - 2022/5/25
* modified the strings used to tell the client to use http/2: to avoid users mistaking 'http2' for the preferred value,
we switched to using `h2` and `h2c`
* improved: the `benchmark.php` file does now also test calls using https and http/2 protocols
-XML-RPC for PHP version 4.7.1 - 2022/5/25
+## XML-RPC for PHP version 4.7.1 - 2022/5/25
* fixed: http/2 on non-https requests (known as h2c) works in either "prior-knowledge" mode or "upgrade" mode.
Given the fact that "upgrade" mode is not compatible with POST requests, we switched to using "prior-knowledge" mode
NB: this means that requests sent with `h2c` are only compatible with servers and proxies known to be http/2 compliant.
-XML-RPC for PHP version 4.7.0 - 2022/5/25
+## XML-RPC for PHP version 4.7.0 - 2022/5/25
* new: HTTP/2 is supported by both the Client and Server components (with the php cURL extension being required to use
it client-side) (issue #94).
To force the client to use http/2 over tls or http/2 over tcp requests, pass `h2` or `h2c` as 3rd argument to `Client::send`.
-XML-RPC for PHP version 4.6.1 - 2022/2/15
+## XML-RPC for PHP version 4.6.1 - 2022/2/15
* fixed: one php warning with php 8 and up (issue #97)
-XML-RPC for PHP version 4.6.0 - 2021/12/9
+## XML-RPC for PHP version 4.6.0 - 2021/12/9
* fixed: compatibility with php 8.1
* improved: Continuous Integration is now running on Github Actions instead of Travis
-XML-RPC for PHP version 4.5.2 - 2021/1/11
+## XML-RPC for PHP version 4.5.2 - 2021/1/11
* improved: better phpdocs in the the php code generated by the Wrapper class
* improved: allow usage of 'epivals' for the 'parameters_type' member of methods definitions in the Server dispatch map
-XML-RPC for PHP version 4.5.1 - 2021/1/3
+## XML-RPC for PHP version 4.5.1 - 2021/1/3
* improved: made it easier to subclass the Helper\Charset class by allowing `instance` to use late static binding
* improved: split the code of the demo server in multiple files, describing better the purpose of each
-XML-RPC for PHP version 4.5.0 - 2020/12/31
+## XML-RPC for PHP version 4.5.0 - 2020/12/31
* new: it is now possible to control the precision used when serializing DOUBLE values via usage of
`PhpXmlRpc::$xmlpc_double_precision`
client scripts; moved benchmark.php and verify_compat.php to the 'extras' folder
-XML-RPC for PHP version 4.4.3 - 2020/12/17
+## XML-RPC for PHP version 4.4.3 - 2020/12/17
* fixed: compatibility with PHP 8.0 (fixes to the debugger, to the server's 'system.methodHelp' method and to the
PhpXmlRpc\Wrapper class).
server when running tests; run Travis tests also on php 8.0; bump PHPUnit versions in use
-XML-RPC for PHP version 4.4.2 - 2020/3/4
+## XML-RPC for PHP version 4.4.2 - 2020/3/4
* fixed: `client->setCookie()` bug: cookie values that contain spaces are now properly encoded in a way that gets them
decoded back to spaces on the receiving end if the server running on php 7.4 (or does RFC-compliant cookie decoding).
Beforehand we were encoding spaces to '+' characters.
-XML-RPC for PHP version 4.4.1 - 2019/7/29
+## XML-RPC for PHP version 4.4.1 - 2019/7/29
* fixed: allow handling huge xml messages (>=10MB) (issue #71)
* improved: make it easier to overtake the library's usage of `error_log`
-XML-RPC for PHP version 4.3.2 - 2019/5/27
+## XML-RPC for PHP version 4.3.2 - 2019/5/27
* fixed: remove one php 7.2 warning when using the v3 api
* improved: the Travis tests are now run with all php versions from 5.6 to 7.3. We dropped tests with php 5.3, 5.4 and 5.5
-XML-RPC for PHP version 4.3.1 - 2018/1/20
+## XML-RPC for PHP version 4.3.1 - 2018/1/20
* fixed: error when using https in non-curl mode
* improved: text of error messages
-XML-RPC for PHP version 4.3.0 - 2017/11/6
+## XML-RPC for PHP version 4.3.0 - 2017/11/6
* fixed: compatibility with Basic/Digest/NTLM auth when using client in cURL mode (issue #58)
`Client::setUseCurl()`
-XML-RPC for PHP version 4.2.2 - 2017/10/15
+## XML-RPC for PHP version 4.2.2 - 2017/10/15
* fixed: compatibility with Lighttpd target servers when using client in cURL mode and request body size > 1024 bytes (issue #56)
-XML-RPC for PHP version 4.2.1 - 2017/9/3
+## XML-RPC for PHP version 4.2.1 - 2017/9/3
* fixed: compatibility with php 7.2 (issue #55)
-XML-RPC for PHP version 4.2.0 - 2017/6/30
+## XML-RPC for PHP version 4.2.0 - 2017/6/30
* improved: allow also DateTimeImmutable objects to be detected as a date when encoding
-XML-RPC for PHP version 4.1.1 - 2016/10/1
+## XML-RPC for PHP version 4.1.1 - 2016/10/1
* fixed: error in server class: undefined function php_xmlrpc_encode (only triggered when not using the compatibility
shim with old versions)
-XML-RPC for PHP version 4.1.0 - 2016/6/26
+## XML-RPC for PHP version 4.1.0 - 2016/6/26
* improved: Added support for receiving <I8> and <EX:I8> integers, sending <I8>
The library does *not* check if an outgoing integer is too big to fit in 4 bytes and convert it to an i8 automatically.
-XML-RPC for PHP version 4.0.1 - 2016/3/27
+## XML-RPC for PHP version 4.0.1 - 2016/3/27
* improved: all of the API documentation has been moved out of the manual and into the source code phpdoc comments
and has been removed
-XML-RPC for PHP version 4.0.0 - 2016/1/20
+## XML-RPC for PHP version 4.0.0 - 2016/1/20
This release does away with the past and starts a transition to modern-world php.
* improved: all php code is now formatted according to the PSR-2 standard
-XML-RPC for PHP version 3.0.0 - 2014/6/15
+## XML-RPC for PHP version 3.0.0 - 2014/6/15
This release corrects all bugs that have been reported and successfully reproduced since
version 3.0.0 beta.
See the Changelog file or the pdf docs for a complete list of changes.
-XML-RPC for PHP version 3.0.0 beta - 2009/09/05
+## XML-RPC for PHP version 3.0.0 beta - 2009/09/05
This is the first release of the library to only support PHP 5.
Some legacy code has been removed, and support for features such as exceptions
* fixed: bad encoding if same object is encoded twice using php_xmlrpc_encode
-XML-RPC for PHP version 2.2.2 - 2009/03/16
+## XML-RPC for PHP version 2.2.2 - 2009/03/16
This release corrects all bugs that have been reported and successfully reproduced since
version 2.2.1.
even whole classes
-XML-RPC for PHP version 2.2.1 - 2008/03/06
+## XML-RPC for PHP version 2.2.1 - 2008/03/06
This release corrects all bugs that have been reported and successfully reproduced.
It is the last release of the library that will support PHP 4.
* improved: more info when curl is enabled and debug mode is on
-XML-RPC for PHP version 2.2 - 2007/02/25
+## XML-RPC for PHP version 2.2 - 2007/02/25
This release corrects a couple of bugs and adds a few minor features.
* new: wrap_xmlrpc_method() accepts two new options: debug and return_on_fault
-XML-RPC for PHP version 2.1 - 2006/08/28
+## XML-RPC for PHP version 2.1 - 2006/08/28
This release corrects quite a few bugs and adds some interesting new features.
There is a minor security enhancement and overall speedup too.
* added foundation for emulating the API of the xmlrpc extension (extras package needed)
-XML-RPC for PHP version 2.0 - 2006/04/24
+## XML-RPC for PHP version 2.0 - 2006/04/24
-I'm pleased to announce XML-RPC for PHP version 2.0, final.
+I'm pleased to announce ## XML-RPC for PHP version 2.0, final.
With respect to the last release candidate, this release corrects a few small
bugs and adds a couple of new features: more authentication options (digest and
(which btw are not valid according to the xmlrpc spec)
-XML-RPC for PHP version 2.0RC3 - 2006/01/22
+## XML-RPC for PHP version 2.0RC3 - 2006/01/22
This release corrects a few bugs and adds some interesting new features.
It has been tested with PHP up to 4.4.2 and 5.1.2.
readable auto-generated documentation, anyone?).
-XML-RPC for PHP version 2.0RC2 - 2005/11/22
+## XML-RPC for PHP version 2.0RC2 - 2005/11/22
This release corrects a few bugs and adds basically one new method for better
HTTPS support:
two files in the extras dir (more info about json-rpc at http://json-rpc.org)
-XML-RPC for PHP version 2.0RC1 - 2005/10/03
+## XML-RPC for PHP version 2.0RC1 - 2005/10/03
-I'm pleased to announce XML-RPC for PHP version 2.0, release candidate 1.
+I'm pleased to announce ## XML-RPC for PHP version 2.0, release candidate 1.
This release introduces so many new features it is almost impossible to list them
here, making the library finally on pair with, if not more advanced than, any other
is commented in javadoc style quite a bit.
-XML-RPC for PHP version 1.2 - 2005/08/14
+## XML-RPC for PHP version 1.2 - 2005/08/14
This removes all use of eval(), which is a potential security problem.
All users are encouraged to upgrade as soon as possible.
As of this release we are no longer php3-compatible.
-XML-RPC for PHP version 1.1.1 - 2005/06/30
+## XML-RPC for PHP version 1.1.1 - 2005/06/30
This is a security vulnerability fix release.
All users are invited to upgrade as soon as possible.
-XML-RPC for PHP version 1.1 - 2005/05/03
+## XML-RPC for PHP version 1.1 - 2005/05/03
-I'm pleased to announce XML-RPC for PHP version 1.1
+I'm pleased to announce ## XML-RPC for PHP version 1.1
It's taken two years to get to the this point, but here we are, finally.
This is a bugfix and maintenance release. No major new features have been added.
pages at http://sourceforge.net/projects/phpxmlrpc/
-XML-RPC for PHP version 1.0
+## XML-RPC for PHP version 1.0
-I'm pleased to announce XML-RPC for PHP version 1.0 (final). It's taken
+I'm pleased to announce ## XML-RPC for PHP version 1.0 (final). It's taken
two years to get to the 1.0 point, but here we are, finally. The major change
is re-licensing with the BSD open source license, a move from the custom
license previously used.
<xmlrpc@usefulinc.com>.
-XML-RPC for PHP version 1.0 beta 9
+## XML-RPC for PHP version 1.0 beta 9
-I'm pleased to announce XML-RPC for PHP version 1.0 beta 9. This is
+I'm pleased to announce ## XML-RPC for PHP version 1.0 beta 9. This is
is largely a bugfix release.
It can be downloaded from http://xmlrpc.usefulinc.com/php.html
http://xmlrpc.usefulinc.com/list.html, or to <xmlrpc@usefulinc.com>.
-XML-RPC for PHP version 1.0 beta 8
+## XML-RPC for PHP version 1.0 beta 8
-I'm pleased to announce XML-RPC for PHP version 1.0 beta 8.
+I'm pleased to announce ## XML-RPC for PHP version 1.0 beta 8.
This release fixes several bugs and adds a couple of new helper
functions. The most critical change in this release is that you can no
http://xmlrpc.usefulinc.com/list.html, or to <xmlrpc@usefulinc.com>.
-XML-RPC for PHP version 1.0 beta 7
+## XML-RPC for PHP version 1.0 beta 7
-I'm pleased to announce XML-RPC for PHP version 1.0 beta 7. This is
+I'm pleased to announce ## XML-RPC for PHP version 1.0 beta 7. This is
fixes some critical bugs that crept in. If it shows itself to be stable
then it'll become the 1.0 release.
http://xmlrpc.usefulinc.com/list.html, or to <xmlrpc@usefulinc.com>.
-XML-RPC for PHP version 1.0 beta 6
+## XML-RPC for PHP version 1.0 beta 6
-I'm pleased to announce XML-RPC for PHP version 1.0 beta 6. This is the
+I'm pleased to announce ## XML-RPC for PHP version 1.0 beta 6. This is the
final beta before the 1.0 release.
It can be downloaded from http://xmlrpc.usefulinc.com/php.html