base: updated makefile to be a little more configurable, still needs much work
[luaevent.git] / CHANGELOG
blob469580dc656ea3e8f1bb898a1ba8ea79110bc372
1 WIP - 2011-01-15
2  * Fixed libevent 2.0 compilation errors
3  * Merged all of luaevent-prosody changes
4 ======
5 luaevent-prosody 0.1.0 - 2010-02-15
6  * Fixed stack slot leak in event callbacks
7  * Fixed stack slot leak when error occurs in callback
8  * Various compilation fixes for Windows/ANSI C
9  * Silence some compiler warnings
10  + Add base:loopexit() method, with timeout support
11  + Add base:method() to discover backend in use
12  + Add core.libevent_version() to detect libevent version
13  + Add _NAME and _VERSION fields to module table
14  + base:addevent() now accepts integer fd to watch
15  + Switched from premake to standard Makefile for building
16 ======
17 0.2.0 - 2007-09-21
18  + Reorganized project to better fit GIT
19  + Refactored and cleaned sources
20    * Broke event_callback into its own source file
21  + Added timer/timeout capabilities + minor test
22  + Added event_buffer object
23   * Can 'add' a sequence of strings/event_buffers
24   * Can 'get_data', 'length','drain','close' and create new instances
25   * Can 'readline', 'read' from file des, 'write' to file des
26   * Added lunit tests for basic functions (read/write from/to FD)
27 ======
28 0.1.2 - 2007-08-18
29 + Setup system to use new coro management as described in COROUTINE_MANAGEMENT
30   The callbacks are called from the event_loop 'thread' rather than that which they are
31   created in.  This will prevent the self-resume problem as well as dead-thread problems.
32 - Recognized issues to fix in next release:
33   * Socket/event closing needs to be cleaned
34   * luaevent.lua needs refactoring
35   * luaevent.[ch] need to be cleaned up
36 ======
37 0.1.1 - 2007-06-13
38 + Fixed event-handling code to cancel events on nothing being returned
39 + Added socket/object cleanup.
40 + Filed bug to libevent about the strange valgrind-released errors
41 - Recognized following issues:
42   Timeouts needed
43   Need to handle events setup from inside a coroutine... need to get a global Lua state from a thread...
44 ======
45 0.1.0 - 2007-06-10 22:00 EST
46 Completed mostly working version
47 * Moved to a mode where addevent calls a callback  rather than it being instantiated within.
48         If the callback returns -1, then no event is ever setup,
49         Otherwise the integer value is used to setup the event.
50   This allows for using coroutine.wrap rather than a cooked-up wrapper
51 * Tests work, although there are a few remaining issues:
52 * Need to figure a good way of preserving the event object,
53   not sure if current method is good enough, since the socket
54   is the only anchor, and it is only held inside the coro.. 
55   circular reference, something that Lua 'handles' well.
56 * Doing more than the maximum sockets the process is allows
57   causes strangeness to occur in libevent.. somehow
58   it is getting around to epoll_add which is causing valgrind
59   to barf.
60 * Added cheap protection code for failures in callback handlers
61 ======
62 0.0.0 - 2007-06-10 12:00 EST
63 Initial public version, was broken due to self-resume coroutines