]> matita.cs.unibo.it Git - helm.git/blob - DEVEL/ocaml-http/debian/changelog
9b39aa5c47ab7c84c846fe036e82fd8b6ba8e780
[helm.git] / DEVEL / ocaml-http / debian / changelog
1 ocaml-http (0.1.4-1) UNRELEASED; urgency=low
2
3   * send internally generated headers as lowercase strings, for consistency
4     with headers generated via setXXX methods
5
6  -- Stefano Zacchiroli <zack@debian.org>  Wed, 24 Jan 2007 10:09:12 +0100
7
8 ocaml-http (0.1.3-3) UNRELEASED; urgency=low
9
10   * debian/rules
11     - use ocaml.mk
12   * debian/control
13     - bumped build-dep on ocaml-nox to >= 3.09.2-7, since we now use
14       ocaml.mk
15     - bumped build-dep on debhelper to >> 5
16     - rebuilt against ocamlnet 2.2, bumped deps accordingly
17   * debian/compat
18     - bumped compatibility level to 5
19
20  -- Stefano Zacchiroli <zack@debian.org>  Wed,  3 Jan 2007 20:14:08 +0100
21
22 ocaml-http (0.1.3-2) unstable; urgency=low
23
24   * debian/control.in
25     - file removed, no longer needed
26   * debian/control
27     - bumped dependencies on pcre-ocaml and ocamlnet
28   * debian/rules
29     - binNMU safe substitution of variables in .in files
30   * debian/dirs
31     - file removed, will be generated at build time
32
33  -- Stefano Zacchiroli <zack@debian.org>  Fri, 15 Sep 2006 00:29:56 +0200
34
35 ocaml-http (0.1.3-1) unstable; urgency=low
36
37   * force bash as SHELL in Makefile, since we rely on bashisms
38     (closes: bug#381915)
39   * removed Http_daemon.{start,start'}, they have been deprecated a while ago
40     in favour of Http_daemon.main
41   * added 'auto_close' to daemon specifications. When set to true (defaults to
42     false), makes ocaml-http close every connection with client just after
43     having executed a callback, no matter if that callback succeeds or fails
44     with an exception
45
46  -- Stefano Zacchiroli <zack@debian.org>  Sun, 20 Aug 2006 18:07:41 +0200
47
48 ocaml-http (0.1.2-4) unstable; urgency=low
49
50   * Rebuilt against ocaml 3.09.2, bumped deps accordingly.
51   * debian/control
52     - Bumped Standards-Version to 3.7.2 (no changes needed)
53
54  -- Stefano Zacchiroli <zack@debian.org>  Wed, 17 May 2006 05:18:32 +0000
55
56 ocaml-http (0.1.2-3) unstable; urgency=low
57
58   * Rebuilt against OCaml 3.09.1, bumped deps accordingly.
59
60  -- Stefano Zacchiroli <zack@debian.org>  Sun,  8 Jan 2006 13:13:07 +0100
61
62 ocaml-http (0.1.2-2) unstable; urgency=low
63
64   * rebuilt with ocaml 3.09
65   * debian/*
66     - no more hardcoding of ocaml abi version anywhere
67   * debian/rules
68     - use cdbs
69
70  -- Stefano Zacchiroli <zack@debian.org>  Sat, 26 Nov 2005 20:28:26 +0100
71
72 ocaml-http (0.1.2-1) unstable; urgency=low
73
74   * avoid exceptions for closing connection twice during finaliztion of
75     connection objects (thanks to Eric Strokes <eric.stokes@csun.edu>
76     for the patch)
77
78  -- Stefano Zacchiroli <zack@debian.org>  Wed, 14 Sep 2005 18:03:40 +0200
79
80 ocaml-http (0.1.1-1) unstable; urgency=low
81
82   * added ?default parameter to "param" method
83   * fixed bug in response status line parsing
84   * integrated patch for HTTP/1.1 persistent connections from
85     Eric Cooper <ecc@cmu.edu>:
86     - added support for persistent connections to http_daemon.ml: server
87       now loops until End_of_file (or any exception) occurs when trying
88       to parse the next request
89   * debian/control
90     - bumped pcre and ocamlnet dependencies
91     - bumped standards-version to 3.6.2
92
93  -- Stefano Zacchiroli <zack@debian.org>  Wed, 16 Mar 2005 09:24:07 +0100
94
95 ocaml-http (0.1.0-2) unstable; urgency=low
96
97   * rebuilt against ocaml 3.08.3
98
99  -- Stefano Zacchiroli <zack@debian.org>  Tue, 29 Mar 2005 11:39:24 +0200
100
101 ocaml-http (0.1.0-1) unstable; urgency=low
102
103   * first debian official package
104
105  -- Stefano Zacchiroli <zack@debian.org>  Tue,  8 Feb 2005 22:45:54 +0100
106
107 ocaml-http (0.1.0) unstable; urgency=low
108
109   * added "daemon specifications": a unified way of specifying daemons
110     behaviour including old parameters of Http_daemon.start together
111     with authentication requirements and exception handling
112   * added new way of building daemons starting from specifications, old
113     ways (e.g. Http_daemon.start) are now deprecated
114   * added sigpipe handling to avoid daemons dying for uncaught signals
115   * added exception handler (as part of a daemon specification), it can
116     be used to ensure that some code is execute before a process/thread
117     die for uncaught exception (e.g. unlocking a global mutex)
118   * added authentication requirements (as part of a daemon
119     specification): an handy way to specify required user name and
120     password for HTTP basic authentication
121   * added head_callback to Http_user_agent in order to have access to
122     response status and headers in HTTP requests
123   * changed license from GPL to LGPL
124   * improved ocamldoc documentation and debian packaging
125
126  -- Stefano Zacchiroli <zack@debian.org>  Thu,  3 Feb 2005 23:08:14 +0100
127
128 ocaml-http (0.0.10) unstable; urgency=low
129
130   * renamed Http_client module to Http_user_agent to avoid compatibility
131     issues with Netclient. Renamed that module functions removing
132     "http_" prefix (e.g., summarizing, Http_client.http_get ->
133     Http_user_agent.get)
134   * ported to ocaml 3.08
135   * debian/control
136     - bumped standards version to 3.6.1.1
137     - changed deps to ocaml 3.08 and -nox
138
139  -- Stefano Zacchiroli <zack@debian.org>  Thu,  5 Aug 2004 15:06:49 +0200
140
141 ocaml-http (0.0.9) unstable; urgency=low
142
143   * Added support for HTTP Basic authentication
144   * Restyled Http_daemon API so that correct invocations of them are
145     statically typechecked
146   * Added support for HEAD requests to Http_client
147   * ~addr parameter now support not only ip addresses but also hostnames
148   * debian/control
149     - bumped Standards-Version to 3.6.1.0
150   * debian/rules
151     - moved debhelper compatibility level to debian/compat
152
153  -- Stefano Zacchiroli <zack@debian.org>  Tue, 16 Dec 2003 18:01:41 +0100
154
155 ocaml-http (0.0.8) unstable; urgency=low
156
157   * Added support for "ancient" HTTP requests which specify no HTTP
158     version
159     - 'version' method on message now has type 'version option'
160   * Http_daemon now use debugging prints from Http_common like other
161     modules
162   * Added debugging print of requests parse error
163   * Shutdown server socket on abnormal exit (actually: uncaught
164     exceptions or SIGTERM received)
165   * Added a lot of ocamldoc documentation
166   * Added minimal HTTP 1.0/1.1 client support
167
168  -- Stefano Zacchiroli <zack@debian.org>  Fri, 10 Jan 2003 10:36:53 +0100
169
170 ocaml-http (0.0.7) unstable; urgency=low
171
172   * Added support for POST requests
173   * Implemented a commont 'message' class from which 'request' and
174     'response' inherit
175   * Changed constructor of 'request' objects, requests are now buildable
176     directly (and only) from an input channel
177   * Added client IP address information to Http_request.request class
178   * Added OO daemon interfaces ("daemon" and "connection" classes)
179   * Use Pcre to perform sanity test on headers instead of home made
180     parsing
181   * Callback functions can raise Http_types.Quit to have main daemon
182     quit
183   * Case-insensitive handling of header names
184
185  -- Stefano Zacchiroli <zack@debian.org>  Wed, 25 Dec 2002 16:22:31 +0100
186
187 ocaml-http (0.0.6) unstable; urgency=low
188
189   * Ship multithreaded and non multithreaded cm{x,}aS
190   * Added support for multiple binding of the same parameter in request
191     objects (new method 'paramAll')
192   * Added support for 'empty' bindings in query arguments (e.g.
193     "/foo?b=" or "/foo?b")
194   * Added some sanity checks
195   * Bumped Standards-Version to 3.5.8
196   * Use versioned dependencies lib{pcre,ocamlnet}-ocaml-dev-<version>
197   * Added 'Provides libhttp-ocaml-dev-<version>'
198   * Removed GPL from debian/copyright, added reference to
199     /usr/share/common-licenses/GPL
200
201  -- Stefano Zacchiroli <zack@debian.org>  Mon, 25 Nov 2002 11:04:49 +0100
202
203 ocaml-http (0.0.5) unstable; urgency=low
204
205   * Fixed bug for HTTP encoded GET parameters which contain '?' or '&'
206     characters
207   * Added support for chdir in a given document root before starting
208   * Added support for multi threaded daemons
209   * Added a generic 'Http_daemon.respond' function
210   * Added 'toString' method to response objects
211
212  -- Stefano Zacchiroli <zack@debian.org>  Fri, 22 Nov 2002 11:29:37 +0100
213
214 ocaml-http (0.0.3) unstable; urgency=low
215
216   * First release.
217
218  -- Stefano Zacchiroli <zack@debian.org>  Sun, 17 Nov 2002 17:41:41 +0100