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