diff options
Diffstat (limited to 'CHANGELOG')
-rw-r--r-- | CHANGELOG | 23 |
1 files changed, 20 insertions, 3 deletions
@@ -1,4 +1,4 @@ | |||
1 | $Id: CHANGELOG,v 1.17 2002/11/14 22:52:53 helios Exp $ | 1 | $Id: CHANGELOG,v 1.18 2002/12/10 19:43:21 helios Exp $ |
2 | 2 | ||
3 | TODO: | 3 | TODO: |
4 | * Rethink documentation flow and rewrite? | 4 | * Rethink documentation flow and rewrite? |
@@ -15,11 +15,28 @@ TODO: | |||
15 | * socket-based middleman daemon with configurable conns? | 15 | * socket-based middleman daemon with configurable conns? |
16 | * ignore by cookie | 16 | * ignore by cookie |
17 | 17 | ||
18 | |||
19 | CHANGES: | 18 | CHANGES: |
20 | 19 | ||
21 | 1.17: | 20 | 1.18: |
21 | * Delayed inserts (a MySQL extension) are now available at compile-time. | ||
22 | THIS IS UGLY because there seems to be a bug in the way MySQL returns | ||
23 | errors on failed INSERT DELAYED queries. See the FAQ. | ||
24 | * Reworked the Makefile a tad. | ||
25 | * Added stdlib.h to the includes, some systems need it for atoi(). Added | ||
26 | string.h to the includes just to be safe. | ||
27 | * Reworked table creation (again). Inserts are attempted and tables | ||
28 | are made only on ER_NO_SUCH_TABLE. This should solve all the multiple- | ||
29 | creation-attempt issues as well as reduce overhead. | ||
30 | * safe_mysql_query reworked; it now can be counted on to preserve_entry() | ||
31 | if the query doesn't succeed. (Before, preserve_entry() was called | ||
32 | separately.) | ||
33 | * Always return SIGPIPE to handler before leaving safe_mysql_query(). | ||
34 | * New directive LogSQLRequestAccept, another filter for excluding things | ||
35 | from being logged. | ||
36 | * Alphabetized the directives in the reference section of the docs. | ||
37 | * Reorganized the FAQ by section. | ||
22 | 38 | ||
39 | 1.17: | ||
23 | * Renamed the module mod_log_sql to conform to the project goal of | 40 | * Renamed the module mod_log_sql to conform to the project goal of |
24 | database-inspecificity. | 41 | database-inspecificity. |
25 | * Added capability of logging Notes field. This is useful for folks using | 42 | * Added capability of logging Notes field. This is useful for folks using |