cscvs to tla changeset 87
[onak.git] / HISTORY
1 0.0.1 - 16th May 2002.
2
3 * First release.
4 * Merges gpgstats 0.0.2 (never released).
5
6 0.0.2 - 28th May 2002.
7
8 * Added support for subpacket type 0x83 (critical key expiration)
9 * Fixed bug in parsing of one byte new format packet length.
10 * Added support for 4 byte old format packet lengths.
11 * Changed various error statements to output to stderr instead of stdout.
12 * Fixed bug in deleting keys in Postgres backend.
13 * Moved code to merge a list of keys to merge.c and changed add.c to use it
14   rather than just replacing existing keys.
15 * Added comment & trust packets as known but ignored types.
16 * Added storage of uids to Postgres backend; this speeds up verbose indexing
17   and will also allow searching on UIDs.
18 * Fixed bug in armor handling (didn't like 2 newlines before the armor header).
19 * Made dearmor gracefully handle non armored input.
20 * Added support for incoming incremental update mails.
21 * Added searching on uids to lookup & keydb_pg.
22 * Changed Postgres backend to use 64 bit keyids instead of 32 bit.
23 * Made dearmor ignore CRs when looking for 2 blank lines.
24
25 0.0.3 - 2nd July 2002
26
27 * Added index on keyid for key table in Postgres backend.
28 * Twiddled transaction support in an attempt to speed up mass key adding.
29 * Changed putchar_func to take a character count rather than doing one char at
30   a time (massive speed up in Postgres case).
31 * Introduced onak binary for general keyserver operations.
32 * Changed all version number references to use VERSION macro.
33 * Made lldel free the unused list structure. (pointed out by Simon Huggins)
34 * Made llfind assert that the cmp function is non NULL. (Simon Huggins again)
35 * Fixed gpgwww; after the move to 64bit keyids internally it was trying to
36   compare the 32bit user supplied keyid to the retrieved 64bit one and never
37   finding paths.
38 * Various tidying up I've forgotten.
39 * Fixed bug with removing signed packets while merging.
40 * Fixed bug with potentially adding an already existing uid to a key when
41   merging.
42 * Fixed stupid typo bug in merging keys.
43
44 0.0.4 - 10th November 2002
45
46 * Made keydb_file backend compile again.
47 * Changed merging to compare signature keyids rather than packet contents
48   so we don't add the same signature multiple times.
49 * Changed keydb_pg backend over to using PQescapeString to escape SQL data.
50 * Added list of keyids in a path to gpgwww output (suitable for C&P into
51   a gnupg command line for example).
52 * Pulled out HTML start/end code to getcgi.c and added a DOCTYPE and charset
53   of utf8.
54 * Did some work on getting onak-mail.pl to output incrementals as well as
55   receiving them.
56 * Some cleanup in getting signature keyids.
57 * Made sure we freed more things after we've finished with them.
58 * Changed maxpath to display the path found.
59 * Added use of onak_sigs to keydb_pg to speed up retrieval of key sigs. Should
60   speed up the pathfinder a lot.
61 * Added llfree for freeing up linked lists.
62 * Wrote DB3 backend; although much work is still needed it vastly outperforms
63   the PostgreSQL backend and should hopefully not suffer from the problems of
64   the DB2 implementation.
65
66 0.1.0 - 13th November 2002
67
68 * Code cleanup; pull out common character functions.
69 * Make DB3 backend support proper searching.
70 * Added config file.
71 * Fixed ASCII armor bug (we'd output NULLs in the headers/footer).
72 * Added bidirectional syncing (previously we could receive but wouldn't send).
73
74 0.1.1 - 2nd December 2002
75
76 * Fixed utf8 content type - should be UTF-8. (Thanks to Simon Huggins)
77 * Made getfullkeyid not assert if the key isn't found. (Thanks to Simon 
78   Huggins for reporting this.)
79 * Fixed onak-mail.pl to check the stdout of onak before stderr to prevent
80   blocking when reading the output update.
81 * Used ccmalloc to find various memory leaks and fixed them.
82 * Added display of key subkeys.
83 * Tightened up table creation SQL a bit.
84 * Fixed bug with merging keys that have no new content (we'd sometimes stop
85   processing the incoming stream of keys).
86 * Updated README to be a bit more useful.
87 * Code cleanup; removed circular dependencies.
88 * Added sixdegrees.
89
90 0.1.2 - 15th February 2003
91
92 * Added fingerprint calculation/display.
93 * Cleanup sixdegrees binary/object file on make clean.
94 * Introduced transaction support to DB3 backend, along with deadlock detection.
95 * Added keydb dumping ability.
96 * Added logging infrastructure to help more easily track down problems.
97
98 0.2.0 - 8th June 2003
99
100 * Output multiple paths in gpgwww (thanks to Simon Huggins).
101 * Allow a keyid on the command line for sixdegrees (Simon Huggins).
102 * Make db2 backend check for a num_keydb file to know how many db files to use.
103 * Add 0x to generated URLs as pks needs these.
104 * Add "Find Reverse Path" link to gpgwww output.
105 * Checkpoint the db3 database upon clean exit.
106 * Fix bug with logging where the month was one less than it should have been.
107 * Fall back to stderr if we can't open the logfile.
108 * Move dependancy list from Makefile to separate file.
109 * Checkpoint the DB on clean shutdown.
110 * First cut at MRHKP support.
111 * Clean up various compile warnings under gcc 3.3
112 * Log a critical error when we can't handle a critical subpacket rather than
113   asserting.
114 * Make the Postgres backend compile again.
115 * First attempt at supporting revoked keys.