]> Cypherpunks.ru repositories - nncp.git/blob - doc/news.texi
ACK
[nncp.git] / doc / news.texi
1 @node News
2 @cindex news
3 @unnumbered News
4
5 See also this page @ref{Новости, on russian}.
6
7 @node Release 8_6_0
8 @section Release 8.6.0
9 @itemize
10
11 @item
12 @command{nncp-xfer} checks if locally copied packet's checksum differs
13 from the source's one.
14
15 @item
16 @command{nncp-ack} command appeared, that sends explicit packet receipt
17 acknowledgement (ACK packet). That acknowledgement deletes referenced
18 packet from the outbound spool.
19
20 @item
21 Ability to turn @code{fsync} operation off using @env{$NNCPNOSYNC=1}
22 environment variable.
23
24 @item
25 Added various indices in documentation, that should help searching in it.
26
27 @end itemize
28
29 @node Release 8_5_0
30 @section Release 8.5.0
31 @itemize
32
33 @item
34 Fixed @command{nncp-bundle} workability.
35
36 @item
37 Mistakenly @option{-mcd-wait} option was enabled by default in
38 @command{nncp-call}.
39
40 @item
41 Ability to override internal default timeout for online protocol through
42 @env{$NNCPDEADLINE} environment variable. Can be useful for very high
43 delay links.
44
45 @item
46 NNCP builds on OpenBSD.
47
48 @end itemize
49
50 @node Release 8_4_0
51 @section Release 8.4.0
52 @itemize
53
54 @item
55 Multicast related interface names (@code{mcd-listen} and @code{mcd-send}
56 configuration options) are now regular expressions. By default
57 @command{nncp-cfgnew} uncomments them now with @code{.*} interface name.
58
59 @item
60 @command{nncp-call} command has @option{-mcd-wait} option to wait for
61 multicast packet about node's address.
62
63 @item
64 @command{nncp-file} command skips everything that is neither regular
65 file nor directory during pax-archive creation.
66
67 @end itemize
68
69 @node Release 8_3_0
70 @section Release 8.3.0
71 @itemize
72
73 @item
74 Fixed building issues on 32-bit systems.
75
76 @end itemize
77
78 @node Release 8_2_0
79 @section Release 8.2.0
80 @itemize
81
82 @item
83 Yggdrasil uses pure-Go IPv6+TCP network stack, instead of naked μTP
84 transport protocol, making it able to work as an ordinary TCP server
85 inside overlay network.
86
87 @item
88 Yggdrasil's @code{prv;bind1,bind2;pub...}-like configuration strings are
89 replaced with URL-like ones (@code{yggdrasils://PRV?bind=BIND1&bind=BIND2&pub=PUB}).
90
91 @item
92 Ability to pass multicast-related parameters to Yggdrasil configuration.
93
94 @item
95 @command{nncp-daemon} is able to listen on both TCP and Yggdrasil-driven
96 sockets simultaneously.
97
98 @item
99 @command{nncp-daemon}'s listening on peering endpoint socket is optional
100 -- you can be reached through the peers.
101
102 @end itemize
103
104 @node Release 8_1_0
105 @section Release 8.1.0
106 @itemize
107
108 @item
109 @command{nncp-cfgdir} does not require @code{self} section existence in
110 configuration file.
111
112 @item
113 Ability to act as Yggdrasil network client, using online protocol on top of it.
114
115 @end itemize
116
117 @node Release 8_0_2
118 @section Release 8.0.2
119 @itemize
120
121 @item
122 Fixed sending ability to areas.
123
124 @end itemize
125
126 @node Release 8_0_1
127 @section Release 8.0.1
128 @itemize
129
130 @item
131 Fixed incorrect @code{freq.chunked} value calculation. If it was missed,
132 then chunked transfer mode was forcefully turned on anyway.
133
134 @item
135 Fixed incorrect full file's size calculation in @file{.nncp.meta}.
136
137 @end itemize
138
139 @node Release 8_0_0
140 @section Release 8.0.0
141 @itemize
142
143 @item
144 @strong{Incompatible} encrypted packet format change: payload and pad
145 sizes are sent in-bound in the encrypted stream. That gives ability to
146 streamingly create encrypted packets, without knowing sizes in advance,
147 without creating temporary file or buffer data in memory.
148
149 @item
150 Proper encrypted packet padding verification is done now. This is not
151 critical issue, but previously neither padding value, nor its size were
152 authenticated, giving ability to iteratively strip trailing bytes and
153 determine payload's size by observing the reaction of the encrypted
154 packet processing.
155
156 @item
157 @command{nncp-exec} loses its @option{-use-tmp} option, because of
158 streaming-compatible encrypted packets format.
159
160 @item
161 @command{nncp-file} and @command{nncp-exec} commands have
162 @option{-maxsize} option, limiting maximal resulting encrypted packet's
163 maximal size (returning error if it is exceeded). Could be useful,
164 because no payload size could be known in advance.
165
166 @end itemize
167
168 @node Release 7_7_0
169 @section Release 7.7.0
170 @itemize
171
172 @item
173 Experimental @code{kqueue} and @code{inotify} based notifications
174 support about spool directory changes, for reducing their often reading
175 overhead.
176
177 @item
178 @file{.seen} and @file{.hdr} files moved to @file{seen/} and @file{hdr/}
179 subdirectories, for faster scanning of spool directories.
180 Current files migration required:
181
182 @example
183 $ find $NNCPSPOOL -type f -name "*.hdr" -exec rm @{@} +
184
185 $ find $NNCPSPOOL -type d -name rx | while read rx ; do
186     cd $rx
187     mkdir -p seen
188     find . -type f -name "*.seen" | while read fn ; do
189         mv $fn seen/$@{fn%.seen@}
190     done
191 done
192
193 $ find $NNCPSPOOL -type d -name area | while read area ; do
194     find $area -type f -name "*.seen" | while read fn ; do
195         mv $fn $@{fn%.seen@}
196     done
197 done
198 @end example
199
200 @end itemize
201
202 @node Release 7_6_0
203 @section Release 7.6.0
204 @itemize
205
206 @item
207 Logging may be done to specified opened file descriptor
208 (@env{$NNCPLOG=FD:5} for example).
209 That is friendly to use under @command{daemontools}.
210
211 @item
212 Added additional checks of public keys existence in configuration file,
213 preventing some commands from failing.
214
215 @end itemize
216
217 @node Release 7_5_1
218 @section Release 7.5.1
219 @itemize
220
221 @item
222 NNCP builds on NetBSD.
223
224 @end itemize
225
226 @node Release 7_5_0
227 @section Release 7.5.0
228 @itemize
229
230 @item
231 @command{nncp-daemon} is compatible with UCSPI-TCP interface, so log
232 will contain remote side's address (when running under appropriate
233 utility). @option{-ucspi} option should be used instead of @option{-inetd}.
234
235 @item
236 @command{nncp-call} can be UCSPI-TCP client, using @option{-ucspi} option.
237
238 @item
239 Do not exit if some of MCD network interfaces can not be listened --
240 only warn about that.
241
242 @end itemize
243
244 @node Release 7_4_0
245 @section Release 7.4.0
246 @itemize
247
248 @item
249 Fixed simultaneous @command{nncp-daemon} and @command{nncp-caller} MCD work.
250
251 @end itemize
252
253 @node Release 7_3_2
254 @section Release 7.3.2
255 @itemize
256
257 @item
258 @command{hjson-cli} utility builds in vendor-mode now.
259
260 @end itemize
261
262 @node Release 7_3_1
263 @section Release 7.3.1
264 @itemize
265
266 @item
267 Fixed possibly left opened file descriptor in online commands.
268
269 @item
270 Severely decreased memory usage of MTH hashing.
271
272 @end itemize
273
274 @node Release 7_3_0
275 @section Release 7.3.0
276 @itemize
277
278 @item
279 Fixed some workability problems on 32-bit systems with big files.
280
281 @item
282 Ability to use directory with a bunch of files as a configuration.
283 @command{nncp-cfgdir} command appeared.
284
285 @end itemize
286
287 @node Release 7_2_1
288 @section Release 7.2.1
289 @itemize
290
291 @item
292 Small optimizations in online commands.
293
294 @end itemize
295
296 @node Release 7_2_0
297 @section Release 7.2.0
298 @itemize
299
300 @item
301 @command{nncp-trns} command appeared for manual transition packets creation.
302
303 @item
304 If destination node of transitional packet has non empty @option{via}
305 route, then do not ignore, but use it.
306
307 @item
308 Do not relay multicast packet to area message's originator, that
309 obviously has seen its own packet.
310
311 @item
312 Much less memory usage during MTH hashing when offset is zero: when
313 packet is not resumed, but for example checked with @command{nncp-check}
314 command.
315
316 @end itemize
317
318 @node Release 7_1_1
319 @section Release 7.1.1
320 @itemize
321
322 @item
323 Fixed failing directories @code{fsync} after @file{.seen} file creation.
324
325 @end itemize
326
327 @node Release 7_1_0
328 @section Release 7.1.0
329 @itemize
330
331 @item
332 Multicasting areas feature appeared. Implemented merely by an additional
333 plain packet type with @command{nncp-toss}, @command{nncp-file} and
334 @command{nncp-exec} commands modification.
335
336 @item
337 Fixed workability of @command{nncp-file} and @command{nncp-exec}
338 commands, that use temporary file (stdin and @option{-use-tmp}).
339
340 @item
341 Fixed disappearing bad return code in @command{nncp-exec} command.
342
343 @item
344 Fixed invalid @file{.hdr} generation when transitional packets are used.
345
346 @item
347 @option{-all} option appeared in @command{nncp-rm} command, applying to
348 all the nodes at once.
349
350 @item
351 @option{-cycle} option appeared in @command{nncp-check} command, looping
352 the check in infinite cycle.
353
354 @item
355 @command{nncp-rm} command can take node alias name.
356
357 @item
358 @command{nncp-pkt} can parse @file{.hdr} files.
359
360 @end itemize
361
362 @node Release 7_0_0
363 @section Release 7.0.0
364 @itemize
365
366 @item
367 Minimal required Go version 1.13.
368
369 @item
370 Merkle Tree-based Hashing with BLAKE3 (MTH) is used instead of BLAKE2b.
371 Because of that, there are backward @strong{incompatible} changes of
372 encrypted files (everything laying in the spool directory) and
373 @file{.meta} files of chunked transfer.
374
375 Current implementation is far from being optimal: it lacks
376 parallelizable calculations and has higher memory consumption: nearly
377 512 KiB for each 1 GiB of file's data. Future performance and memory
378 size optimizations should not lead to packet's format change. But it is
379 still several times faster than BLAKE2b.
380
381 @item
382 Resumed online downloads, because of MTH, require reading only of the
383 preceding part of file, not the whole one as was before.
384
385 @item
386 @command{nncp-hash} utility appeared for calculating file's MTH hash.
387
388 @item
389 BLAKE2 KDF and XOF functions are replaced with BLAKE3 in encrypted
390 packets. Lowering number of used primitives. Also, its encrypted
391 packet's header is used as an associated data during encryption.
392
393 @item
394 MultiCast Discovery uses
395 @verb{|ff02::4e4e:4350|} address instead of @verb{|ff02::1|}.
396
397 @item
398 @command{nncp-cfgenc} mistakenly asked passphrase three times during encryption.
399
400 @item
401 @command{nncp-stat} reports about partly downloaded packets.
402
403 @item
404 Updated dependencies.
405
406 @end itemize
407
408 @node Release 6_6_0
409 @section Release 6.6.0
410 @itemize
411
412 @item
413 @command{nncp-daemon}, @command{nncp-call} and @command{nncp-caller}
414 commands wait for all background checksummers completion after
415 connection is finished.
416
417 @item
418 Added possibility of address determining through multicast announcement
419 in local area network, so called MCD (MultiCast Discovery).
420
421 @end itemize
422
423 @node Release 6_5_0
424 @section Release 6.5.0
425 @itemize
426
427 @item
428 Fixed segfault in @command{nncp-daemon} when SP handshake did not succeed.
429
430 @item
431 Fixed possible bad return code ignoring in automatic tosser.
432
433 @item
434 Fixed race during file descriptors closing when online protocol call is
435 finished, that could lead to write error of received packet fragment.
436
437 @item
438 Kill all packet transmission progress bars in @command{nncp-daemon},
439 @command{nncp-call} and @command{nncp-caller} when call is finished.
440
441 @end itemize
442
443 @node Release 6_4_0
444 @section Release 6.4.0
445 @itemize
446
447 @item
448 Fixed possible race in online protocol, that lead to panic.
449
450 @end itemize
451
452 @node Release 6_3_0
453 @section Release 6.3.0
454 @itemize
455
456 @item
457 Fixed possible panic while showing progress during online protocol.
458
459 @end itemize
460
461 @node Release 6_2_1
462 @section Release 6.2.1
463 @itemize
464
465 @item
466 Three places in logs contained excess @code{%s}.
467
468 @end itemize
469
470 @node Release 6_2_0
471 @section Release 6.2.0
472 @itemize
473
474 @item
475 Returned @command{nncp-caller}'s @option{-autotoss*} options workability.
476
477 @item
478 Yet another logging refactoring and simplification.
479 Should be no visible differences to the end user.
480
481 @end itemize
482
483 @node Release 6_1_0
484 @section Release 6.1.0
485 @itemize
486
487 @item
488 Optimization: most commands do not keep opened file descriptors now.
489 Previously you can exceed maximal number of opened files if you have got
490 many packets in the spool directory.
491
492 @item
493 Optimization: do not close file descriptor of the file we download
494 online. Previously each chunk lead to expensive open/close calls.
495
496 @item
497 Online downloaded files are saved with @file{.nock} (non-checksummed)
498 suffix, waiting either for @command{nncp-check}, or online daemons to
499 perform integrity check.
500
501 @item
502 Optimization: files, that are not resumed, are checksummed immediately
503 during the online download, skipping @file{.nock}-intermediate step.
504
505 @item
506 Ability to store encrypted packet's header in @file{.hdr} file, close to
507 the packet itself. That can greatly increase performance of packets
508 listing on filesystems with big block's size.
509
510 @end itemize
511
512 @node Release 6_0_0
513 @section Release 6.0.0
514 @itemize
515
516 @item
517 Log uses human readable and easy machine parseable
518 @url{https://www.gnu.org/software/recutils/, recfile} format for the
519 records, instead of structured RFC 3339 lines. Old logs are not readable
520 by @command{nncp-log} anymore.
521
522 @item
523 @option{-autotoss*} option workability with @command{nncp-daemon}'s
524 @option{-inetd} mode.
525
526 @item
527 Call's @option{when-tx-exists} allows to make a call only when outbound
528 packets exists. Combined with seconds-aware cron expression that can be
529 used as some kind of auto dialler.
530
531 @item
532 @command{nncp-cronexpr} command allows you to check validity and
533 expectations of specified cron expression.
534
535 @end itemize
536
537 @node Release 5_6_0
538 @section Release 5.6.0
539 @itemize
540
541 @item
542 @option{-autotoss*} option runs tosser not after the call, but every
543 second while it is active.
544
545 @item
546 @option{autotoss}, @option{autotoss-doseen},
547 @option{autotoss-nofile}, @option{autotoss-nofreq},
548 @option{autotoss-noexec}, @option{autotoss-notrns} options available in
549 @option{calls} configuration section. You can configure per-call
550 automatic tosser options.
551
552 @item
553 Use vendoring, instead of @env{$GOPATH} overriding during tarball
554 installation, because current minimal Go's version is 1.12 and it
555 supports modules.
556
557 @end itemize
558
559 @node Release 5_5_1
560 @section Release 5.5.1
561 @itemize
562
563 @item
564 Respect for @env{$BINDIR}, @env{$INFODIR} and @env{$DOCDIR} environment
565 variables in @file{config} during installation.
566
567 @end itemize
568
569 @node Release 5_5_0
570 @section Release 5.5.0
571 @itemize
572
573 @item
574 Bugfixes in @command{nncp-call(er)}/@command{nncp-daemon},
575 @command{nncp-bundle} and @command{nncp-stat}.
576
577 @item
578 @command{nncp-rm} has @option{-dryrun} and @option{-older} options now.
579
580 @item
581 @command{nncp-exec} has @option{-use-tmp} and @option{-nocompress}
582 options now. Uncompressed packets are not compatible with previous NNCP
583 versions.
584
585 @item
586 @command{nncp-call}, @command{nncp-caller} and @command{nncp-daemon} commands
587 have @option{-autotoss*} options for running tosser after call is ended.
588
589 @item
590 Updated dependencies. Minimal required Go version is 1.12.
591
592 @end itemize
593
594 @node Release 5_4_1
595 @section Release 5.4.1
596 @itemize
597
598 @item
599 Fixed @code{SENDMAIL} variable usage during the build.
600
601 @end itemize
602
603 @node Release 5_4_0
604 @section Release 5.4.0
605 @itemize
606
607 @item
608 Updated dependencies.
609
610 @item
611 Build system is moved from Makefiles to @url{http://cr.yp.to/redo.html, redo}.
612 This should not influence package maintainers, because minimal @command{redo}
613 implementation is included in tarball.
614
615 @end itemize
616
617 @node Release 5_3_3
618 @section Release 5.3.3
619 @itemize
620
621 @item
622 More various error checks.
623
624 @item
625 Updated dependencies.
626
627 @end itemize
628
629 @node Release 5_3_2
630 @section Release 5.3.2
631 @itemize
632
633 @item
634 Fixed incorrect logic of @option{onlinedeadline} timeout, where
635 connection won't take into account incoming packets events and will
636 forcefully disconnect.
637
638 @end itemize
639
640 @node Release 5_3_1
641 @section Release 5.3.1
642 @itemize
643
644 @item
645 Fixed @option{onlinedeadline} workability with call addresses that use
646 external commands (@verb{#"|somecmd"#}).
647
648 @item
649 @command{nncp-stat} has @option{-pkt} option displaying information
650 about each packet in the spool.
651
652 @end itemize
653
654 @node Release 5_3_0
655 @section Release 5.3.0
656 @itemize
657
658 @item
659 Progress messages contain prefix, describing the running action.
660
661 @item
662 Fixed not occurring handshake messages padding.
663
664 @item
665 Finish all SP protocol related goroutines, less memory leak.
666
667 @item
668 SP protocol generates less socket write calls, thus generating less TCP
669 packets.
670
671 @item
672 Check @option{onlinedeadline} and @option{maxonlinetime} options every
673 second, independently from socket reads (up to 10 seconds).
674
675 @item
676 Once per minute, if no other traffic exists, PING packets are sent in
677 SP-connection. That allows faster determining of connection unworkability.
678
679 @item
680 @command{nncp-toss} uses lock-file to prevent simultaneous tossing.
681
682 @end itemize
683
684 @node Release 5_2_1
685 @section Release 5.2.1
686 @itemize
687
688 @item
689 Fixed SP protocol error handling, sometimes causing program panic.
690
691 @end itemize
692
693 @node Release 5_2_0
694 @section Release 5.2.0
695 @itemize
696
697 @item
698 Most commands by default show oneline operations progress.
699 @option{-progress}, @option{-noprogress} command line options,
700 @option{noprogress} configuration file option appeared.
701
702 @item
703 Fixed incorrect @command{nncp-check} command return code, that returned
704 bad code when everything is good.
705
706 @item
707 Free disk space check during @command{nncp-bundle -rx} call.
708
709 @end itemize
710
711 @node Release 5_1_2
712 @section Release 5.1.2
713 @itemize
714
715 @item
716 @strong{Critical} vulnerability: remote peers authentication could lead
717 to incorrect identification of remote side, allowing foreign encrypted
718 packets downloading.
719
720 @item
721 Bugfix: private and public Noise keys were swapped in newly created
722 configuration files, that lead to inability to authenticate online peers.
723
724 @item
725 Explicit directories @code{fsync}-ing for guaranteed files renaming.
726
727 @end itemize
728
729 @node Release 5_1_1
730 @section Release 5.1.1
731 @itemize
732
733 @item
734 Fixed workability of @command{nncp-file} with @option{-chunked 0} option.
735
736 @end itemize
737
738 @node Release 5_1_0
739 @section Release 5.1.0
740 @itemize
741
742 @item
743 @command{nncp-file} can send directories, automatically creating pax
744 archive on the fly.
745
746 @item
747 Free disk space is checked during outbound packets creation.
748
749 @item
750 @option{freq}, @option{freqminsize}, @option{freqchunked} configuration
751 file options replaced with the structure:
752 @option{freq: @{path: @dots{}, minsize: @dots{}, chunked: @dots{}@}}.
753
754 @item
755 Added @option{freq.maxsize} configuration file option, forbidding of
756 freq sending larger than specified size.
757
758 @item
759 Ability to notify about successfully executed commands (exec) with
760 @option{notify.exec} configuration file option.
761
762 @end itemize
763
764 @node Release 5_0_0
765 @section Release 5.0.0
766 @itemize
767
768 @item
769 @strong{Incompatible} configuration file format change: YAML is
770 replaced with Hjson, due to its simplicity, without noticeable lack
771 of either functionality or convenience.
772
773 @item
774 @strong{Incompatible} plain packet format changes. Older versions are
775 not supported. @code{zlib} compression is replaced with
776 @code{Zstandard}, due to its speed and efficiency, despite library
777 version is not mature enough.
778
779 @item
780 Ability to call remote nodes via pipe call of external command, not only
781 through TCP.
782
783 @item
784 @command{nncp-cfgnew} generates configuration file with many
785 comments. @option{-nocomments} option can be used for an old
786 behaviour.
787
788 @item
789 Duplicate filenames have @file{.CTR} suffix, instead of @file{CTR}, to
790 avoid possible collisions with @file{.nncp.chunkCTR}.
791
792 @item
793 Ability to override process umask through configuration file option.
794
795 @item
796 Files and directories are created with 666/777 permissions by default,
797 allowing control with @command{umask}.
798
799 @item
800 Updated dependencies.
801
802 @item
803 Full usage of go modules for dependencies management
804 (@code{go.cypherpunks.ru/nncp/v5} namespace is used).
805
806 @item
807 Forbid any later GNU GPL version autousage
808 (project's licence now is GNU GPLv3-only).
809
810 @end itemize
811
812 @node Release 4_1
813 @section Release 4.1
814 @itemize
815 @item Workability on GNU/Linux systems and Go 1.10 is fixed.
816 @end itemize
817
818 @node Release 4_0
819 @section Release 4.0
820 @itemize
821
822 @item
823 @strong{Incompatible} encrypted and eblob packet format change: AEAD
824 encryption mode with 128 KiB blocks is used now, because previously
825 @command{nncp-toss} did not verify encrypted packet's MAC before feeding
826 decrypted data to external command. Older versions are not supported.
827
828 @item
829 Available free space checking before copying in @command{nncp-xfer},
830 @command{nncp-daemon}, @command{nncp-call(er)}.
831
832 @item
833 @command{nncp-call} has ability only to list packets on remote node,
834 without their transmission.
835
836 @item
837 @command{nncp-call} has ability to transfer only specified packets.
838
839 @item
840 Workability of @option{xxrate} preference in @option{calls}
841 configuration file section.
842
843 @item
844 Dependant libraries are updated.
845
846 @item
847 Minor bugfixes.
848
849 @item
850 Begin using of @code{go.mod} subsystem.
851
852 @end itemize
853
854 @node Release 3_4
855 @section Release 3.4
856 @itemize
857 @item @command{nncp-daemon} can be run as @command{inetd}-service.
858 @end itemize
859
860 @node Release 3_3
861 @section Release 3.3
862 @itemize
863
864 @item
865 @command{nncp-daemon}, @command{nncp-call}, @command{nncp-caller} check
866 if @file{.seen} exists and treat it like file was already downloaded.
867 Possibly it was transferred out-of-bound and remote side needs to be
868 notifier about that.
869
870 @item
871 If higher priority packet is spooled, then @command{nncp-daemon} will
872 queue its sending first, interrupting lower priority transmissions.
873
874 @item
875 Simple packet rate limiter added to online-related tools
876 (@command{nncp-daemon}, @command{nncp-call}, @command{nncp-caller}).
877
878 @item
879 Ability to specify niceness with symbolic notation:
880 @verb{|NORMAL|}, @verb{|BULK+10|}, @verb{|PRIORITY-5|}, etc.
881
882 @item
883 Changed default niceness levels:
884 for @command{nncp-exec} from 64 to 96,
885 for @command{nncp-freq} from 64 to 160,
886 for @command{nncp-file} from 196 to 224.
887
888 @end itemize
889
890 @node Release 3_2
891 @section Release 3.2
892 @itemize
893 @item
894 @strong{Incompatible} @emph{bundle} archive format changes and
895 @command{nncp-bundle} workability with Go 1.10+. Bundles must be
896 valid tar archives, but Go 1.9 made them invalid because of long paths
897 inside. NNCP accidentally was dependant on that bug. Explicit adding of
898 @file{NNCP/} directory in archive restores workability with valid tar
899 archives.
900 @end itemize
901
902 @node Release 3_1
903 @section Release 3.1
904 @itemize
905 @item
906 Ability to disable relaying at all using @verb{|-via -|} command line option.
907 @end itemize
908
909 @node Release 3_0
910 @section Release 3.0
911 @itemize
912
913 @item
914 @strong{Incompatible} plain packet format changes. Older versions are
915 not supported.
916
917 @item
918 Ability to queue remote command execution, by configuring @option{exec}
919 option in configuration file and using @command{nncp-exec} command:
920     @itemize
921     @item
922     @command{nncp-mail} command is replaced with more flexible
923     @command{nncp-exec}. Instead of @verb{|nncp-mail NODE RECIPIENT|}
924     you must use @verb{|nncp-exec NODE sendmail RECIPIENT|}.
925     @item
926     @option{sendmail} configuration file option is replaced with
927     @option{exec}. @verb{|sendmail: [...]|} must be replaced with
928     @verb{|exec: sendmail: [...]|}.
929     @end itemize
930
931 @item
932 Ability to override @option{via} configuration option for destination
933 node via @option{-via} command line option for following commands:
934 @command{nncp-file}, @command{nncp-freq}, @command{nncp-exec}.
935
936 @item
937 Chunked files, having size less than specified chunk size, will be sent
938 as an ordinary single file.
939
940 @item
941 Exec commands are invoked with additional @env{$NNCP_NICE} and
942 @env{$NNCP_SELF} environment variables.
943
944 @item
945 Files, that are sent as a reply to freq, have niceness level taken from
946 the freq packet. You can set desired niceness during @command{nncp-freq}
947 invocation using @option{-replynice} option.
948
949 @item
950 @command{nncp-toss} command can ignore specified packet types during
951 processing: @option{-nofile}, @option{-nofreq}, @option{-noexec},
952 @option{-notrns}.
953
954 @item
955 @command{nncp-file} command uses
956 @option{FreqMinSize}/@option{FreqChunked} configuration file options
957 for @option{-minsize}/@option{-chunked} by default. You can turn this
958 off by specifying zero value.
959
960 @end itemize
961
962 @node Release 2_0
963 @section Release 2.0
964 @itemize
965
966 @item
967 @strong{Incompatible} encrypted/eblob packet format changes. Older
968 versions are not supported.
969
970 @item
971 Twofish encryption algorithm is replaced with ChaCha20. It is much more
972 faster. One cryptographic primitive less.
973
974 @item
975 HKDF-BLAKE2b-256 KDF algorithm is replaced with BLAKE2Xb XOF. Yet
976 another cryptographic primitive less (assuming that BLAKE2X is nearly
977 identical to BLAKE2).
978
979 @end itemize
980
981 @node Release 1_0
982 @section Release 1.0
983 @itemize
984
985 @item
986 @strong{Incompatible} encrypted packet format changes. Older versions
987 are not supported.
988
989 @item
990 @command{nncp-bundle} command can either create stream of encrypted
991 packets, or digest it. It is useful when dealing with
992 @code{stdin}/@code{stdout} based transmission methods (like writing to
993 CD-ROM without intermediate prepared ISO image and working with tape
994 drives).
995
996 @item
997 @command{nncp-toss} is able to create @file{.seen} files preventing
998 duplicate packets receiving.
999
1000 @item
1001 Single background checksum verifier worker is allowed in
1002 @command{nncp-call}. This is helpful when thousands of small inbound
1003 packets could create many goroutines.
1004
1005 @item
1006 Ability to override path to spool directory and logfile through either
1007 command line argument, or environment variable.
1008
1009 @item
1010 @command{nncp-rm} is able to delete outbound/inbound, @file{.seen},
1011 @file{.part}, @file{.lock} and temporary files.
1012
1013 @end itemize
1014
1015 @node Release 0_12
1016 @section Release 0.12
1017 @itemize
1018 @item Sendmail command is called with @env{$NNCP_SENDER} environment variable.
1019 @end itemize
1020
1021 @node Release 0_11
1022 @section Release 0.11
1023 @itemize
1024 @item @command{nncp-stat}'s command output is sorted by node name.
1025 @end itemize
1026
1027 @node Release 0_10
1028 @section Release 0.10
1029 @itemize
1030 @item
1031 @command{nncp-freq}'s @file{DST} argument is optional now. Last
1032 @file{SRC} path's element will be used by default.
1033 @end itemize
1034
1035 @node Release 0_9
1036 @section Release 0.9
1037 @itemize
1038 @item
1039 Fix @option{-rx}/@option{-tx} arguments processing in
1040 @command{nncp-call} command. They were ignored.
1041 @end itemize
1042
1043 @node Release 0_8
1044 @section Release 0.8
1045 @itemize
1046 @item
1047 Little bugfix in @command{nncp-file} command, where @option{-minsize}
1048 option for unchunked transfer was not in KiBs, but in bytes.
1049 @end itemize
1050
1051 @node Release 0_7
1052 @section Release 0.7
1053 @itemize
1054
1055 @item
1056 Ability to feed @command{nncp-file} from @code{stdin}, that uses an
1057 encrypted temporary file for that.
1058
1059 @item
1060 Chunked files transmission appeared with corresponding
1061 @command{nncp-reass} command and @option{freqchunked} configuration file
1062 entry. Useful for transferring big files over small storage devices.
1063
1064 @item
1065 @option{freqminsize} configuration file option, analogue to
1066 @option{-minsize} one.
1067
1068 @item
1069 @command{nncp-xfer}'s @option{-force} option is renamed to
1070 @option{-mkdir} for clarity.
1071
1072 @item
1073 @option{-minsize} option is specified in KiBs, not bytes, for
1074 convenience.
1075
1076 @item
1077 @command{nncp-newcfg} command is renamed to @command{nncp-cfgnew},
1078 and @command{nncp-mincfg} to @command{nncp-cfgmin} -- now they have
1079 common prefix and are grouped together for convenience.
1080
1081 @item
1082 @command{nncp-cfgenc} command appeared, allowing configuration file
1083 encryption/decryption, for keeping it safe without any either OpenPGP or
1084 similar tools usage.
1085
1086 @item
1087 Cryptographic libraries (dependencies) are updated.
1088
1089 @end itemize
1090
1091 @node Release 0_6
1092 @section Release 0.6
1093 @itemize
1094 @item Small @command{nncp-rm} command appeared.
1095 @item Cryptographic libraries (dependencies) are updated.
1096 @end itemize
1097
1098 @node Release 0_5
1099 @section Release 0.5
1100 @itemize
1101 @item
1102 Trivial small fix in default niceness level of @command{nncp-file}
1103 and @command{nncp-freq} commands.
1104 @end itemize
1105
1106 @node Release 0_4
1107 @section Release 0.4
1108 @itemize
1109
1110 @item
1111 Small fix in @command{nncp-call}, @command{nncp-caller},
1112 @command{nncp-daemon}: they can segmentation fail sometimes (no data is
1113 lost).
1114
1115 @item
1116 @command{nncp-newnode} renamed to @command{nncp-newcfg} -- it is shorter
1117 and more convenient to use.
1118
1119 @item
1120 @command{nncp-mincfg} command appeared: helper allowing to create
1121 minimalistic stripped down configuration file without private keys, that
1122 is useful during @command{nncp-xfer} usage.
1123
1124 @end itemize
1125
1126 @node Release 0_3
1127 @section Release 0.3
1128 @itemize
1129 @item Fixed compatibility with Go 1.6.
1130 @end itemize
1131
1132 @node Release 0_2
1133 @section Release 0.2
1134 @itemize
1135
1136 @item
1137 @strong{Incompatible} packet's format change (magic number is changed
1138 too): size field is encrypted and is not send in plaintext anymore.
1139
1140 @item
1141 @option{-minsize} option gives ability to automatically pad outgoing
1142 packets to specified minimal size.
1143
1144 @item
1145 @command{nncp-daemon} and @command{nncp-call}/@command{nncp-caller}
1146 always check new @emph{tx} packets appearance in the background while
1147 connected. Remote side is immediately notified.
1148
1149 @item
1150 @option{-onlinedeadline} option gives ability to configure timeout of
1151 inactivity of online connection, when it could be disconnected. It could
1152 be used to keep connection alive for a long time.
1153
1154 @item
1155 @option{-maxonlinetime} option gives ability to set maximal allowable
1156 online connection aliveness time.
1157
1158 @item
1159 @command{nncp-caller} command appeared: cron-ed TCP daemon caller.
1160
1161 @item
1162 @command{nncp-pkt} command can decompress the data.
1163
1164 @end itemize