event_buffer learned readline and cleaned fn-list.
[luaevent.git] / CHANGELOG
blob9b136af4a86a232f36f5a811e5794f386fd77fa4
1 0.2.0 - 2007-*-*
2  + Reorganized project to better fit GIT
3  + Refactored and cleaned sources
4    * Broke event_callback into its own source file
5  + Added timer/timeout capabilities + minor test
6  + Added event_buffer object
7   * Can 'add' a sequence of strings/event_buffers
8   * Can 'get_data', 'length','drain','close' and create new instances
9   * Can 'readline'
10 ======
11 0.1.2 - 2007-08-18
12 + Setup system to use new coro management as described in COROUTINE_MANAGEMENT
13   The callbacks are called from the event_loop 'thread' rather than that which they are
14   created in.  This will prevent the self-resume problem as well as dead-thread problems.
15 - Recognized issues to fix in next release:
16   * Socket/event closing needs to be cleaned
17   * luaevent.lua needs refactoring
18   * luaevent.[ch] need to be cleaned up
19 ======
20 0.1.1 - 2007-06-13
21 + Fixed event-handling code to cancel events on nothing being returned
22 + Added socket/object cleanup.
23 + Filed bug to libevent about the strange valgrind-released errors
24 - Recognized following issues:
25   Timeouts needed
26   Need to handle events setup from inside a coroutine... need to get a global Lua state from a thread...
27 ======
28 0.1.0 - 2007-06-10 22:00 EST
29 Completed mostly working version
30 * Moved to a mode where addevent calls a callback  rather than it being instantiated within.
31         If the callback returns -1, then no event is ever setup,
32         Otherwise the integer value is used to setup the event.
33   This allows for using coroutine.wrap rather than a cooked-up wrapper
34 * Tests work, although there are a few remaining issues:
35 * Need to figure a good way of preserving the event object,
36   not sure if current method is good enough, since the socket
37   is the only anchor, and it is only held inside the coro.. 
38   circular reference, something that Lua 'handles' well.
39 * Doing more than the maximum sockets the process is allows
40   causes strangeness to occur in libevent.. somehow
41   it is getting around to epoll_add which is causing valgrind
42   to barf.
43 * Added cheap protection code for failures in callback handlers
44 ======
45 0.0.0 - 2007-06-10 12:00 EST
46 Initial public version, was broken due to self-resume coroutines