File: ChangeLog

package info (click to toggle)
python-protobuf.socketrpc 1.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 296 kB
  • sloc: python: 2,072; makefile: 4
file content (43 lines) | stat: -rw-r--r-- 1,536 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Version 1.3.2 (SVN Revision 89) 2010-11-04

* Use a more pythonic directory structure to allow better use of
  setuptools/distribute features
* Add metadata to setup.py
* Rename Python module from protobuf to protobuf.socketrpc to avoid
  name clashes
* Join thread instead of busy waiting for synchronous calls
* Protobuf 2.3.0 compatible
* Fixes for Issue 11 (Cannot create different server side handlers for
  the same service) and Issue 12 (Exceptions on server not propogated
  to client)
* Fixed unit tests

Version 1.3.1 (SVN Revision 46) 2009-12-21

* Added Service class to make rpc calls cleaner and hide some of the
  setup details

Version 1.3 (SVN Revision 33) 2009-10-04

* Protobuf 2.2.0 compatible and dependent.
* Moving error reasons out of response message into its own top level
  type in the proto. Added client side error reasons to the error
  codes to be consistent.

Version 1.2 (SVN Revision 12) 2009-02-14

* Errors that occur on server side are not relayed back to
  client. Client has new error reasons for them in the controller.
* Client callback behavior is faithful replication of server callback
  scenarios:
  - Callback is called with good response.
  - Callback is not called.
  - Callback is called with null.
  - Callback is called with empty protocol buffer.
* Added comprehensive unit tests for client and server.

Version 1.1 (SVN Revision 9) 2009-02-06

* Added error handling. When errors occur, the client can find out
  what error occurred from the controller.
* Started adding unit tests.