Releases: letrunghieu/wordpress-xmlrpc-client
Releases · letrunghieu/wordpress-xmlrpc-client
v2.6.0
v2.5.0
- Update the library to work with PHP 7 (fix #26, #25)
- Change the visibility of
private
members and methods toprotected
(fix #18, #21, #22) - Remove the limitation of callbacks (fix #11)
From this version, when you need to send a DateTime object to the XML-RPC server, replace it by the return value of $client->createXMLRPCDateTime($yourObj)
. The DateTime objects is not automatically parsed any more.
v2.4.0
- Remove other dependencies in production release
- Support callbacks
- Support changing endpoint and credentials
- Support using custom User Agent
Readmore at http://letrunghieu.github.io/wordpress-xmlrpc-client/
v2.3.0
- Add two missing optional arguments into the
uploadFile
function. - Add standalone zip file that can be use directly without composer. Just include the
vendor/autoload.php
from the extracted folder.
v2.2.1
v2.2
- (#1) Support proxy
- Support HTTP authentication
See the updated API doc
v2.1
- Change the transportation method from file to using curl, fallback if curl extension is not available.
- Remove respond header when logging.
v2.0
Updates:
- Fully support the XML-RPC Wordpress API
- Full test suite built in
- Allow testint with a custom endpoint
- Throw exceptions instead of return
false
v1.0
The first stable version with documentation.