Releases: tcalmant/jsonrpclib
Releases · tcalmant/jsonrpclib
v0.3.0
- Handle the potentially incomplete xmlrpc.server package when the
future
package is used (thanks to @MarcSchmitzer)
v0.2.9
- Added support for enumerations (
enum.Enum
classes, added in Python 3.4)
- Removed tests for
pypy3
as it doesn't work with pip
anymore
v0.2.8
- Clients can now connect servers using basic authentication.
The server URL must be given using this format: http://user:password@server
.
- The thread pool has been updated to reflect the fixes contributed by @Paltoquet for the iPOPO project.
v0.2.7
Application of the TransportMixin fix develop by @MarcSchmitzer (#26).
v0.2.6
- Added a
__repr__
method to the _Method
class
- Removed support for Python 2.6
- Project is now tested against Python 3.4 and Pypy 3 on Travis-CI
v0.2.5
- Corrects the PooledJSONRPCServer
- Stops the thread pool of the PooledJSONRPCServer in
server_close()
- Corrects the
Config.copy()
method: it now uses a copy of local classes and serialization handlers instead of sharing those dictionaries.
v0.2.4
- Corrects the handling of reused request sockets on the server side.
- Corrects the
additional_header
feature: now supports different headers for different proxies.
- Adds a "data" field to error responses.
0.1.6
Fixed the bean marshalling and changed configuration singleton to Config instances.