Skip to content

Releases: tcalmant/jsonrpclib

v0.3.0

27 Apr 08:49
Compare
Choose a tag to compare
  • Handle the potentially incomplete xmlrpc.server package when the future package is used (thanks to @MarcSchmitzer)

v0.2.9

12 Dec 12:52
Compare
Choose a tag to compare
  • 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

23 Aug 17:32
Compare
Choose a tag to compare
  • 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

12 Jun 16:41
Compare
Choose a tag to compare

Application of the TransportMixin fix develop by @MarcSchmitzer (#26).

v0.2.6

24 Aug 23:39
Compare
Choose a tag to compare
  • 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

28 Feb 19:27
Compare
Choose a tag to compare
  • 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

16 Feb 17:58
Compare
Choose a tag to compare
  • 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

14 Oct 14:54
Compare
Choose a tag to compare

Fixed the bean marshalling and changed configuration singleton to Config instances.