forked from edicl/hunchentoot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
382 lines (306 loc) · 10.6 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
Version 1.2.3
2012-03-03
Fix crash when error occurs while logging error (reported by Xu Jingtao)
Fix compilation with :hunchentoot-no-ssl feature (Mark Evenson)
Fix Range header handling (Simon Sandlund)
Export acceptor-remove-session
ECL timeout support (Juan Jose Giarcia-Ripoll)
Changed cookie handling - Hunchentoot no longer encodes cookies
automatically. Applications must make sure that they only set cookies
to permitted values (refer to RFC6265 for the details, thanks to Ralf
Stoye for debugging help)
Version 1.2.2
2011-11-30
Fix warning on LispWorks (Nico de Jager)
Documentation updates
Remove obsolete symbols from export list
Add easy-ssl-acceptor
Document acceptor-remove-session, remove obsolete *session-removal-hook* export (Issue #15)
Added :description to asdf system definition
Add documentation section describing how to bind to privileged ports
Version 1.2.1
2011-11-04
Use FINISH-OUTPUT instead of FORCE-OUTPUT at connection end (I. Perminov)
Documentation updates
External format EOL style fixes for Windows (Anton Kovalenko)
Version 1.2.0
2011-10-30
Fix to allow send-service-unavailable-reply to work (Far� Rideau)
Make sure we always have a cooked message to send in case of error (Far� Rideau)
Add www/ directory with default file tree that is being served
Add error template mechanism and improve error reporting in general.
Improve automatic testing, SBCL kludge to support asdf:test-op
Allegro CL modern mode fixes
Fix bugs in serving partial responses
Limit maximum number of threads that Hunchentoot creates (Dan Weinreb, Scott McKay)
Export fixes (Gordon Sims, Andrey Moskvitin, Far� Rideau)
Factor out easy-handler logic into separate acceptor subclass
Export two session functions (Nico de Jager)
Allow no Content-Type header (Chaitanya Gupta)
Patch for compilation with ECL (Sohail Somani)
Fix DEFINE-EASY-HANDLER for multiple acceptors (Nicolas Neuss)
Revived *SHOW-LISP-BACKTRACES-P*
Made sure "100 Continue" is returned even if the client sends "Expect: 100-continue" twice (reported by Gordon Sims)
Fixed typo in code which interprets transfer encodings
Version 1.1.1
2010-08-24
Exported WITHIN-REQUEST-P (Far� Rideau)
Safeguard measures against XSS attacks (J.P. Larocque)
Prevent potential leak when closing stream (Matt Lamari, Martin Simmons)
Change some occurrences of HANDLER-CASE* to HANDLER-CASE (Hans H�bner, Allan Dee)
Version 1.1.0
2010-01-08
Architectural changes - see HANDLE-REQUEST (thanks to Andreas Fuchs and Frode Fjeld)
Re-introduced *CATCH-ERRORS-P* and MAYBE-INVOKE-DEBUGGER
Integration with trivial-backtrace (see *LOG-LISP-BACKTRACES-P*)
Treat :UNSPECIFIC like NIL in pathname components (reported by Frode Fjeld)
Fixed RESET-SESSIONS
Prepared for LispWorks 6 (Nico de Jager)
Fixed reading of post parameters (Peter Seibel and Stephen P. Compall)
Fixed STOP by supplying the :READY-ONLY keyword to USOCKET:WAIT-FOR-INPUT
Enabled SSL key passwords for Lisps other than LW (Vsevolod)
Version 1.0.0
2009-02-19
Complete architectural redesign (together with Hans H�bner)
Lots of small fixes and improvements, too many to enumerate here
Version 0.15.6
2008-04-09
Fixed embarrassingly mis-placed parentheses (thanks to Hans H�bner)
Version 0.15.5
2008-04-08
Removed FORCE-OUTPUT* and thus the ACL-COMPAT dependency (thanks to Hans H�bner)
Support for MP-less CMUCL (thanks to Hans H�bner)
Version 0.15.4
2008-03-27
Fixed unportable LOOP usage (caught by "C S S")
Version 0.15.3
2008-03-17
Added CODE parameter to REDIRECT (thanks to Michael Weber)
Version 0.15.2
2008-03-06
Fixed typo in test.lisp (thanks to Ben Hyde)
Changed wrong usage of EQ to EQL (thanks to Ariel Badichi)
Fixed typo in default handler (thanks to Eugene Ossintsev)
Version 0.15.1
2008-02-13
Uses CL-FAD for HANDLE-STATIC-FILE now
Better error reporting for CREATE-FOLDER-DISPATCHER-AND-HANDLER (suggested by Cyrus Harmon)
Faster version of WRITE-HEADER-LINE (thanks to V. Segu�)
Version 0.15.0
2007-12-29
Added support for CLISP (thanks to Anton Vodonosov)
Version 0.14.7
2007-11-15
Replace ENOUGH-NAMESTRING with ENOUGH-URL (patch by Kilian Sprotte and Hans H�bner)
Version 0.14.6
2007-11-08
Fix compilation order (thanks to Tiarnan O'Corrain and Chris Dean)
Version 0.14.5
2007-10-21
Robustified MAKE-SOCKET-STREAM against potential leak (thanks to Alain Picard)
Replaced #-FOO #-FOO constructs for OpenMCL (patch by Michael Weber)
Updated tutorial links
Version 0.14.4
2007-10-20
Made log stream shared on OpenMCL (thanks to Gary Byers)
Version 0.14.3
2007-10-07
Enabled GET-GID-FROM-NAME for newer versions of SBCL (patch by Cyrus Harmon)
Version 0.14.2
2007-09-26
Better handling of PORT parameter in REDIRECT (thanks to Vladimir Sedach)
Version 0.14.1
2007-09-24
Fixed bug where you couldn't set "Server" header (caught by Ralf Mattes)
Documentation clarification for HEADER-OUT function
Version 0.14.0
2007-09-18
Added support for "HttpOnly" cookie attribute
Version 0.13.0
2007-09-14
Added *METHODS-FOR-POST-PARAMETERS* (suggested by Jonathon McKitrick)
Version 0.12.1
2007-09-13
Better support for WITH-TIMEOUT on SBCL/Win32 (thanks to Anton Vodonosov)
Version 0.12.0
2007-09-07
Now uses bound for flexi stream returned by RAW-POST-DATA
Needs FLEXI-STREAMS 0.12.0 or higher
Version 0.11.2
2007-09-05
Fixed typo in docs
Added declaration in server.lisp to appease SBCL
Version 0.11.1
2007-05-25
Fixes for OpenMCL (thanks to Lennart Staflin and Tiarnan O'Corrain)
Version 0.11.0
2007-05-25
Added server names and coupled them with easy handlers (suggested by Mac Chan)
Exported SESSION-COOKIE-VALUE instead of SESSION-STRING (suggested by Slava Akhmechet)
Documentation fixes (thanks to Victor Kryukov and Igor Plekhov)
Version 0.10.0
2007-05-12
Made MAYBE-INVOKE-DEBUGGER a generic function and exported it (suggested by Vladimir Sedach)
Version 0.9.3
2007-05-08
Fixed CREATE-FOLDER-DISPATCHER-AND-HANDLER in the presence of URL-encoded URLs (bug caught by Nicolas Lamirault)
Version 0.9.2
2007-05-01
Made DEF-HTTP-RETURN-CODE more flexible (suggested by Jong-won Choi)
Version 0.9.1
2007-04-29
Added PORT parameter to REDIRECT (suggested by Cyrus Harmon)
Exported REMOVE-SESSION (suggested by Vamsee Kanakala)
Version 0.9.0
2007-04-19
Added socket timeouts for AllegroCL
Catch IO timeout conditions for AllegroCL, SBCL and CMUCL (suggested by Red Daly and others)
Added per-server dispatch tables (suggested by Robert Synnott and Andrei Stebakov)
Version 0.8.6
2007-04-18
USE the CL package explicitly when defining HUNCHENTOOT-MP (bug report by Joel Boehland)
Version 0.8.5
2007-04-10
Correct behaviour for "100 Continue" responses
Version 0.8.4
2007-04-09
Cleanup
Version 0.8.3
2007-04-07
Don't use chunked encoding for empty (NIL) bodies
Version 0.8.2
2007-04-05
Really exported REASON-PHRASE this time (and also *CURRENT-PROCESS*)
Version 0.8.1
2007-04-04
Added HUNCHENTOOT-MP package (suggested by Cyrus Harmon)
Only invoke MARK-AND-SWEEP for 32-bit versions of LW (thanks to Chris Dean)
Exported REASON-PHRASE
Version 0.8.0
2007-03-31
Added *APPROVED-RETURN-CODES*, *HEADER-STREAM*, and +HTTP-FAILED-DEPENDENCY+
Exported MIME-TYPE and SSL-P
Some minor changes
Version 0.7.3
2007-03-28
Added +HTTP-MULTI-STATUS+
Version 0.7.2
2007-03-09
Fix test suite to properly handle non-base characters in LW (bug caught by Jong-won Choi)
Version 0.7.1
2007-03-09
Fixed last change (thanks to Marko Kocic)
Version 0.7.0
2007-03-09
Development port (no threads) to SBCL/Win32 (patch by Marko Kocic)
Support for compilation without SSL
Version 0.6.2
2007-02-22
Don't use NSTRING-UPCASE for outgoing headers (bug caught by Saurabh Nanda)
Changed ProxyPass example in docs from /lisp to /hunchentoot
Version 0.6.1
2007-01-24
Reset to "faithful" external format on each iteration (bug caught by Viljo Marrandi and Ury Marshak)
Version 0.6.0
2007-01-23
Accept chunked transfer encoding for mod_lisp request bodies (thanks to Hugh Winkler's mod_lisp additions)
Robustify against erroneous form-data submissions (caught by Ury Marshak)
Version 0.5.1
2007-01-18
Even more flexible behaviour of RAW-POST-DATA
Version 0.5.0
2007-01-17
More flexible behaviour of RAW-POST-DATA
Robustified PARSE-CONTENT-TYPE
Version 0.4.14
2007-01-17
More meaningful results for RAW-POST-DATA
Version 0.4.13
2007-01-14
Added favicon.ico to example website (thanks to Yoni Rabkin Katzenell, Toby, and Uwe von Loh)
Version 0.4.12
2006-12-27
Added Hunchentoot logo by Uwe von Loh
Version 0.4.11
2006-12-01
Exported symbols related to session GC (suggested by Nico de Jager)
Version 0.4.10
2006-11-19
Added *HANDLE-HTTP-ERRORS-P* (thanks to Marijn Haverbeke)
Remove duplicate headers when reading from mod_lisp
Version 0.4.9
2006-11-12
Fixed HEADER-OUT (thanks to Robert J. Macomber)
Version 0.4.8
2006-11-06
Fixed bug in START-OUTPUT which confused mod_lisp
Version 0.4.7
2006-11-06
Changed behaviour of REAL-REMOTE-ADDR (as suggested by Robert J. Macomber)
Fixed COOKIE-OUT (thanks to Robert J. Macomber)
Version 0.4.6
2006-11-05
Don't bind *DISPATCH-TABLE* too early (thanks to Marijn Haverbeke)
Version 0.4.5
2006-10-25
Fixed bug in AUTHORIZATION function (reported by Michael J. Forster)
Version 0.4.4
2006-10-12
Correct SSL check in REDIRECT function
LOG-MESSAGE now checks for (BOUNDP '*SERVER*)
Version 0.4.3
2006-10-11
OpenMCL fixes (by Ralf Stoye)
Version 0.4.2
2006-10-10
No timeouts for mod_lisp servers (as in Hunchentoot 0.3.x)
Version 0.4.1
2006-10-10
Fixed a typo in easy-handlers.lisp (caught by Travis Cross)
Version 0.4.0
2006-10-10
Ported to CMUCL, SBCL, OpenMCL, and AllegroCL
Merged with TBNL
Tons of small changes, too many to list them individually
Version 0.3.2
2006-09-14
Uses TBNL's WITH-DEBUGGER now
Version 0.3.1
2006-09-14
Added *CATCH-ERRORS-P* (from TBNL)
Version 0.3.0
2006-09-05
Accept HTTP requests with chunked transfer encoding
Use Chunga for chunking
Version 0.2.2
2006-08-31
Skip START-OUTPUT advice completely if working for TBNL
Version 0.2.1
2006-08-28
Added write timeouts for LW 5.0
Updated LW links in documentation
Version 0.2.0
2006-08-28
Serves as infrastructure for TBNL now (to replace KMRCL)
For HTTP/1.1 only send 'Keep-Alive' headers if explicitly requested
Version 0.1.5
2006-08-23
Connection headers are separated by commas, not semicolons
Version 0.1.4
2006-08-22
Refactored streams.lisp to appease LW compiler (thanks to Martin Simmons)
Changed handling of version string
Changed package handling in system definition (thanks to Christophe Rhodes)
Version 0.1.3
2006-02-08
Removed KMRCL workaround
Version 0.1.2
2006-01-03
Mention TBNL version number in server name header
Version 0.1.1
2005-12-31
Fixed package stuff and HYPERDOC support
Version 0.1.0
2005-12-31
Initial public release
[For earlier changes see the file "CHANGELOG_TBNL" that is included with the release.]