Packaging msrplib version 0100

Version 2 (Anonymous, 04/19/2012 03:30 pm)

1 1
python-msrplib (0.10.0) unstable; urgency=low
2 1
3 2
** made all the library classes new-style (derive from object)
4 2
** replaced TrafficLogger and StateLogger with a single Logger class
5 2
** fixed typo in AcceptorDirect.getHost()
6 2
** made MSRPData.status property return StatusHeader instance, not a tuple
7 2
** fixed MSRPTransport.make_chunk() to support REPORT requests
8 2
** made ByteRangeHeader.decoded return a tuple instead of a list
9 2
** made MSRPSession fire a success report if needed
10 2
** test system: a few minor improvements
11 2
** added unit test for success reports
12 2
** fixed typo in MSRPTransport that made incoming chunks larger than 16K fail with ChunkParseError
13 2
** fixed AttributeError in cleanup() methods
14 2
** added +repr+ to connectors
15 2
** limit debug log messages' length
16 2
** set the timeout to 30 seconds
17 2
** fixed ConnectorDirect.prepare() to update zero port in local_uri with 2855
18 2
** added a few docstrings
19 2
** renamed 'sync' argument into 'wait' in all methods where it's used
20 2
** added copy() method to protocol.MSRPData
21 2
** fixed bug in MSRPTransport.read_chunk's incoming chunk splitting functionality:
22 1
    virtual chunks had incorrect Byte-Range header
23 2
** made session actually pass INCOMING_CHUNK_SIZE to transport's read_chunk and thus split the incoming chunks
24 2
** added support for sending files with MSRPSession: session.OutgoingFile class and MSRPSession.send_file() method
25 2
** added examples for sending and receiving a message
26 2
** added example for file transfer
27 2
** updated eventlet dependency to 0.8.10