script/lib/tweetstream/CHANGELOG
changeset 883 8ae3d91ea4ae
parent 882 b46cfa1d188b
child 884 07f1c6854df9
equal deleted inserted replaced
882:b46cfa1d188b 883:8ae3d91ea4ae
     1 0.1
       
     2 
       
     3  - Initial version
       
     4 
       
     5 0.2
       
     6 
       
     7  - Improved error handling
       
     8  - Added AuthenticationError and ConnectionError exceptions
       
     9  - Added ReconnectingTweetStream class that supports automatically
       
    10    reconnecting if the connection is dropped
       
    11 
       
    12 0.3
       
    13 
       
    14  - Fixed bugs in authtentication
       
    15  - Added TrackStream and FollowStream classes
       
    16  - Added list of endpoint names, and made them legal values for the url arg
       
    17 
       
    18 0.3.1
       
    19 
       
    20  - Added lots of tests
       
    21  - Added proper handling of keepalive newlines
       
    22  - Improved handling of closing streams
       
    23  - Added missing anyjson dependency to setup
       
    24  - Fixed bug where newlines and malformed content were counted as a tweet
       
    25 
       
    26 0.3.2
       
    27 
       
    28  - This release was skipped over, due to maintainer brainfart.
       
    29 
       
    30 0.3.3
       
    31 
       
    32  - Fixed setup.py so it wont attempt to load modules that aren't installed
       
    33    yet. Fixes installation issue.
       
    34 
       
    35 0.3.4
       
    36 
       
    37  - Updated to latest twitter streaming urls
       
    38  - Fixed a bug where we tried to call a method on None
       
    39 
       
    40 0.3.5
       
    41 
       
    42  - Removed a spurious print statement left over from debugging
       
    43  - Introduced common base class for all tweetstream exceptions
       
    44  - Make sure we raise a sensible error on 404. Include url in desc of that error
       
    45 
       
    46 0.3.6
       
    47 
       
    48  - Added LocationStream class for filtering on location bounding boxes.
       
    49 
       
    50 1.0.0
       
    51 
       
    52  - Changed API to match latest twitter endpoints. This adds SampleStream and
       
    53    FilterStream and deprecates TweetStream, FollowStream, LocationStream,
       
    54    TrackStream and ReconnectingTweetStream.
       
    55 
       
    56 1.1.0
       
    57 
       
    58  - Fixed issues #2 and #12, related to low volume streams not yielding tweets
       
    59    until a relatively large buffer was filled. This meant that tweets would
       
    60    arrive in bunches, not immediatly.
       
    61  - Switched to HTTPS urls for streams. Twitter will switch off HTTP streams
       
    62    on 29. sept. 2011.
       
    63  - Added support for Python 3
       
    64 
       
    65 1.1.1
       
    66 
       
    67  - Fixed issue #16. Odd case where python_version_tuple was returning ints
       
    68    rather than the strings the docs promis. Make sure we always cast to int.