chiark / gitweb /
use of int and overflow review
[chiark-tcl.git] / debian / changelog
1 chiark-tcl (1.0.2) unstable; urgency=low
2
3   Bugfixes:
4   * Do not adns_cancel in the middle of adns_forallqueries.
5   * strlen returns size_t, not int; fixed up everywhere relevant.
6     Closes #393970.  (Bug exists only where int and ssize_t differ.)
7
8   Portability fixes:
9   * Remove unecessary assertion of val<=0xffffffffUL where uint32_t val;
10     Closes: #394039 (FTBFS due to unhelpful GCC warning).
11
12   Internal improvements:
13   * Add a few assertions about *_LLEN in adns.c.
14   * Comprehensive review of use of `int' and defense against overflow.
15
16  --
17
18 chiark-tcl (1.0.1) unstable; urgency=low
19
20   New features:
21   * adns: Provide txt RRs.
22   * dgram: New extension for datagram sockets; dgram-socket command.
23   * tuntap: New extension for tun/tap interfaces (currently, tun only).
24
25   Documentation, build and packaging fixes:
26   * Correct doc comment for supplying query options to adns asynch.
27   * Replace #include <tcl8.3/tcl.h> with <tcl.h> and in build system find
28     Tcl version and pass appropriate -I option.  Closes: #362806.
29   * Declare versioned build-dependency on libadns1-dev >= 1.2
30     since we need adns_init_logfn.  Closes: #382287.
31   * Declare build-dependency on libcdb-dev | tinycdb (<= 0.75)
32     since cdb.h etc. is in libcdb-dev off nowadays.  Closes: #387904.
33   * Pass -Wno-strict-aliasing.  The compiler is wrong.
34   * Do not run dpkg-shlibdeps on adns and nettle plugins.
35     This prevents them turning up in Depends - see the README.
36   * Use correct syntax for avoiding compressing doc/*/*.[ch].txt.
37   * Use correct variable name for cht_adnstcl_{queries,resolvers}
38     everywhere (prevents coredump accessing uninitialised version).
39   
40   Internal changes:
41   * New way of doing toplevels with tcmdifgen dispatch() primitive.
42
43  -- Ian Jackson <ian@davenant.greenend.org.uk>  Wed, 18 Oct 2006 17:05:03 +0100
44
45 chiark-tcl (1.0.0) unstable; urgency=low
46
47   * Initial release.  Extensions included:  adns cdb crypto hbytes
48     (of which cdb and adns will be needed for new SAUCE).
49
50  -- Ian Jackson <ian@davenant.greenend.org.uk>  Thu, 30 Mar 2006 18:34:51 +0100
51
52
53 # chiark-tcl - various Tcl bindings and extensions
54 # Copyright 2006 Ian Jackson
55 #
56 # This program is free software; you can redistribute it and/or
57 # modify it under the terms of the GNU General Public License as
58 # published by the Free Software Foundation; either version 2 of the
59 # License, or (at your option) any later version.
60 #
61 # This program is distributed in the hope that it will be useful, but
62 # WITHOUT ANY WARRANTY; without even the implied warranty of
63 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
64 # General Public License for more details.
65 #
66 # You should have received a copy of the GNU General Public License
67 # along with this library; if not, write to the Free Software
68 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
69 # 02110-1301, USA.