chiark / gitweb /
Moved xmalloc etc. into both.c
[userv.git] / debian / changelog
1 userv (0.65.2) unstable; urgency=high
2
3   * Avoid accessing backup, auto-save files, etc, with include-lookup.
4     Everything except a-z 0-9 - _ must now be prefixed by a colon.
5   * Allow \ to continue lines (and do sensible things with whitespace in
6     `message' and `error' directives).
7
8  --
9
10 userv (0.64.1) unstable; urgency=low
11
12   * New "shutdown" builtin service for terminating uservd.
13   * Spec. document shows subsections in TOC.
14
15   * setenv emulation using putenv works properly (previously you would get
16     wrong environment variable settings).  (Thanks to Ben Harris.)
17   * Makefile bug fixed (tokens.h would sometimes not be rebuilt).
18
19   * Regenerated formatted documentation (spec.ps, spec.html).
20
21  -- Ian Jackson <ian@davenant.greenend.org.uk>  Sun, 20 Jun 1999 19:13:42 +0100
22
23 userv (0.62) unstable; urgency=low
24
25   * New builtin service `help' lists builtin services.
26   
27   INSTALL improvements:
28   * Document locations of required programs.
29   * Sort-of document debugging version.
30   
31   Portability fixes for:
32   * md5sum with extra `-'.
33   * -lsocket required for socket().
34   * missing `LOG_AUTHPRIV'.
35   * `logname' name clash.    
36   * missing setenv() (synthesize using putenv).
37   * various required #include's were omitted.
38   * install rule in Makefile `if ! test ...' changed to `if test ! ...'
39
40   Build arrangements changed (new GNU coding standards targets etc):
41   * m4 and flex output now shipped.
42   * `dist' target in Makefile.
43   * Manuals in CVS and shipped pre-formatted.
44
45   * Reran autoconf/autoheader, latest version.
46   * Updated email address to ian@davenant.greenend.org.uk throughout.
47
48  -- Ian Jackson <ian@chiark.greenend.org.uk>  Sun, 18 Apr 1999 20:08:12 +0100
49
50 userv (0.60.3) frozen unstable; urgency=medium
51
52   * Fixed misdequoting of \<newline> in "-quoted strings.
53   * Removed -Werror by default.  (Bug#32758, Bug#32747)
54
55  -- Ian Jackson <ian@chiark.greenend.org.uk>  Wed,  3 Feb 1999 22:24:33 +0000
56
57 userv (0.60.2) frozen unstable; urgency=high
58
59   * Fixed failure to save pathnames in a couple of places in parser.c.
60     Without this, include-directory would often try to open a garbage
61     filename.  This could be a security problem in certain cases where
62     user-owned config files were included from sysadmin-defined files,
63     and the sysadmin wants to control how a user provides services.
64
65   * Fix "-quoted strings, which previously never worked at all.
66
67   * Fixed spurious failure with `Interrupted system call' on systems
68     where fread can fail due to read giving EINTR (blech!)
69
70   * Fixed race when fd closed at startup, which could cause
71     `system call failure: kill cat for <fd>: No such process'.
72
73   * Fixed spurious assertion failure if user's home directory not
74     accessible.
75   * Fixed a couple of memory and fd leaks in error exits from
76     include-directory and include-lookup in parser.c.
77
78   * Debian and `upstream' version integrated; Changelogs merged.
79
80   * Provided `system.default' file checks /etc/userv/services.d and
81     /etc/userv/default.d; system.override runs /etc/userv/override.d.
82
83   * Add <string.h> to servexec.c.
84   * Add -D_GNU_SOURCE to CFLAGS in configure.in.
85   * Braces added in client.c to prevent GCC `ambiguous else' warning.
86
87   * Reran autoconf.
88   * autoconf-generated files included in CVS.
89
90   * Debian package description mentions use by system admin.
91
92  -- Ian Jackson <ian@davenant.greenend.org.uk>  Sat, 30 Jan 1999 23:38:17 +0000
93
94
95 *** Main changelog file included here - see far down this file for the
96 *** pre-0.60 Debian-specific changes.
97
98
99 userv (0.58); urgency=high
100
101   * Fixed failure to set gid when invoking service !!
102   * Fixed failure to set fd value in et_closereadfd messages from client.
103
104   * Save filename string in parse_file for error reporting (in case it is
105     overwritten by parsing code).
106   * Fixed obscure race in process.c:getevent (et_closereadfd and hold fds).
107   * `builtin version' service had error message and errno string reserve
108     values exchanged.
109
110  -- Ian Jackson <ian@davenant.greenend.org.uk>  Thu, 29 Jan 1998 00:00:22 +0000
111
112 userv (0.57); urgency=high
113
114   * Services provided by root work !
115   * uservd can now go into background itself (-daemon option).
116
117   * spec now has default syslog facility for rcfile messages as `user'.
118   * Better prioritisation of syslog messages.
119   * Startup error messages now go to stderr instead.
120   * SIGTERM and SIGINT now produce a syslog message.
121
122   * Version number has VEREXT component, settable via make args &c.
123   * New sections in INSTALL about exit statuses and -daemon.
124
125  -- Ian Jackson <ian@davenant.greenend.org.uk>  Tue, 14 Oct 1997 02:04:18 +0100
126
127 userv (0.56); urgency=medium
128
129   * Server now checks itself every hour to see if its socket has been
130     stolen, and exits if it has.
131   * Client only retries connect(2) on EINTR (and does so silently).
132   * All of even master server's syslog messages have pid.
133   * Don't delete spec.sgml.in in clean targets.
134
135  -- Ian Jackson <ian@davenant.greenend.org.uk>  Sat, 11 Oct 1997 14:38:25 +0100
136
137 userv (0.55.2); urgency=low
138
139   * Added info about WWW page, mailing lists and bug reporting to README.
140
141   * clean targets except realclean don't remove spec.html, spec.ps,
142     lexer.[lc], tokens.h, overview.ps.  New totalclean target for
143     removing configure and config.h.in.
144
145   * Added <sys/types.h> and <errno.h> to lexer.l.m4.
146   * <sys/wait.h> instead of <wait.h>; %d instead of %ld for WEXITSTATUS
147     in overlord.c; PIPEMAXLEN etc. #defines include cast to int to avoid
148     problems with sizeof and size_t; EPROTO missing workaround.
149   * Note about SIG_IGN and `function declaration isn't a prototype' added
150     to INSTALL file in new PROBLEMS section.
151
152  -- Ian Jackson <ian@davenant.greenend.org.uk>  Sun, 5 Oct 1997 17:55:32 +0100
153
154 userv (0.55.1); urgency=low
155
156   * README file now shipped.
157   * Added this Changelog, and configure gets version number from it.
158
159  -- Ian Jackson <ian@davenant.greenend.org.uk>  Sun, 21 Sep 1997 23:58:32 +0100
160
161 userv (0.55)
162
163   * Initial release
164
165  -- Ian Jackson <ian@davenant.greenend.org.uk>  Sun, 21 Sep 1997 23:52:50 +0100
166
167
168 *** Old main changelog file ends here.
169 *** Now come pre-0.59 Debian-specific changes.
170
171
172 userv (0.58-1.2) unstable; urgency=low
173
174   * Non maintainer upload.
175     Fix for this error on the Arm.
176     cc1: warnings being treated as errors
177     client.c: In function callvalueoption':
178     client.c:747: warning: suggest explicit braces to avoid ambiguous else'
179     Braces inserted, to join the if statements together
180
181  -- Turbo Fredriksson <turbo@debian.org>  Thu, 20 Aug 1998 06:17:43 -0400
182
183 userv (0.58-1.1) frozen unstable; urgency=low
184
185   * Non maintainer upload
186   * Finally compiled against libc6
187   * To Brian White: Please either confirm this upload to go into frozen or
188     remove userv from frozen.
189   * Added external declaration for strsignal() to overlord.c and client.c
190
191  -- Martin Schulze <joey@finlandia.infodrom.north.de>  Sat, 18 Jul 1998 10:48:11 +0200
192
193 userv (0.58-1) unstable; urgency=low
194
195   * Upgraded to new upstream version; major security fix, error handling
196     fixes.
197
198  -- Ian Jackson <ian@davenant.greenend.org.uk>  Thu, 29 Jan 1998 00:03:52 +0000
199
200 userv (0.57-1) unstable; urgency=high
201
202   * Upgraded to new upstream version; fixed bug with root-provided
203     services.
204   * Uses new -daemon option in init.d script.
205   * Sets VEREXT during build to set version number.
206
207  -- Ian Jackson <ian@davenant.greenend.org.uk>  Tue, 14 Oct 1997 02:22:22 +0100
208
209 userv (0.56-1) experimental; urgency=low
210
211   * Upgraded to new upstream version.
212
213  -- Ian Jackson <ian@davenant.greenend.org.uk>  Sat, 11 Oct 1997 14:13:22 +0100
214
215 userv (0.55.1-1) experimental; urgency=low
216
217   * Initial Debian release.
218
219  -- Ian Jackson <ian@davenant.greenend.org.uk>  Mon, 22 Sep 1997 01:08:23 +0100
220
221 # Local variables:
222 # mode: debian-changelog
223 # End: