aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 631c35f462507c0138a4611cc9871906d4e1dc18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
Sat, 3 Apr 2021 09:40:46 +0200 (08fe7735b)
handbook: Add section on commit messages and developer branches - Martin Schanzenbach

Thu, 1 Apr 2021 00:41:38 +0200 (9f340d5cc)
SETU: added some more perf messurement point for var message size - Elias Summermatter

Thu, 1 Apr 2021 00:15:43 +0200 (12bb61317)
SETU: fixed some bug in rand element gen and added variable payload for perfmance - Elias Summermatter

Wed, 31 Mar 2021 11:49:10 +0200 (902331756)
SETU: Added new operation parameters for performance tests - Elias Summermatter

Wed, 31 Mar 2021 11:16:38 +0200 (b5660e0a3)
SETU: imporved tests - Elias Summermatter

Tue, 30 Mar 2021 19:26:40 +0200 (ca4c9eae2)
UTIL/SCALARPRODUCT: Do not build ECC dlog or scalarproduct with incompatible libgcrypt versions (>=1.9.0) - Martin Schanzenbach

Mon, 22 Mar 2021 20:06:33 +0100 (a42d7df64)
fix #6808: gnunet-bcd card generation - Martin Schanzenbach

Thu, 18 Mar 2021 18:44:46 +0100 (7d85c27e9)
Fixed setu tests and state maschine - Elias Summermatter

Thu, 18 Mar 2021 17:55:24 +0100 (8cd1e1929)
Fixed some bug in the statemaschin implementation of setu - Elias Summermatter

Thu, 18 Mar 2021 16:07:40 +0100 (c4ccd7550)
Setu tests use gnunet internal functions to generate randum elements - Elias Summermatter

Thu, 18 Mar 2021 11:48:42 +0100 (f9ae0c23c)
Added working test with randum set - Elias Summermatter

Thu, 18 Mar 2021 08:45:31 +0100 (0d6237ae0)
Added some randum elemet generation test for setu - Elias Summermatter

Sun, 14 Mar 2021 14:04:00 +0100 (b47586e76)
add packaging notice; fix #5633 - Martin Schanzenbach

Tue, 9 Mar 2021 18:26:28 +0100 (0b2c0f22f)
IDENTITY: Fix wrong key construction for anonymous ECDSA identity - Martin Schanzenbach

Tue, 2 Mar 2021 17:16:18 +0100 (45ceb4fdf)
add base32 encoder/decoder - Christian Grothoff

Sun, 28 Feb 2021 13:51:25 +0100 (4cffc642c)
build: do not redefine AM_MAKEINFOHTMLFLAGS - Martin Schanzenbach

Sun, 28 Feb 2021 11:15:55 +0100 (eb8ca760c)
GANA: Use GANA generated header for GNS record types. Update handbook - Martin Schanzenbach

Tue, 23 Feb 2021 14:29:47 +0100 (d528f6cfb)
HELLO: Fix netdb.h nonsense with h_addr - Martin Schanzenbach

Tue, 23 Feb 2021 10:42:57 +0100 (74a234f0b)
HANDBOOK: Add some info on TNG - Martin Schanzenbach

Sun, 21 Feb 2021 20:56:47 +0100 (05040a491)
HELLO: Add test for NG API; fix extraction more - Martin Schanzenbach

Sun, 21 Feb 2021 16:44:51 +0100 (783a12b3c)
HELLO-TNG: Fix parsing; sill broken - Martin Schanzenbach

Sun, 21 Feb 2021 11:46:16 +0100 (f5439c229)
TNG: Add queue update handling - Martin Schanzenbach

Sun, 21 Feb 2021 10:53:34 +0100 (a3971a93c)
Add struct names for FS events. #6743 - Martin Schanzenbach

Thu, 18 Feb 2021 16:51:47 +0100 (8095b1a1b)
SetU move check to union - Elias Summermatter

Wed, 17 Feb 2021 18:00:43 +0100 (08adc88b4)
Setu integrated new phase full receiving as described in rfc draft - Elias Summermatter

Wed, 17 Feb 2021 17:32:23 +0100 (d5bf65f2b)
Renamed Phase Expect IBF Cont -> Expect IBF Last - Elias Summermatter

Wed, 17 Feb 2021 17:26:35 +0100 (d852cb5a6)
Renamed Phase Done -> Finished - Elias Summermatter

Wed, 17 Feb 2021 17:04:15 +0100 (be8897e14)
Renamed Phase inventory passive -> passive decoding - Elias Summermatter

Wed, 17 Feb 2021 15:57:46 +0100 (333459251)
Renamed Phase inventory active -> active decoding & Added idea folder to git ignore - Elias Summermatter

Sat, 30 Jan 2021 16:36:14 -0500 (5b152adc0)
use AS_VERSION_COMPARE instead of AX_COMPARE_VERSION - Thien-Thi Nguyen

Sat, 30 Jan 2021 08:37:12 -0500 (de1b87ea3)
fix #6722: use AX_COMPARE_VERSION - Thien-Thi Nguyen

Sat, 30 Jan 2021 12:41:15 +0100 (a5f200d53)
fix #6690 - Christian Grothoff

Thu, 28 Jan 2021 22:28:01 +0100 (a2169368b)
implement #6716 - Christian Grothoff

Thu, 7 Jan 2021 22:22:48 +0100 (4769344a7)
convert to GMT, not localtime in GNUNET_TIME_year_to_time - Christian Grothoff

Thu, 7 Jan 2021 10:26:54 +0100 (5b10ad755)
properly document return value of GNUNET_PROGRAM_run - Christian Grothoff

Sat, 2 Jan 2021 13:47:16 +0100 (eab08cec9)
do not output synthetic paths - Christian Grothoff

Sat, 2 Jan 2021 11:24:26 +0100 (0d4337da2)
fix /proc/PID/maps parser format string - Christian Grothoff

Thu, 31 Dec 2020 09:12:43 +0100 (ebd853c83)
do not use atomic write for configuration file, we may not have permissions to do this, also should not be necessary - Christian Grothoff

Wed, 30 Dec 2020 20:58:55 +0900 (c0465ff92)
RECLAIM: Fix quirky OIDC address handling - Martin Schanzenbach

Sat, 26 Dec 2020 14:15:58 +0900 (75a3a90fb)
RECLAIM: automatically purge dangling references - Martin Schanzenbach

Sat, 19 Dec 2020 18:43:38 +0100 (3636ea628)
change GNUNET_DISK_fn_write() to always do atomic writes and to NOT overwrite existing files; also change the return value to not return the size of the written file but GNUNET_OK on success, and integrate creating the directory if needed; breaks API, hence bumping libgnunetutil version - Christian Grothoff

Tue, 15 Dec 2020 04:54:32 -0500 (407765df1)
include Configuration Handbook in gnunet.info - Thien-Thi Nguyen

Tue, 15 Dec 2020 03:43:27 -0500 (db9d81947)
add pxref to ‘Config file format’ - Thien-Thi Nguyen

Tue, 15 Dec 2020 03:26:26 -0500 (52986bf33)
[doc] Add section "Config file format" - Thien-Thi Nguyen

Wed, 9 Dec 2020 23:00:07 +0100 (7d9592f20)
add GNUNET_CRYPTO_hash_context_copy() function - Christian Grothoff

Tue, 8 Dec 2020 16:50:27 +0900 (7ce054864)
RECLAIM: Return userinfo claims from cache - Martin Schanzenbach

Fri, 4 Dec 2020 17:36:35 +0100 (1346641a1)
gnunet-crypto-tvg: fix bogus label - Florian Dold

Fri, 4 Dec 2020 17:22:38 +0100 (4c10ff3b4)
gnunet-crypto-tvg: add verification mode - Florian Dold

Fri, 4 Dec 2020 14:52:45 +0100 (1a3070b15)
gnunet-crypto-tvg: output JSON, fix memleaks - Florian Dold

Sat, 21 Nov 2020 22:58:44 +0000 (d2e10ef67)
rps: fix another 'format not a string literal' warning - Daniel Golle

Mon, 16 Nov 2020 23:57:08 +0100 (91e8c2ff2)
rps: deal with currently unused code - Julius Bünger

Mon, 16 Nov 2020 23:36:12 +0100 (d30ec0f1f)
rps: comment ill-defined code - Julius Bünger

Mon, 16 Nov 2020 22:59:12 +0100 (0950b1df7)
rps: properly initialise memory - Julius Bünger

Mon, 16 Nov 2020 22:56:47 +0100 (266823196)
rps: use proper signedness - Julius Bünger

Mon, 16 Nov 2020 22:56:27 +0100 (89ea76819)
rps: use correct buffer sizes - Julius Bünger

Mon, 16 Nov 2020 22:55:49 +0100 (607211bb7)
rps: use correct types in format strings - Julius Bünger

Mon, 16 Nov 2020 22:53:30 +0100 (0108f132a)
rps: get rid of warnings about harmless uninitialized variables - Julius Bünger

Mon, 16 Nov 2020 04:54:21 +0100 (41000a00c)
rps: fix sources for multiple warnings - Julius Bünger

Sat, 14 Nov 2020 19:02:01 +0000 (ea18ebde8)
rps: fix format not a string literal and no format arguments - Daniel Golle

Sat, 14 Nov 2020 10:57:31 +0900 (de83cfe23)
Updating ChangeLog for 0.14.0 - Martin Schanzenbach

Thu, 5 Nov 2020 21:20:38 +0100 (c07ae5c8d)
additional abstraction for identity keys - TheJackiMonster

Thu, 1 Oct 2020 21:13:43 +0200 (8bf864c25)
adding the messenger service and its client-side library - TheJackiMonster

Sat, 31 Oct 2020 00:12:01 +0100 (778425469)
only call PGntuples once - Christian Grothoff

Sun, 25 Oct 2020 22:32:14 +0100 (f7c320990)
implement #6524 - Christian Grothoff

Sun, 25 Oct 2020 21:32:57 +0100 (d8cf5cbfc)
fix #6525: handle explicit null in JSON nicely - Christian Grothoff

Sat, 24 Oct 2020 00:19:44 +0200 (f7b17098b)
new translation - Christian Grothoff

Tue, 20 Oct 2020 13:10:43 +0200 (acc69a8e5)
fix missing MHD flags - Christian Grothoff

Fri, 16 Oct 2020 13:09:21 +0200 (2e494a18a)
GNS: New symmetric crypto - Martin Schanzenbach

Tue, 13 Oct 2020 12:25:31 +0200 (e0ff55875)
enable more format string warnings - Christian Grothoff

Sat, 10 Oct 2020 17:19:53 +0200 (77339944c)
Allow applications to change ProjectData with only some fields - Christian Grothoff

Sun, 27 Sep 2020 19:55:09 +0100 (daa0f22b6)
postgres: drop use of 'WITH OIDS' - Daniel Golle

Fri, 2 Oct 2020 12:04:42 +0200 (400f527fb)
UTIL: Never localize fancy strings in to_string to prevent breaking from_string parser - Martin Schanzenbach

Thu, 24 Sep 2020 22:04:17 +0200 (02fb94bd4)
Disable some diagnostic until TNG is available - Christian Grothoff

Mon, 21 Sep 2020 10:21:51 +0200 (87467c4aa)
added test_communicator_basic-udp test case for buildbot - t3sserakt

Sun, 6 Sep 2020 13:33:31 +0200 (fa067384b)
GNUnet 0.13.3 - Martin Schanzenbach

Fri, 4 Sep 2020 20:12:00 +0200 (35d7c1f88)
fix: depend on libsodium >=1.0.17. Fixes #6506 - Martin Schanzenbach

Fri, 4 Sep 2020 04:07:46 +0200 (538277ed8)
reclaim: fix cli parameter name for credential ID - Martin Schanzenbach

Wed, 2 Sep 2020 19:26:37 +0200 (3ec73fc68)
gnunet-qr/uri: Fix exit code handling; fix memory corruption - Martin Schanzenbach

Fri, 28 Aug 2020 12:26:52 +0200 (bbf9540c9)
fix order of namespaces in plugin_rest_identity GNUNET_REST_namespace_match() always matched to the first namespace for GET - jospaeth

Wed, 26 Aug 2020 14:49:02 -0400 (49d74db2e)
use (and "GNUnet-ify") libyuarel as a basepoint for uri parsing - Jonathan Buchanan

Sun, 23 Aug 2020 16:52:26 +0200 (ef86866ce)
add function GNUNET_CURL_extend_headers() - Christian Grothoff

Wed, 19 Aug 2020 23:53:02 +0200 (a57d476ab)
reclaim: Attestations now called credentials. Credentials are presented to third parties as presentations. - Martin Schanzenbach

Wed, 19 Aug 2020 13:17:01 +0200 (6531e0387)
break out chapters on SETI and SETUI from SET chapter - Christian Grothoff

Wed, 19 Aug 2020 11:05:13 +0200 (6dabecce0)
change scalarproduct to use seti service in lieu of deprecated set service - Christian Grothoff

Wed, 19 Aug 2020 10:59:27 +0200 (2d010ea15)
change revocation logic to use setu service in lieu of deprecated set service - Christian Grothoff

Tue, 18 Aug 2020 13:35:24 +0200 (2cd052cb8)
Update reclaimID handbook entry - Martin Schanzenbach

Tue, 18 Aug 2020 00:09:59 +0200 (2bce42e5b)
fix: build on openbsd - Martin Schanzenbach

Mon, 17 Aug 2020 14:45:46 +0200 (6f2ee9eb3)
clean up GNUNET_CRYPTO_pow_hash API - Christian Grothoff

Sun, 16 Aug 2020 20:46:39 +0200 (be0475f2a)
split of set union from set service (preliminary) - Christian Grothoff

Wed, 12 Aug 2020 09:36:33 +0200 (99f820453)
fix: GNUNET_is_zero(ptr) should return enum GNUNET_GenericReturnValue. Fixes #6475. - Martin Schanzenbach

Tue, 11 Aug 2020 11:35:06 +0200 (286759692)
fix: mysql version detection - Martin Schanzenbach

Thu, 6 Aug 2020 08:45:40 +0200 (1d4f5263a)
reclaim: Refactoring and more standards compliance with respect to scopes - Martin Schanzenbach

Wed, 5 Aug 2020 11:35:05 +0200 (6e764f4ab)
reclaim: Make SPAs work with public clients. No longer encrypt code. - Martin Schanzenbach

Tue, 4 Aug 2020 21:08:22 +0200 (ade9b5e52)
reclaim: fix #6463 - Martin Schanzenbach

Tue, 4 Aug 2020 19:40:23 +0200 (815ded19f)
rest: fix #6462 - Martin Schanzenbach

Tue, 4 Aug 2020 10:09:45 +0200 (080519e98)
reclaim: do not store access token instead piggyback ticket - Martin Schanzenbach

Mon, 3 Aug 2020 19:37:23 +0200 (8c86c4472)
reclaim: support client credentials in POST body for token request - Martin Schanzenbach

Sat, 1 Aug 2020 16:22:38 +0200 (e44686f08)
fix: reclaim urlenc / revert accidental change - Martin Schanzenbach

Sat, 1 Aug 2020 16:07:08 +0200 (754d8c1b4)
util: add percent/url encoding - Martin Schanzenbach

Thu, 30 Jul 2020 16:12:22 +0530 (8d312646c)
fix SIGSEGV in GNUNET_buffer_write_data_encoded - Florian Dold

Thu, 30 Jul 2020 15:15:59 +0530 (d335baac8)
implement GNUNET_buffer_write_data_encoded - Florian Dold

Wed, 22 Jul 2020 21:47:42 +0200 (8703a0516)
ensure psql fails hard if there is an error in the SQL (fixes #6437) - Christian Grothoff

Sat, 18 Jul 2020 00:44:39 +0200 (7f4ddbcab)
merge flags into enum for GNUNET_DISK_pipe() API, fixing #6188 - Christian Grothoff

Fri, 17 Jul 2020 22:35:36 +0200 (28ab2c446)
avoid boolean flag in GNUNET_OS_start_process() API (fixes #6188) - Christian Grothoff

Fri, 17 Jul 2020 14:26:45 +0200 (0c9911d73)
TNG: Implemented 5530: add replay protection to TCP communicator. Added monotime value checks - t3sserakt

Thu, 16 Jul 2020 20:36:12 +0200 (bbe0a0501)
avoid boolean argument in GNUNET_CURL_job_add(), see #6188 - Christian Grothoff

Thu, 16 Jul 2020 17:40:14 +0200 (ee1fbffa1)
support context-wide client authentication - Christian Grothoff

Thu, 16 Jul 2020 17:24:30 +0200 (23820348b)
docs: fixed example for pinning a friends public key - rexxnor

Wed, 15 Jul 2020 17:21:39 +0200 (9bb2c1e31)
Load GNSRECORD plugins within GNUnet's context - Christian Grothoff

Fri, 3 Jul 2020 22:37:42 +0200 (0f2ac01f3)
Add function to return GNUnet's default configuration - Christian Grothoff

Thu, 9 Jul 2020 09:09:50 +0200 (5a0df5e18)
fix: raise ATS quotas to 10 MiB #6426 - Martin Schanzenbach

Mon, 6 Jul 2020 23:34:48 +0200 (309ad1364)
fix: cadet fix to use correct tunnel end - Martin Schanzenbach

Mon, 6 Jul 2020 22:29:59 +0200 (13b2791f4)
fix: do not use udp plugin for tests - Martin Schanzenbach

Mon, 6 Jul 2020 21:33:06 +0200 (29131b26c)
fix: update test hostkeys - Martin Schanzenbach

Mon, 6 Jul 2020 20:19:00 +0200 (f0ecab499)
fix: namestore rest test - Martin Schanzenbach

Sun, 5 Jul 2020 21:59:40 +0200 (7247d3f1f)
style fix: use correct type - Christian Grothoff

Sat, 4 Jul 2020 19:06:49 +0200 (1d417dcd0)
Fix_build_dependencies - Martin Schanzenbach

Sun, 5 Jul 2020 16:32:34 +0200 (e31c1d4a9)
GNUNET_free_non_null -> GNUNET_free - Christian Grothoff

Sun, 5 Jul 2020 15:21:55 +0200 (143755664)
build: fix libidn2 detection if prefix given (#5948) - Martin Schanzenbach

Sun, 28 Jun 2020 22:38:45 +0200 (8c2243f05)
Prevent user from storing records which belong in a BOX - Martin Schanzenbach

Sun, 21 Jun 2020 22:06:35 +0200 (612704d69)
GNS: dns2gns now randomizes answers from GNS record set - Martin Schanzenbach

Tue, 16 Jun 2020 01:48:00 +0200 (e500e9ec3)
Set workbits for PoWs to more realistic values - Martin Schanzenbach

Sun, 14 Jun 2020 16:36:08 +0200 (a3a89edc0)
doc->preface: rewrite 'GNUnet may also' sentence, remove 2 TODO items. - nikita

Fri, 12 Jun 2020 12:51:46 +0200 (726ac3ef2)
Fixed 5528: TCP *communicator* bindto option should support DNS names, and 6013: TCP communicator should bind to IPv6 and IPv4 if only port given - t3sserakt

Fri, 5 Jun 2020 16:37:10 +0200 (d22eacb13)
Fixed bug #5822 by adding a monotonic time to the connection create message of a peer that want to start a KX, and the corresponding test #5823. Credits to dvn, lurchi and xrs for helpful discussions and coding. - t3sserakt

Mon, 1 Jun 2020 19:08:32 +0200 (59f616a3c)
tng: do not handle message send more than once - Martin Schanzenbach

Mon, 1 Jun 2020 18:45:46 +0200 (d11bffdc2)
tng: fix for macos unix socket handling - Martin Schanzenbach

Mon, 1 Jun 2020 18:43:32 +0200 (583bc67ba)
tng: MTU fix for other UNIXes, log message - Martin Schanzenbach

Mon, 1 Jun 2020 18:18:00 +0200 (d20be8a91)
tng: UNIX communicator fixes. Test fixes - Martin Schanzenbach

Mon, 1 Jun 2020 16:39:35 +0200 (198c09654)
tng: more UDP communicator backchannels - Martin Schanzenbach

Sat, 30 May 2020 17:45:38 +0200 (a325c3eaa)
towards UDP backchannels - Martin Schanzenbach

Fri, 29 May 2020 22:31:37 -0400 (63109da3e)
rsa crypto compare functions take const parameters - Jonathan Buchanan

Wed, 27 May 2020 15:01:30 +0200 (cf4608196)
Make REQUEST_AGPL messages configurable and add handler by default - Christian Grothoff

Wed, 27 May 2020 09:32:06 +0200 (f2127cd6a)
add lastlog script - Martin Schanzenbach

Wed, 27 May 2020 09:25:44 +0200 (eec3fd03c)
changelog from git log - Martin Schanzenbach

Wed, 27 May 2020 08:23:47 +0200 (b89c1f2a8)
update changelog, new format - Martin Schanzenbach

Tue, 26 May 2020 11:49:50 +0200 (755cb5c76)
remove argon2 dependency. Use limited libsodium argon2id function for GNS and NSE - Martin Schanzenbach

Tue, 26 May 2020 00:42:24 +0200 (24be68238)
use argon2id - Martin Schanzenbach

Tue, 26 May 2020 03:05:33 +0530 (2a82be115)
add additional test condition for GNS crypto - Florian Dold

Mon, 25 May 2020 21:38:58 +0200 (a32de45ce)
add option to create identity from private key - jospaeth

Fri, 22 May 2020 09:44:22 +0200 (2fbc0f044)
add option to show private key - Martin Schanzenbach

Fri, 22 May 2020 01:16:35 +0200 (9a92bbb51)
fix #6242 - Christian Grothoff

Thu, 14 May 2020 16:03:10 +0200 (f4771fcc1)
Improved BIO API - Christian Grothoff

Sun, 17 May 2020 19:56:12 +0200 (3362a671f)
make mhd and jansson mandatory dependencies - Martin Schanzenbach

Sun, 17 May 2020 19:37:00 +0200 (ac7ba6704)
allow compile against curl-openssl - Martin Schanzenbach

Sun, 10 May 2020 11:28:00 +0200 (63c371cfb)
separate id_token and userinfo claims requests - Martin Schanzenbach

Sun, 10 May 2020 00:23:54 +0200 (44bdb66b4)
fix #5782 - Martin Schanzenbach

Sat, 9 May 2020 22:10:08 +0200 (ada94c274)
fail of LSD0001 is violated for GNS2DNS - Martin Schanzenbach

Sat, 9 May 2020 22:00:01 +0200 (3da4b0d20)
fix #6103; make LEHOs supplemental from CNAMEs and GNS2DNS names - Martin Schanzenbach

Sat, 9 May 2020 20:55:08 +0200 (63c92bbef)
add json response headers to rest plugins - Martin Schanzenbach

Sat, 9 May 2020 19:12:51 +0200 (fbdc2fbb4)
change label processing in namestore REST api for gns records - Martin Schanzenbach

Wed, 6 May 2020 18:42:45 +0200 (1847e1652)
deprecate ill-defined set_nick API - Martin Schanzenbach

Wed, 6 May 2020 21:11:08 +0530 (616af9e62)
add libsodium dep to README - Florian Dold

Wed, 6 May 2020 20:12:05 +0530 (e273b24b9)
Fix #6070 - Florian Dold

Wed, 6 May 2020 18:39:16 +0530 (d7028a584)
move from tweetnacl (+custom hacks) -> only sodium - Florian Dold

Wed, 6 May 2020 10:49:10 +0200 (e7c277845)
remove obsolete framework option - Martin Schanzenbach

Wed, 6 May 2020 10:46:20 +0200 (4d75bfd7e)
add some more useful configuration output wrt transports - Martin Schanzenbach

Wed, 6 May 2020 10:25:00 +0200 (a4fddaa4d)
stop excessive warnings and notifications of information that is displayed later on anyway - Martin Schanzenbach

Wed, 6 May 2020 09:31:11 +0200 (ca168098b)
improve configure messages for rest and reclaim - Martin Schanzenbach

Sat, 2 May 2020 00:08:38 +0200 (f38bc1041)
fix gnunet-identity performance - Christian Grothoff

Fri, 1 May 2020 10:55:51 +0200 (91e407579)
vpn, exit: Add patch from termux for Android in a slightly different way. - nikita

Fri, 24 Apr 2020 13:50:05 +0530 (892bd3c60)
check for integer overflow in buffer lib (fixes #6217) - Florian Dold

Fri, 24 Apr 2020 10:18:16 +0200 (69f8fad56)
fix #6220 - Martin Schanzenbach

Tue, 21 Apr 2020 20:43:18 +0200 (bf99d2243)
fix #6191 - Christian Grothoff

Tue, 21 Apr 2020 18:37:28 +0200 (091f411cc)
purge scrypt; add argon2 - Martin Schanzenbach

Tue, 21 Apr 2020 18:13:05 +0200 (6bda628f7)
update revocation config - Martin Schanzenbach

Tue, 21 Apr 2020 13:47:04 +0200 (13ceb583b)
defining GNUNET_array_concatenate() for #6190 - Christian Grothoff

Tue, 21 Apr 2020 13:33:25 +0200 (3776e3a77)
fix #6189 - Christian Grothoff

Tue, 21 Apr 2020 13:27:04 +0200 (e938b8617)
fix #6186 related bugs - Christian Grothoff

Tue, 21 Apr 2020 13:23:28 +0200 (68615f85c)
use nz - Christian Grothoff

Tue, 21 Apr 2020 12:15:16 +0200 (5f5a1c7b4)
add JSON spec'er for booleans - Christian Grothoff

Tue, 21 Apr 2020 00:54:49 +0200 (30361fe0e)
make GNUNET_freez default, have GNUNET_free_nz for cases where that does not work - Christian Grothoff

Sun, 19 Apr 2020 21:37:35 +0200 (254a9f066)
add i64 deserializer - Christian Grothoff

Sun, 19 Apr 2020 14:07:21 +0200 (87481d240)
mailmap, authors: final sync of my address and name with changes in NetBSD and GNUnet members. - nikita

Fri, 17 Apr 2020 19:58:40 +0200 (2be21d379)
add argon2 for LSD0001 - Martin Schanzenbach

Fri, 17 Apr 2020 19:59:31 +0200 (0c053ecbf)
fix build with clang - Martin Schanzenbach

Fri, 17 Apr 2020 19:13:42 +0200 (3695a510a)
add relative_time specs - Christian Grothoff

Fri, 17 Apr 2020 18:21:17 +0200 (6b89b84d2)
add GNUNET_freez for #6186 - Christian Grothoff

Wed, 15 Apr 2020 20:35:45 +0200 (c894cf82d)
add integer overflow guards and avoid (unlimited) stack allocation - Christian Grothoff

Wed, 15 Apr 2020 20:29:15 +0200 (839badf7c)
take care of odd memset() calls - Christian Grothoff

Wed, 15 Apr 2020 20:26:00 +0200 (b7be5b9f5)
fix #6184 - Christian Grothoff

Sat, 11 Apr 2020 23:11:43 +0200 (7bcd5338f)
fix gnunet-statistics CLI - Christian Grothoff

Sat, 11 Apr 2020 21:55:51 +0200 (f490c0f3f)
do create directory if it doesn't exist - Christian Grothoff

Sat, 11 Apr 2020 21:43:28 +0200 (90ff9edfa)
fixing #6149 - Christian Grothoff

Sat, 11 Apr 2020 20:33:08 +0200 (3bcfe59f1)
fix static assert FTBFS with older gcc - Christian Grothoff

Thu, 9 Apr 2020 01:46:44 +0200 (f3d66d0dc)
mailmap adjust - nikita

Thu, 9 Apr 2020 01:40:49 +0200 (22119c687)
fix interpreter line of gnunet-bugreport - nikita

Thu, 9 Apr 2020 00:29:16 +0200 (8547143da)
adapt code to work with latest MHD API - Christian Grothoff

Thu, 9 Apr 2020 00:21:45 +0200 (6fc0526b4)
fix warnings - Christian Grothoff

Wed, 8 Apr 2020 20:30:05 +0200 (ccfb2c2e6)
introduce enum for generic return values - Christian Grothoff

Wed, 8 Apr 2020 17:34:27 +0200 (ba4da8c3f)
hack around crash on disconnect - Christian Grothoff

Wed, 8 Apr 2020 16:56:33 +0200 (11ae9f030)
fix sign api for to address #6164 - Christian Grothoff

Wed, 8 Apr 2020 14:47:01 +0200 (17113fc2f)
add GNUNET_static_assert() - Christian Grothoff

Wed, 8 Apr 2020 14:44:39 +0200 (8c9600879)
add check to see if CC supports '_Static_assert' - Christian Grothoff

Tue, 7 Apr 2020 17:51:59 +0200 (29bd17729)
improve comments (#6164) - Christian Grothoff

Fri, 3 Apr 2020 18:50:09 +0200 (6d7fd3328)
fix #6157 - Christian Grothoff

Fri, 3 Apr 2020 18:45:46 +0200 (6fd24eef2)
fix #6155 - Christian Grothoff

Fri, 3 Apr 2020 18:43:03 +0200 (bc01117ce)
fix #6158 - Christian Grothoff

Fri, 3 Apr 2020 17:03:35 +0200 (55bff52a2)
fix #6159 and related issues - Christian Grothoff

Fri, 3 Apr 2020 15:18:58 +0200 (0541fd194)
adding a GNUNET_memcmp_priv for constant-time comparing of data; fixes #6152 (modulo actually finding specific places where this SHOULD be used instead of GNUNET_memcmp) - Christian Grothoff

Fri, 3 Apr 2020 15:05:14 +0200 (4e259dbbb)
fix #6153 - Christian Grothoff

Fri, 3 Apr 2020 14:18:58 +0200 (175303b44)
fix #6154 - Christian Grothoff

Fri, 3 Apr 2020 13:46:05 +0200 (a3d4063b7)
added communicator tests to experimental - t3sserakt

Thu, 2 Apr 2020 11:33:53 +0200 (225ddf0a2)
fix #6146 - Christian Grothoff

Sun, 29 Mar 2020 12:51:26 +0200 (73514dd0e)
allow passing of fancy time to timetravel option - Christian Grothoff

Sat, 28 Mar 2020 07:57:04 +0100 (15d926361)
Point to explanatory documentation. - Marcello Stanisci

Fri, 20 Mar 2020 15:35:54 +0100 (19d73a8fa)
Make gnunet-namestore honour expiration dates when importing an URI - Christian Grothoff

Thu, 19 Mar 2020 19:40:34 +0100 (efa84b551)
use strtok_r in code that could plausibly be used from multi-threaded applications - Christian Grothoff

Tue, 17 Mar 2020 01:05:17 +0100 (2fb32626a)
use void * instead of char * for RSA key material to make it more clear that these are not 0-terminated strings - Christian Grothoff

Mon, 16 Mar 2020 19:38:42 +0100 (39c6d488d)
better error handling - Christian Grothoff

Sun, 15 Mar 2020 22:06:28 +0100 (7de26292b)
add function that logically belongs to libgnunetcurl instead of in multiple Taler binaries - Christian Grothoff

Sun, 15 Mar 2020 15:18:53 +0100 (b37cfa2fd)
implement new simplified POW for LSD001 - Martin Schanzenbach

Thu, 12 Mar 2020 12:09:11 +0100 (0c8362ad8)
move literature information to end of paragraph - xrs

Tue, 10 Mar 2020 17:42:04 +0100 (9d5af0464)
import CA into Icecat - Christian Grothoff

Tue, 3 Mar 2020 12:31:23 +0100 (d1bdcb261)
make static analysis happier - Christian Grothoff

Tue, 3 Mar 2020 12:31:12 +0100 (9a6588810)
remove 'illegal' (non-reentrant) log logic from signal handler - Christian Grothoff

Mon, 24 Feb 2020 23:48:47 +0100 (01439e25d)
do not segv if there is no postgres - Christian Grothoff

Mon, 24 Feb 2020 18:19:09 +0100 (dae7d843f)
support versioning schema drop - Christian Grothoff

Wed, 19 Feb 2020 21:52:43 +0100 (ca8202057)
fixing the GNS multirecord multipeer test - Christian Grothoff

Tue, 18 Feb 2020 16:08:43 +0100 (3b2afcd3b)
fix TNG test with NAT - Martin Schanzenbach

Sat, 15 Feb 2020 12:55:24 +0100 (b03978816)
proposed fix for excessive queueing (somehow does not quite work, not sure why) - Christian Grothoff

Sat, 15 Feb 2020 12:25:06 +0100 (e57177325)
better task ordering - Christian Grothoff

Thu, 13 Feb 2020 19:36:37 +0100 (79243b3d2)
add concept of supplemental records - Martin Schanzenbach

Thu, 13 Feb 2020 15:15:18 +0100 (4dc95a504)
always return nick records - Martin Schanzenbach

Wed, 12 Feb 2020 23:09:03 +0100 (206866779)
resolve nick if specifically requested - Martin Schanzenbach

Wed, 12 Feb 2020 22:06:19 +0100 (e021a0f7b)
fix duplicate NICK in record - Martin Schanzenbach

Fri, 7 Feb 2020 15:51:56 +0100 (5f9f9cae1)
consolidate reclaim attribute lib - Martin Schanzenbach

Thu, 6 Feb 2020 22:34:11 +0100 (d06446f14)
add base64url encoding to util (RFC7515) - Martin Schanzenbach

Thu, 6 Feb 2020 20:08:58 +0100 (a80090ffc)
more bugfixes and REST API change - Martin Schanzenbach

Tue, 4 Feb 2020 18:42:04 +0100 (55f6d26b7)
Refactoring reclaim attestations - Martin Schanzenbach

Mon, 3 Feb 2020 21:51:57 +0100 (5b6bb2ce4)
move to 256-bit identifier; some cleanups - Martin Schanzenbach

Sun, 9 Feb 2020 17:31:41 +0100 (99d70615e)
use versioning schema to only load database schema patches if not yet covered according to versioning table - Christian Grothoff

Sun, 9 Feb 2020 15:57:39 +0100 (8f375b3ea)
use NULL value in load_path_suffix to NOT load any files - Christian Grothoff

Tue, 4 Feb 2020 19:18:25 +0100 (1ca805654)
speed up message goodput in perf_mq(client) by 1/3rd - Christian Grothoff

Tue, 4 Feb 2020 19:11:40 +0100 (c656a8218)
adding MQ benchmark - Christian Grothoff

Tue, 4 Feb 2020 18:56:17 +0100 (f40520b09)
speed up running of tasks via GNUNTE_SCHEDULER_add_now() by a factor of at least 5 - Christian Grothoff

Tue, 4 Feb 2020 18:45:19 +0100 (4caa0d290)
add minimal scheduler benchmark - Christian Grothoff

Tue, 4 Feb 2020 15:47:01 +0100 (e14544109)
add timetravel getopt helper - Christian Grothoff

Mon, 3 Feb 2020 23:51:09 +0100 (e3dcec36a)
fix bug *AGAIN*, could swear I fixed this one before... strange - Christian Grothoff

Mon, 3 Feb 2020 18:26:49 +0100 (1bba6bc12)
added a test for DHT lookup between peers - rexxnor

Thu, 30 Jan 2020 10:48:04 +0100 (015cd279b)
added testing scripts for dns2gns - rexxnor

Fri, 24 Jan 2020 16:51:29 +0100 (f4a172abf)
export GNUNET_PQ_run_sql() functonality - Christian Grothoff

Fri, 24 Jan 2020 16:30:45 +0100 (2fd320bc7)
modify GNUNET_PQ_connect_with_cfg to enable flexible loading of .sql files - Christian Grothoff

Sat, 18 Jan 2020 18:47:30 +0100 (bbfde2060)
include mandatory includes - Christian Grothoff

Fri, 17 Jan 2020 12:12:56 +0100 (5422848b4)
do not add '/' to load path - Christian Grothoff

Fri, 17 Jan 2020 03:22:31 +0100 (00bd3376b)
quiet on psql - Christian Grothoff

Fri, 17 Jan 2020 02:51:10 +0100 (8fa757a94)
auto-provide OS_IPK paths in [paths] of config - Christian Grothoff

Fri, 17 Jan 2020 02:35:29 +0100 (3c1f2bdd8)
be more quiet - Christian Grothoff

Fri, 17 Jan 2020 02:26:21 +0100 (4353432b9)
DB load API change - Christian Grothoff

Fri, 17 Jan 2020 00:25:55 +0100 (1126181ab)
include buffer in main util header - Christian Grothoff

Thu, 16 Jan 2020 17:11:58 +0100 (ec7870968)
add new versions of alpine packages (not yet in alpine repo) - xrs

Wed, 15 Jan 2020 19:41:05 +0100 (5177efb74)
remove Taler-specific leftovers, we don't need them anymore - Florian Dold

Wed, 15 Jan 2020 13:29:47 +0100 (9f36b6e9e)
add test vector generation for crypto ops - Florian Dold

Wed, 15 Jan 2020 11:45:20 +0100 (9f3f1753e)
move buffer library from GNU Taler to GNUnet - Florian Dold

Mon, 13 Jan 2020 18:58:13 -0600 (55d610bb3)
Fix copy/paste error checking for explicit_bzero - David Barksdale


Fri Dec 20 09:22:03 2019 +0900
  Released gnunet 0.12.0 -schanzen

Fri Dec 20 09:22:03 2019 +0900
  Fixed BOX record label parsing -schanzen

Mon Dec 16 09:33:36 2019 +0100
  Fixed mysql build -schanzen

Sat 07 Dec 2019 02:38:53 PM CET
  Protocol-breaking change, using more standards-compliant
  EdDSA and RSA operations. Also changing POW function to 
  make it less ASIC-compatible. This marks the switch to
  the 0.12.0 protocol family.

Sun Dec 01 19:31:00 UTC 2019
  configure: Add --with-gnunet-logread.
  -ng0

Sun Dec 1 12:26:11 2019 +0100
  GNS NSS plugin: Reject non-IDNA conforming names and
  trigger continue with next NSS plugin. -schanzen

Sat Nov 30 23:32:03 2019 +0100
  GNS NSS plugin: Disabled if called as root. -CG

Sat Nov 30 23:08:49 2019 +0100
  Fixed #3795: Switched to new PoW for NSE and GNS revocation.
  Functionality is ifdef guarded for 0.12. -CG

Sat Nov 30 21:05:25 2019 +0100
  Fixed #5978:
  Added support for .<zkey> CNAMEs in the GNS resolver. -schanzen

Sat Nov 30 20:27:51 2019 +0100
  Fixed #5979:
  Added support for .<zkey> DNS server names in GNS2DNS records.
  -schanzen

Tue Nov 26 18:26:54 2019 +0100
  Crypto change: Use Curve25519 for ECDH and tweetnacl where we can.
  Functionality is ifdef guarded for 0.12. -fdold

Nov 30 15:20:45 2019 +0100
  Fixed #5922:
  GNS names are now UTF-8. For DNS, names are converted to IDNA.
  Functionality is ifdef guarded for 0.12. -schanzen

Wed Oct 30 10:50:00 UTC 2019
  Released gnunet 0.11.8
  -ng0

Sun Oct 27 17:17:00 2019 +0200
  Released gnunet 0.11.7
  -schanzen, ng0

Fri Oct 25 00:00:00 UTC 2019
  Dropped glpk dependency(-check). -ng0

Wed Oct 23 20:55:12 2019 +0200
  Make REST service start per user in a multiuser setup.
  -schanzen

Wed Oct 23 00:00:00 UTC 2019
  Remove setuid helpers. They never worked as intended. The
  fixed version is not portable and the defacto good way to
  handle this which is most portable is to let package managers
  handle this (as they do right now, the good ones), and let
  people handle this who read the documentation.
  This commit removes what would be patched out by the majority
  of package managers, which is setuid handling in Makefiles.
  It is very likely that no one will notice this code is gone.
  -ng0

Thu Oct 17 00:00:00 UTC 2019
  Added support for doas, use it in some places conditionally
  if sudo is not present. Fixed sudo detection. -ng0

Mon Oct 14 00:00:00 UTC 2019
  Added 'pretty' make rule to run uncrustify over the source tree.
  -ng0

Mon Sep 16 00:00:00 UTC 2019
  Remove checks for CXX and CPP. Scans found no
  (remaining) cxx code. ccache with clang on
  NetBSD 9 hit no rebuilds. -ng0

Mon Sep 10 00:00:00 UTC 2019
  Drop win32 and mingw support after discussion with
  Christian. It has been unmaintained in our code base
  for years and there are no known users.
  Future implementors for Windows 10 support can
  refer to this commit as reference. -ng0

Mon Sep 9 00:00:00 UTC 2019
  Remove plibc, closes #5877 as discussed in
  https://lists.gnu.org/archive/html/gnunet-developers/2019-09/msg00002.html
  -ng0

Sun Sep 1 13:25:07 2019 +0200
  Improved support for external applications/services wrt
  localization/gettext.
  https://lists.gnu.org/archive/html/gnunet-developers/2019-09/msg00000.html

Tue 20 Aug 2019 04:32:09 PM CEST
  Fixed fatal bug in gnunet-bcd that prevented the main page
  from showing up. -CG

Mon Aug 19 17:36:48 2019 +0200
  REST: Added API plugin to read/write GNUnet configuration options -alexia

Sun Jul 28 00:00:00 2019 +0000
  Adding --enable-texinfo4 configure switch, defaulting to off.
  This allows distributors to override the texinfo 5.x and later
  commandline options we use, and allows us on the serverside to
  build html with newer output options. -ng0

Wed 24 Jul 2019 05:43:43 PM CEST
  Releasing GNUnet 0.11.6. -CG

Mon Jul 15 09:57:20 2019 +0200
  The REST server now has a configurable CORS Origin setting -schanzen

Fri Jul 5 22:11:04 2019 +0200
  Added detection of SUID binaries
  through GNUNET_OS_get_suid_binary_path -lurchi

Sat 29 Jun 2019 10:18:55 AM CEST
  Renamed "heap" namestore backend to "flat" as it does
  persist data in a file. Made it work with databases larger
  than 16 MB. -CG

Fri Jun 28 14:10:53 2019 +0200
  RECLAIM: Reissue of tickets (same attributes, same identity)
  will no longer create a new ticket, but reuse the old. -alexia

Thu Jun 27 10:34:46 2019 +0200
  The REST server now returns the Origin header value in the
  CORS header reponse. -schanzen

Thu Jun 27 09:08:06 2019 +0200
  GNS NSS plugin will not timeout and not hang forever and block
  gethostbyname. Final resolution pending #5782 -schanzen

Sat Jun 22 10:38:43 2019 +0200
  Add gnutls support for GNS CA certificate generation -schanzen

Sat 15 Jun 2019 11:45:35 PM CEST
  Improved gnunet-gns performance for many ego scenario. -CG

Fri 14 Jun 2019 07:17:40 PM CEST
  Add option to gnunet-identity to display private keys. -CG

Wed Jun 5 21:19:46 2019 +0200
 Releasing GNUnet 0.11.5. -schanzen

Wed May 29 11:17:49 2019 +0200
  Added CAA record type (RFC 6844). -schanzen

Sat 25 May 2019 08:27:39 AM CEST
  Significantly speed-up ego creation and deletion via
  gnunet-identity command when there are many (hundreds)
  of egos at the same peer. -CG

Sun May 12 12:00:00 2019 +0200
  Releasing GNUnet 0.11.4. -MS

Thu May 9 23:35:24 2019 +0200
  gnunet-identity can now output the public key on creation of new
  egos, and -e can act as a filter when listing all egos. -CG

Thu May 2 08:44:37 2019 +0200
  gnunet-arm now logs to file by default -CG

Sat Apr 27 21:50:57 2019 +0200
  RECLAIM: Added ECDH encryption for authorization code payload -schanzen

Sat 27 Apr 2019 06:36:31 AM CEST
  Bump libmicrohttpd version requirement as some intermediate
  versions have relevant bugs that cause problems. -CG

Sat Apr 27 01:50:43 2019 +0200
  RECLAIM: No longer experimental -schanzen

Fri Apr 26 11:08:21 2019 +0200
  REST: Configuration plugin added -schanzen

Tue Apr 23 23:00:00 UTC 2019
  All manpages are properly licensed. -ng0

Sun Apr 21 22:22:22 UTC 2019
  All manpages are now in mdoc format. -ng0

Sat Apr 20 18:38:43 UTC 2019
  Remove optional gnunet-download-manager.scm and
  with it the optional dependency on a no longer
  maintained version of GNU Guile (#5682). -ng0

Sun Apr 14 09:54:20 2019 +0200
  RECLAIM: Moved away from ABE to GNS encryption. Minor API changed and
  renaming of records. Deprecated SQLite plugin in favor of namestore.
  -schanzen

Sun Apr 7 14:40:59 2019 +0200
  Releasing GNUnet 0.11.3. -CG

Sat 06 Apr 2019 02:36:17 PM CEST
  Introducing GNUNET_memcmp() and GNUNET_is_zero() for better typing
  when comparing memory areas. -CG

Fri 05 Apr 2019 11:38:53 PM CEST
  Use paths of sysctl, ip, ifconfig and ip(6)tables from configure
  if they work. (#5352). -CG

Thu 04 Apr 2019 12:39:44 PM CEST
  Hotfix for build issue. Releasing GNUnet 0.11.2. -CG/MS

Wed 03 Apr 2019 03:18:43 PM CEST
  Releasing GNUnet 0.11.1. -CG

Wed 03 Apr 2019 01:54:44 PM CEST
  Merged gnunet-qr-c-2 branch, replacing Python-based implementation
  of gnunet-qr with C-based implementation that also integrates
  gnunet-uri. -HG/MS/CG

Wed 03 Apr 2019 01:15:57 PM CEST
  Fixed a few test case regressions (GNS, FS). -CG

Mon Apr 1 22:00:00 UTC 2019
  documentation/buildsystem: manpages and other documentation parts
  can now be build more controlled again, this fixes the regression
  in 0.11.0 where documentation was an on/off switch.
  New introduced: --enable-include-manpages.
  Fixed: texi2mdoc integration (--enable-texi2mdoc-generation).
  buildsystem: decrease python dependency to 3.4 from
  previously 3.7.
  -ng0

Tue Mar 12 10:06:17 CET 2019
  REST: Move back from rest-plugin into respective subsystem directories.

Mon Mar 11 02:47:55 CET 2019
  Make configure complain if no working libidn is detected. -CG

Sat Mar 9 15:58:45 2019 +0100
  REST: Config option for address bind. Defaults to localhost.
  GNS: dns2gns/gns-proxy config option for address bind. Defaults to localhost.

Sat Mar 9 01:58:22 CET 2019
  gnunet-publish now by default does not expose the creation time,
  option -d no longer exists, to enable the old behavior use -E. -CG

Sat Mar 2 14:23:10 2019 +0100
  utils: gnunet-qr.py now installed under pkgshare instead of bin

Thu Feb 28 19:07:59 CET 2019
  CADET: Fix in order, unrealiable message ordering

Thu 28 Feb 2019 10:54:58 AM CET
  Releasing GNUnet 0.11.0. -CG

Wed Jun  6 08:28:27 CEST 2018
  Releasing GNUnet 0.11.0pre66. Let's try to keep a better
  ChangeLog again henceforth. -CG

Sat Jan  7 16:41:34 CET 2017
  Converting NAT library to new NAT service (and
  splitting of nat-auto service for auto-configuration). -CG