chiark / gitweb /
792d5756d46dc5d62f55414161e0dd4268cf07f6
[secnet.git] / debian / changelog
1 secnet (0.6.2~alpha0) unstable; urgency=medium
2
3   Bugfixes to code and build system:
4   * site: promote creation of st->scratch, allowing new pubkey scheme
5     to work even when secnet is restarting.
6   * comm-common.h: Remove unused `notify' variable.  [Colin Watson]
7   * Dir.sd.mk: Prevent builtin make rule overwriting conffile.c.
8
9   Documentation:
10   * configure: Correct bug reporting address.  Report from Colin Watson.
11   * example.conf improvements:
12       - Comment out some tuning overrides
13       - Improve syntax by deleting one of the two map examples
14       - Add a commented-out mobile site setting
15       - Add mtu-target
16   * OLD-NEWS, OLD-BUGS: Rename from NEWS and BUGS, and don't ship OLD-BUGS.
17
18   Debian packaging changes:
19   * debian/rules: Use dh sequencer.  Resulting changes:
20       - We now provide debug symbols in the new Debian way.
21       - The way the prerm stops secnet accords with modern practice.
22   * init script: source /lib/lsb/init-functions.
23   * Expand Description.
24   * debhelper compat: bump to 12 (stretch-backports).
25   * debian/rules: Use dh_prep instead of deprecated dh_clean -k.
26   * Adjust Priority (as per modern policy and lintian).
27   * Add some lintian overrides.
28   * Add missing Pre-Depends on init-system-helpers.
29
30   Credits and legal documentation improvements:
31   * Add missing credits for base91 and python argparse extension.
32     ensure some packaging credits exist in all the places they should be.
33   * Add copyright/credits notices to many files which were missing them.
34   * Move and centralise legal information into its own file, LICENCE.
35
36   Testing improvements:
37   * comprehensive-test: Actually allow OLD_SECNET_DIR set to ''
38   * test-example/common.conf: Fix a reference to the sites file.
39   * test-example/null-fake-userv: New test utility script.
40
41  --
42
43 secnet (0.6.1) unstable; urgency=medium
44
45   Logging bugfixes:
46   * Fix completely broken startup logging.  Config errors would not
47     be repoorted other than via the exit status!  (Broken in 0.6.0.)
48   * Suppress various uninteresting messages during startup, to
49     avoid noise during successful startup.
50   * Move "starting" message earlier.
51   
52   make-secnet-sites bugfixes:
53   * Fix error handling if caller is in wrong group.
54   * Fix regressions in handling of delegated sites file fragments
55     (especially wrt the optional group parameter to `location').
56     Broken since security fixes in 0.5.0.
57
58   Fixes to example config file:
59   * Use new name-prefixed format for map(site...) runes.  Old runes
60     were desupported by make-secnet-sites security fix (in 0.5.0).
61   * Fix "transform" syntax (broken since 0.3.0).
62
63   Other bugfixes and improvements:
64   * rsa: Do not crash if private key file is not accessible when
65     running --just-check-config.  (Broken since 0.6.0.)
66   * rsa: Print errno value if we fail to open key file.
67   * config parsing: When closure is of wrong type, give details.
68   * Use CLOCK_MONOTONIC for all our timing needs (but only when
69     built against an as-yet-unpublished adns feature).
70
71   Supporting changes:
72   * Tests for some of the changes.
73   * Minor internal refactorings and improvements.
74   * Merge subdirmk 1.0.
75
76  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 24 May 2020 22:14:26 +0100
77
78 secnet (0.6.0) unstable; urgency=medium
79
80   Bugfixes:
81   * mobile sites: Do not ever expire peer addresses.  In practice
82     this fixes transitions between IPv6-only and IPv4-only networks.
83   * make-secnet-sites: Tainted: Fix a lot of bad return values
84     (which would result in assertions rather than nice error messages).
85   * Fix hash algo confusion in mixed sha1/md5 configurations (see below).
86
87   Incompatible changes:
88   * site: Always advertise all capabilities, even in MSG1.  This is
89     incompatible with secnets earlier than 0.3.0 (September 2013), which
90     are all quite badly broken and should have been upgraded long ago.
91   * Drop support for using the same loaded rsa key with multiple different
92     hash algorithms (which was broken in 0.5.0).  Right now we support
93     only `sha1' and `md5' so everyone should be using `sha1'.
94     Installations which specified `md5' anywhere may need config changes.
95
96   Major new featureset (use of which is not adviseable yet):
97   * New facilities for negotiating about the signing keys to use for
98     authentication during key setup, and selecting and using the
99     appropriate keys.  (``key-cache'/`privcache' and `peer-keys').
100     Using these new facilities for keyrollover now is in principle
101     possible but rather complex.  Further machinery is planned;
102     for now, retain your existing config which should keep working.
103     In summary:
104        - secnet: new `privcache' closure;
105        - secnet: `key-cache' and `peer-keys' keys on site closures;
106        - secnet: new file format for peer public keysets;
107        - secnet: new `make-public' config operator;
108        - make-secnet-sites `pub', `pkg', `serial', etc. keywords;
109        - make-secnet-sites --filter, --pubkeys-*, --output-version.
110
111   More minor (logging) improvements:
112   * Make stderr line buffered and log to it by default.
113   * Do not log differently with --nodetach.
114   * New `prefix' option to `logfile' closure.
115   * Tidy and simplify some messages.
116
117   Supporting changes:
118   * Many substantial internal refactorings in secnet.
119   * Many substantial internal refactorings in make-secnet-sites.
120   * make-secnet-sites option parsing totally replaced.
121   * Imported subtrees for base91-c and base91-python.
122   * New portablity code, etc.: osdep.[ch], fmemopen reimplementation.
123   * Explicitly define oddly-rotated dh padding arrangement (write_mpbin).
124
125   Build system and packaging:
126   * Do not fail to build from git when HEAD refers to a packed ref.
127   * Update to subdirmk 0.3.
128   * Many makefile fixes (esp. to clean and cdeps).
129   * configure.ac: Drop or suppress some very obsolete checks.
130   * autogen.sh: Write a comment about need for autoheader.
131   * dir-locals: Provide python-indent-offset too.
132
133   Test suite bugfixes:
134   * stest: Use stderr, not tty, for logging.
135   * stest/udp-preload.c: Fix error handling of sun_prep.
136   * stest: Fix breakage if nproc is not installed.
137
138   Test suite improvements:
139   * New tests, including tests for new features.
140   * Existing tests (especially stest) generally made more thorough.
141   * New comprehensive-test and pretest-to-tested convenience scripts.
142   * Arrangements for testing with (user-provided) old secnet.
143   * parallel-test.*: scripts to help with parallelised bisection.
144   * stest: Print a lot more output about what we are doing.
145   * stest: Better support for cwd with longish pathname.
146   * stest: More flexibility, env var hooks, etc.
147
148  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 16 Feb 2020 12:48:13 +0000
149
150 secnet (0.5.1) unstable; urgency=medium
151
152   POTENTIALLY INCOMPATIBLE CHANGE.  Some security implications.
153
154   * make-secnet-sites: Prefix names when writing secnet sites.conf file.
155
156     make-secnet-sites must copy names (vpn, location and site names) from
157     the input sites file (which is not wholly trusted) to the secnet
158     config file.  Prior to this release, naming a location or site the
159     same as a secnet predefined name could generate a broken sites.conf
160     which secnet would reject.  (With the existing featureset,
161     malfunctions other than rejection, eg privilege escalation, are not
162     possible.)
163
164     make-secnet-sites now adds a prefix to these names when writing
165     sites.conf.  This will not affect configurations which use the
166     make-secnet-sites-provided `all-sites' key, as is usual.  Other
167     configurations will break unless the references in the static part of
168     the config are adjusted.
169
170     Previous behaviour can be restored with the --no-conf-key-prefix
171     option.  (Planned future enhancements to secnet are likely to make use
172     of that option, with untrusted input, dangerously insecure.)
173
174   other changes to make-secnet-sites:
175   * Fix argument parsing.  Fixes a regression affecting -P in 0.5.0,
176     and also fixes new facilities introduced in 0.5.0.
177   * Sort the properties on output (and adjust the test case expected
178     outputs).  Tests now pass on (at least) Python 2.7.13, 3.5.3, 3.7.5.
179   * Delete some unused code.
180
181   secnet:
182   * Change one idiom to avoid a warning from GCC9.  No functional change.
183
184   build system - MAJOR CHANGES:
185   * Fix out-of-tree builds.  (Broken in 0.5.0)
186   * Replace recursive make with use of the new subdirmk system.
187     This represents a fairly comprehensive overhaul of the makefiles.
188     Several bugs (esp. involving dependencies between files in different
189     directories) are fixed.
190   * Drop `make check' from `make all'.  (Otherwise there is no way
191     to ask for `all' without `check'.)
192   * Suppress two unhelpful new compiler warnings from GCC9.
193   * Release checklist update.
194
195   documentation:
196   * Credit Mark Wooding properly in CREDITS.
197   * Include DEVELOPER-CERTIFICATE.
198
199   tests:
200   * Locations now have different names to sites.
201   * Somewhat better debugging output from mtest.
202   * Do not run msgcode-test except with `make fullcheck'.
203   * Other minor bugfixes and improvments.
204   * stest: Suppress unhelpful -Wno-unused-result (needed for stretch).
205
206  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 22 Nov 2019 23:13:14 +0000
207
208 secnet (0.5.0) unstable; urgency=medium
209
210   make-secnet-sites SECURITY FIX:
211   * Do not blindly trust inputs; instead, check the syntax for sanity.
212     Previous releases can be induced to run arbitrary code as the user
213     invoking secnet (which might be root), if a secnet sites.conf is used
214     that was generated from an untrustworthy sites file.
215   * The userv invocation mode of make-secnet-sites seems to have been safe
216     in itself, but it previously allowed hazardous data to be propagated
217     into the master sites file.  This is now prevented too.
218
219   make-secnet-sites overhaul work:
220   * make-secnet-sites is now in the common subset of Python2 and Python3.
221     The #! is python3 now, but it works with Python2.7 too.
222     It will probably *not* work with old versions of Python2.
223   * We no longer depend on the obsolete `ipaddr' library.  We use
224     `ipaddress' now.  And this is onlo a Recommends in the .deb.
225   * Ad-hoc argument parser been replaced with `argparse'.
226     There should be no change to existing working invocations.
227   * Bad address syntax error does not wrongly mention IPv6 scopes.
228   * Minor refactoring to support forthcoming work.  [Mark Wooding]
229
230   other bugfixes, improvements and changes to secnet itself:
231   * Better logging of why we are sending NAK messages.
232   * Correctly use the verified copy of the peer remote capabilities
233     from MSG3.  (Bug is not a vulnerability.)    [Mark Wooding]
234   * Significant internal rearrangements and refactorings, to support
235     forthcoming key management work.  [Mark Wooding and Ian Jackson]
236
237   build system etc.:
238   * Completely overhaul release checklist; drop dist target.
239   * Remove dependency on `libfl.a'.  [Mark Wooding]
240   * polypath.c: Fix missing include of <limits.h>.  [Mark Wooding]
241   * Add a Wireshark dissector `secnet-wireshark.lua'.  It is not
242     installed anywhere right now.  [Mark Wooding]
243
244   documentation:
245   * Improve documentation of capability negotiation in NOTES, secnet(8)
246     and magic.h.  [Mark Wooding]
247
248  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 24 Oct 2019 19:11:54 +0100
249
250 secnet (0.4.5) unstable; urgency=medium
251
252   * INSTALL: Mention that rsa key generation might need ssh-keygen1.
253   * mobile: Fix negotiation bug with mixed old/new secnets and
254     simultaneous key setup attempts by each end.  [Mark Wooding]
255   * Makefile.in: Support installation from a `VPATH' build.  [Mark Wooding]
256   * Portability fixes for clang.  [Mark Wooding]
257
258  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 21 Sep 2019 12:04:31 +0100
259
260 secnet (0.4.4) unstable; urgency=medium
261
262   Security fix:
263   * make-secnet-sites: Don't allow setting new VPN-level properties
264     when restricted.  This could allow denial of service by
265     users with delegated authorisation.  [Mark Wooding]
266
267   Bugfixes for poor network environments:
268   * polypath: cope properly with asymmetric routing, by correcting
269     the handling of late duplicated packets etc.   Protocol is now
270     incompatible with secnet prior to 0.3.0 when either end is mobile.
271   * Randomise key setup retry time.
272
273   Other bugfixes:
274   * rsa and cbcmac: Fix configuration error messages.  [Mark Wooding]
275   * Handle IPv4 addresses properly (ie, not foolishly byte-swapped),
276     when IPv6 is not available.  [Mark Wooding]
277   * Better logging (and less foolish debug), especially about whether
278     key is set up, and about crossed key setup attempts.
279   * Internal refactoring and fixes.  [Ian Jackson and Mark Wooding]
280
281   Build system and portability:
282   * configure: rerun autogen.sh with autoconf 2.69-10
283   * Avoid memset(0,0,0) wrt st->sharedsecret.  (Fixes compiler warning;
284     in theory might cause miscompilation.)  [Mark Wooding]
285
286   Documentation:
287   * README.make-secnet-sites: new documentation file.  [Mark Wooding]
288   * NOTES: Describe current allocation of capability bits.  [Mark Wooding]
289   * NOTES: tiny fix tot protocol description.
290   * secnet(8): Delete wrong information about dh groups.  [Mark Wooding]
291
292   Administrivia:
293   * Fix erroneous GPL3+ licence notices "version d or later" (!)
294   * .dir-locals.el: Settings for Python code.  [Mark Wooding]
295
296  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 08 Sep 2019 22:53:14 +0100
297
298 secnet (0.4.3) unstable; urgency=low
299
300   Security improvement:
301   * Use `mpz_powm_sec' for modexps.
302
303   Enhancements:
304   * Implement comm-info and dedicated-interface-addr feature, for
305     benefit of hippotat.
306   * Implement `keepalive' site option, to try to keep link always up.
307
308   Build etc. fixes:
309   * #include <limits.h> (fixes the build on jessie).
310   * Tolerate building from a git checkout, but with git not installed.
311     (This can happen in chroots.)
312   * Turn off -Wsign-compare for bison output.
313   * Makefile.in: Fix `check-ipaddrset' rule to get reference from
314     $(srcdir).  (Makes out-of-tree builds work properly.)
315   * Release checklist fixes.
316   * Burn version numbers 0.4.1 and 0.4.2 due to errors in release prep.
317
318   Bugfixes:
319   * When printing messages about dropping IPv6, do not print anything
320     about ihl.  (Check the IP version field first!)
321   * When turning on debug, turn on verbose too.
322
323  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 25 Nov 2017 13:36:41 +0000
324
325 secnet (0.4.0) unstable; urgency=low
326
327   Debugging improvements:
328   * Packet-level debugging from site notes errors from transmit.
329   * Report when transport peers updated as a result of transmit.
330
331  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 28 Feb 2015 15:03:00 +0000
332
333 secnet (0.4.0~beta2) unstable; urgency=low
334
335   Polypath bugfixes:
336   * Ignore IPv6 Unique Local unicast addresses.
337   * Skip "tentative" IPv6 local addresses.
338   * Improve logging and debug output.
339
340   Portability fix:
341   * Build where size_t is not compatible with int.
342
343   Build system and packaging fixes:
344   * Makefile: support DESTDIR.
345   * debian/rules: set DESTDIR (not prefix).
346   * debian/rules: Support dpkg-buildflags.
347   * Install ipaddrset.py and secnet.8 with correct permissions.
348   * Fix check for <linux/if_tun.h> and git rid of our copy.
349   * Use -lresolv only if inet_aton is not found otherwise.
350   * Use -lnsl only if inet_ntoa is not found otherwise.
351   * debian/rules: Provide build-arch and build-indep targets.
352   * debian/rules: Do not run build for *-indep (!)
353   * Makefile.in: Putative dual (backport and not) release build process doc.
354
355   Copyright updates:
356   * Update to GPLv3.  Add missing copyright notices and credits.
357   * Get rid of old FSF street address; use URL instead.
358   * Remove obsolete LICENCE.txt (which was for snprintf reimplementation).
359   * Remove obsolete references to Cendio (for old ipaddr.py).
360
361  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 28 Dec 2014 17:14:10 +0000
362
363 secnet (0.4.0~beta1) unstable; urgency=low
364
365   New features:
366   * Support transport over IPv6.  (We do not yet carry IPv6 in the private
367     network.)  IPv6 support depends on IPv6-capable adns (adns 1.5.x).
368   * New polypath comm, which can duplicate packets so as to send them via
369     multiple routes over the public network, for increased
370     reliability/performance (but increased cost).  Currently Linux-only
371     but should be fairly easy to port.
372   * Support multiple public addresses for peers.
373   * Discard previously-received packets (by default).
374
375   Logging improvements:
376   * Report (each first) transmission and reception success and failure.
377   * Log reason for DNS reolution failure.
378   * Log unexpected kinds of death from userv.
379   * Log authbind exit status as errno value (if appropriate).
380
381   Configuration adjustments:
382   * Adjust default number of mobile peer addresses to store when a peer
383     public address is also configured.
384   * Make specifying peer public port optional.  This avoids making special
385     arrangements to bind to a port for in mobile sites with no public
386     stable address.
387
388   Bugfixes:
389   * Hackypar children will die if they get a terminating signal.
390   * Fix signal dispositions inherited by secnet's child processes.
391   * Fix off-by-one error which prevented setting transport-peers-max to 5.
392
393   Test, build and internal improvements:
394   * Use conventional IP address handling library ipaddr.py.
395   * Provide a fuzzer for the slip decoder.
396   * Build system improvements.
397   * Many source code cleanups.
398
399  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 26 Oct 2014 15:28:31 +0000
400
401 secnet (0.3.4) unstable; urgency=low
402
403   SECURITY FIX:
404   * The previous security fix to buffer handling was entirely wrong.  This
405     one is better.  Thanks to Simon Tatham for the report and the patch.
406
407  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 22 Sep 2014 16:16:11 +0100
408
409 secnet (0.3.3) unstable; urgency=high
410
411   SECURITY FIXES:
412   * Pass correct size argument to recvfrom.  This is a serious security
413     problem which may be exploitable from outside the VPN.
414   * Fix a memory leak in some error logging.
415
416   Other related fixes:
417   * Two other latent bugs in buffer length handling found and fixed.
418   * Non-critical stylistic improvements to buffer length handling, to make
419     the code clearer and to assist audit.
420
421  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 19 Sep 2014 23:50:45 +0100
422
423 secnet (0.3.3~beta1) unstable; urgency=low
424
425   Installation compatibility fix:
426   * In make-secnet-sites, always use our own ipaddr.py even if the
427     incompatible modern ipaddr.py is installed (eg via python-ipaddr.deb).
428     (Future versions of secnet are going to need that Python module to be
429     installed.)
430
431   For links involving mobile sites:
432   * Use source of NAK packets as hint for peer transport address.
433   * When initiating rekey, make use of data transport peer addresses.
434
435   Build fix:
436   * Provide clean target in test-example/Makefile.
437
438  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 19 Sep 2014 00:11:44 +0100
439
440 secnet (0.3.2) unstable; urgency=low
441
442   * Release of 0.3.2.  No code changes since 0.3.1~beta1.
443
444  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 26 Jun 2014 20:27:58 +0100
445
446 secnet (0.3.2~beta1) unstable; urgency=low
447
448   For links involving mobile sites:
449   * SECURITY: Properly update peer address array when it is full.
450   * Do name-resolution on peer-initiated key setup too, when we are mobile
451     (and other name-resolution improvements).
452
453   Other minor improvements:
454   * Log peer addresses on key exchange timeout.
455   * When printing version (eg during startup), use value from git-describe
456     and thus include git commit id where applicable.
457   * Updates to release checklist in Makefile.in.
458   * Use C99 _Bool for bool_t.
459
460  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 06 Jun 2014 01:17:54 +0100
461
462 secnet (0.3.1) unstable; urgency=low
463
464   * Release of 0.3.1.  No code changes since 0.3.1~beta3.
465
466  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 15 May 2014 01:08:30 +0100
467
468 secnet (0.3.1~beta3) unstable; urgency=low
469
470   * Build fixes for non-i386 architectures and gcc 4.8.2.
471
472  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 08 May 2014 19:53:43 +0100
473
474 secnet (0.3.1~beta2) unstable; urgency=low
475
476   Fix relating to new fragmentation / ICMP functionality:
477   * Generate ICMP packets correctly in point-to-point configurations.
478
479  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 03 May 2014 18:58:09 +0100
480
481 secnet (0.3.1~beta1) unstable; urgency=low
482
483   Security fixes (vulnerabilities are to inside attackers only):
484   * SECURITY: Fixes to MTU and fragmentation handling.
485   * SECURITY: Correctly set "unused" ICMP header field.
486   * SECURITY: Fix IP length check not to crash on very short packets.
487
488   New feature:
489   * Make the inter-site MTU configurable, and negotiate it with the peer.
490
491   Bugfixes etc.:
492   * Fix netlink SEGV on clientless netlinks (i.e. configuration error).
493   * Fix formatting error in p-t-p startup message.
494   * Do not send ICMP errors in response to unknown incoming ICMP.
495   * Fix formatting error in secnet.8 manpage.
496   * Internal code rearrangements and improvements.
497
498   Packaging improvements:
499   * Updates to release checklist in Makefile.in.
500   * Additions to the test-example suite.
501
502  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 01 May 2014 19:02:56 +0100
503
504 secnet (0.3.0) unstable; urgency=low
505
506   * Release of 0.3.0.  No code changes since 0.3.0~beta3.
507   * Update release checklist.
508
509  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 01 Sep 2013 20:27:48 +0100
510
511 secnet (0.3.0~beta3) unstable; urgency=low
512
513   * New upstream version.
514    - Stability bugfix: properly initialise site's scratch buffer.
515
516  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 05 Aug 2013 11:54:09 +0100
517
518 secnet (0.3.0~beta2) unstable; urgency=low
519
520   * New upstream version.
521    - SECURITY FIX: RSA public modulus and exponent buffer overflow.
522    - SECURITY FIX: Use constant-time memcmp for message authentication.
523    - SECURITY FIX: Provide a new transform, eax-serpent, to replace cbcmac.
524    - SECURITY FIX: No longer send NAKs for NAKs, avoiding NAK storm.
525    - SECURITY FIX: Fix site name checking when site name A is prefix of B.
526    - SECURITY FIX: Safely reject too-short IP packets.
527    - Better robustness for mobile sites (proper user of NAKs, new PROD msg).
528    - Better robustness against SLIP decoding errors.
529    - Fix bugs which caused routes to sometimes not be advertised.
530    - Protocol capability negotiation mechanism.
531    - Improvements and fixes to protocol and usage documentation.
532    - Other bugfixes and code tidying up.
533
534  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 25 Jul 2013 18:26:01 +0100
535
536 secnet (0.3.0~beta1) unstable; urgency=low
537
538   * New upstream version.
539    - SECURITY FIX: avoid crashes (or buffer overrun) on short packets.
540    - Bugfixes relating to packet loss during key exchange.
541    - Bugfixes relating to link up/down status.
542    - Bugfixes relating to logging.
543    - make-secnet-sites made more sophisticated to support two vpns on chiark.
544    - Documentation improvements.
545    - Build system improvements.
546   * Debian packaging improvements:
547    - Native package.
548    - Maintainer / uploaders.
549    - init script requires $remove_fs since we're in /usr.
550
551  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 12 Jul 2012 20:18:16 +0100
552
553 secnet (0.2.1-1) unstable; urgency=low
554
555   * New upstream version.  (authbind endianness fix)
556
557  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 11 Dec 2011 13:14:57 +0000
558
559 secnet (0.2.0-1) unstable; urgency=low
560
561   * New upstream version.
562
563  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 10 Dec 2011 22:44:41 +0000
564
565 secnet (0.1.18-1) unstable; urgency=low
566
567   * New upstream version.
568
569  -- Stephen Early <steve@greenend.org.uk>  Tue,  18 Mar 2008 17:45:00 +0000