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