-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
ChangeLog
11470 lines (6076 loc) · 242 KB
/
ChangeLog
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
* Thu Sep 21 09:46:44 2017 +0200
Sign
* Thu Sep 21 09:46:28 2017 +0200
d0wn-cr-ns1 is down
* Thu Sep 21 09:45:41 2017 +0200
freetsa.org is not responsive any more
* Thu Sep 21 09:45:03 2017 +0200
publicarray-au certificate expired
* Thu Sep 21 03:40:57 2017 -0400
Add dnscrypt.ca Server 1 and Server 2 (#746)
* Mon Sep 11 00:44:25 2017 +0200
Sign
* Mon Sep 11 00:40:23 2017 +0200
cs-de, cs-de2, cs-ru are not responsive
* Sun Aug 27 19:40:30 2017 +0200
Sign
Merge: 7576e26 bdbd7fb
* Sun Aug 27 19:40:10 2017 +0200
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
d0wn servers update (#728)
Add BarbBlock list to domains-blacklist.conf (#734)
Explain that PID will require an additional process
* Sun Aug 27 19:39:59 2017 +0200
Sign
* Sun Aug 27 19:37:29 2017 +0200
d0wn-de-ns2 is down
* Sun Aug 27 19:37:11 2017 +0200
cs-rome is down
* Sun Aug 27 21:02:05 2017 +0700
d0wn servers update (#728)
de2 down
fr1 ipv4 up [port 1053]
* Wed Aug 23 08:01:12 2017 -0700
Add BarbBlock list to domains-blacklist.conf (#734)
BarbBlock <https://ssl.bblck.me> is a content blocking list that blacklists domains that have used spurious and invalid DMCA takedowns to force removal from other content blocking lists. Originally conceived as a browser extension, it has also been made available as a domain list suitable for domain-level blacklisting: https://ssl.bblck.me/blacklists/domain-list.txt
Merge: 54cd640 ce77b76
* Mon Aug 21 19:09:16 2017 +0200
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* Mon Aug 21 19:08:59 2017 +0200
Explain that PID will require an additional process
* Fri Aug 11 16:35:33 2017 +0200
freetsa is back
* Wed Aug 9 15:59:38 2017 +0200
Sign
* Tue Aug 8 15:54:47 2017 +0200
Temporarily remove unresponsive resolver :(
* Tue Aug 8 00:16:03 2017 +0200
Mingw64 (#718)
* Enable build in builddir, when builddir is not srcdir
* Enable detection of gethostbyname on Windows, libws2_32, libpsapi and libiphlpapi on mingw32 and mingw64
* Enable detection of getaddrinfo on Windows, don't define _WIN32_WINNT if already defined
* On Windows use gmtime_s instead of gmtime
* Change pointer type to char to satisfy compiler
* mingw and msvc don't support %z, use %I instead
* Revert "On Windows use gmtime_s instead of gmtime"
* Revert 'rmdir '
* Reverted previous changes, result of htonl casted to uint32_t
* Reverted previous changes, changed pointer type to char*
* Mon Aug 7 10:10:33 2017 +0200
Full name
* Mon Aug 7 09:52:38 2017 +0200
Recommend jent
* Thu Aug 3 12:06:02 2017 +0200
Fix resource leaks on error paths
* Sat Jul 29 20:58:14 2017 +0200
Simpleconf: another missing ree() on error path
* Sat Jul 29 20:54:03 2017 +0200
Simpleconf: Add missing free() on error path
* Sat Jul 29 12:06:15 2017 +0200
Sign
* Sat Jul 29 12:00:58 2017 +0200
Adding Babylon Network NL resolver (#709)
* Adding Babylon Network resolvers
* Updating Babylon Network resolvers
* Adding Babylon Network NL resolver
* Mon Jul 24 18:19:55 2017 +0200
Sign
* Mon Jul 24 23:06:49 2017 +0700
+ d0wn-nl1 d0wn-us1 (#705)
d0wn servers update, up : nl1 us1
note : nl1 port is 1053
* Fri Jul 21 14:30:09 2017 +0200
Sign
* Fri Jul 21 14:26:50 2017 +0200
- fvz-any*-ipv6
* Fri Jul 21 14:26:19 2017 +0200
- cpunks-ru-ipv6
* Mon Jul 17 15:28:40 2017 +0200
Sign
* Mon Jul 17 15:01:17 2017 +0200
Revert "bn-fr1 doesn't seem to work -- temporarily remove"
* Mon Jul 17 12:57:42 2017 +0200
Sign
* Mon Jul 17 12:42:12 2017 +0200
cs-lv is dead
* Mon Jul 17 12:41:07 2017 +0200
bn-fr1 doesn't seem to work -- temporarily remove
* Mon Jul 17 12:33:23 2017 +0200
Updating Babylon Network resolvers (#697)
* Adding Babylon Network resolvers
* Updating Babylon Network resolvers
* Sat Jul 8 18:35:36 2017 +0200
Sign
* Sat Jul 8 18:33:10 2017 +0200
d0wn-nl-ns3 is down
* Mon Jul 3 18:13:28 2017 +0200
Sign
* Mon Jul 3 18:12:26 2017 +0200
Updated resolver SecureDNS with IPv6 and DNSSEC (#693)
* added Secure DNS as option
* removed 2nd public key
* added forgotten port to secure dns entry
* updated resolver SecureDNS with DNSSEC and IPv6
* Sat Jul 1 10:07:55 2017 +0200
Sign
* Sat Jul 1 10:07:40 2017 +0200
Add cypherpunks.ru
* Sat Jul 1 10:03:49 2017 +0200
Add a correct entry for securedns
* Fri Jun 23 12:18:43 2017 +0200
More d0wn servers down
* Fri Jun 16 20:31:19 2017 +0200
+ unbound
* Mon Jun 12 20:49:16 2017 +0200
sign
* Tue Jun 13 04:27:31 2017 +1000
add publicarray-au (#682)
* Thu Jun 8 17:43:12 2017 +0200
Sign
Merge: 2dfaa39 78e3f1b
* Thu Jun 8 17:42:17 2017 +0200
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
d0wn servers update (#678)
* Thu Jun 8 17:42:00 2017 +0200
Sign
* Thu Jun 8 17:41:49 2017 +0200
cs-cfii is down
* Thu Jun 8 17:41:36 2017 +0200
More d0wn servers that are down
* Thu Jun 8 22:10:44 2017 +0700
d0wn servers update (#678)
random1 up; hk1, sg2 offline
* Wed Jun 7 09:51:23 2017 +0200
Sign
* Wed Jun 7 14:49:06 2017 +0700
adding bikinhappy.com to dnscrypt-resolvers.csv (#679)
* Update dnscrypt-resolvers.csv
* Update dnscrypt-resolvers.csv
* adding bikinhappy.com dnscrypt-resolvers.csv
* Tue Jun 6 19:54:28 2017 +0200
Sign
* Tue Jun 6 19:54:05 2017 +0200
cs-es doesn't seem to resolve namecoin domains
* Tue Jun 6 19:53:11 2017 +0200
Add cs-es DNSCrypt server (cryptostorm.is) (#675)
* Add cs-es DNSCrypt server (cryptostorm.is)
Add cs-es DNSCrypt server (cryptostorm.is)
* Missing comma at the end
* Sun Jun 4 17:17:17 2017 +0200
Load the forwarding plugin last
* Fri May 26 21:18:17 2017 +0200
Fix WINDOWS instructions
* Fri May 26 14:41:43 2017 +0200
Whitelist msedge.net
* Wed May 24 13:08:05 2017 +0200
sign
Merge: dc19508 6dba34f
* Wed May 24 13:07:55 2017 +0200
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
d0wn-au offline (#667)
* Wed May 24 13:07:46 2017 +0200
sign
* Wed May 24 18:07:27 2017 +0700
d0wn-au offline (#667)
d0wn server offline from few days ago. Ping fail too for it's IPv6 address.
* Tue May 23 19:54:14 2017 +0200
Sign
* Tue May 23 19:53:53 2017 +0200
Replace 185.121.177.53 with new 169.239.202.202 anycast IP (#664)
185.121.177.177 and 185.121.177.53 have always been running on the same network infrastructure, they just ended up on different PowerDNS instances on the same node.
169.239.202.202 and 169.239.202.53 are now replacing 185.121.177.53 as they are running on mirrored infrastructure and software
This also allows us to revert the temporary port fix back to the standard 443 port and allows users to use any of our DNSCrypt enabled ports (54, 443, 1053, 1194, 5353, 8080 and 27015).
* Sat May 20 19:15:41 2017 +0200
Android: use PLATFORM 16 by default, don't bother with compat for API 21
* Thu May 18 14:53:14 2017 +0200
Correct example_ldns_blocking description
* Tue May 16 21:29:24 2017 +0200
Add extra quotes, for consistency
Fixes #658
* Thu May 11 19:44:50 2017 +0200
Re-add adguard-dns-*-ns2
* Tue May 9 22:40:31 2017 +0200
Sign
* Wed May 10 03:39:26 2017 +0700
d0wn servers update (#656)
remove offline servers according to d0wn tweet.
2 already off with 3 more at risk.
* Sun May 7 17:20:06 2017 +0200
Android: use clang by default, like libsodium
* Sun May 7 15:33:06 2017 +0200
Require at least libsodium 1.0.0
* Sun May 7 15:30:22 2017 +0200
Android: use NDK_PLATFORM="android-24" to fail consistently with libsodium
* Sun May 7 15:29:53 2017 +0200
Android doesn't have `stdin` any more; use a different test program
* Sun May 7 15:25:22 2017 +0200
LibreSSL-portable's `make clean` target removes too many files
Re-run the `./configure` script as a workaround, in order to get the
list of symbols back.
* Sun May 7 14:26:27 2017 +0200
Compile a stable version of LibreSSL
* Sun May 7 12:38:27 2017 +0200
Fix freetsa attributes: DNSSEC is supported, not Namecoin
* Sun May 7 12:36:20 2017 +0200
Sign
Merge: 52c282e 53b7ccd
* Sun May 7 12:35:52 2017 +0200
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
FreeTSA DNSCrypt (USA) server added (#649)
* Sun May 7 12:35:36 2017 +0200
Sign
* Sun May 7 12:21:44 2017 +0200
FreeTSA DNSCrypt (USA) server added (#649)
FreeTSA DNSCrypt in USA server
* Sat May 6 20:07:09 2017 +0200
1.9.5
* Sat May 6 19:55:20 2017 +0200
Update ChangeLog
* Sat May 6 19:38:35 2017 +0200
Cache plugin: fix the way items are moved from recent to frequent lists
In addition to making the cache work as expected, this prevents
`CacheEntry` items from becoming orphans.
* Fri May 5 09:59:10 2017 +0200
Sign
* Fri May 5 09:54:22 2017 +0200
Adding Babylon Network resolvers (#647)
* Sat Apr 29 20:13:13 2017 +0200
Add support for adding the vendor name to the version string
* Thu Apr 27 11:36:40 2017 +0200
Remove dead resolvers, sign
* Thu Apr 27 11:36:32 2017 +0200
Reduce the margin even more in resolvers-check
* Thu Apr 27 11:12:40 2017 +0200
Revert "Hopefully temporary: adguard-dns-ns2, d0wn-random-ns1 down"
* Thu Apr 27 11:12:15 2017 +0200
sign
* Thu Apr 27 11:11:08 2017 +0200
Replacing port 443 with 5353 due to incompatibility with HTTPS services (#639)
* Wed Apr 19 10:03:03 2017 +0200
Revert "Temporarily remove dnscrypt.org-fr"
* Tue Apr 18 23:32:11 2017 +0200
Temporarily remove dnscrypt.org-fr
* Tue Apr 18 22:43:19 2017 +0200
Hopefully temporary: adguard-dns-ns2, d0wn-random-ns1 down
* Sun Apr 9 21:43:20 2017 +0200
sign
* Mon Apr 10 02:40:04 2017 +0700
d0wn servers update (#625)
Update some d0wn servers.
Up : ns1.au , ns1.hk
IPv4 only (IPv6 unreachable), no port 443 : ns1.fr
No port 443 : ns2.nl
Add IPv6, IPv4 already listed : ns1.ro
Add all the rest with no special treatment : ns1.cr, ns1.dk, ns3.hk, ns2.is, ns1.mx, ns4.nl, ns2.se, ns2.sg, ns4.us, ns1.za
All added servers tested via IPv4. For IPv6, only tested for open port via online web check.
* Sun Apr 9 21:20:15 2017 +0200
Add a couple domains to the whitelist
* Wed Apr 5 21:44:59 2017 -0700
Remove down d0wn servers
* Thu Apr 6 14:39:50 2017 +1000
Add second d0wn AU server (#622)
* Thu Mar 30 14:42:53 2017 +0200
Revert "Add the DNS Spy public resolver (#619)"
* Thu Mar 30 14:40:29 2017 +0200
Add the DNS Spy public resolver (#619)
* Tue Mar 28 10:53:28 2017 +0200
Doc: mention that timestamps are encoded in big-endian
* Mon Mar 27 22:01:32 2017 +0200
Invert
* Mon Mar 27 22:00:55 2017 +0200
Try the flat style
* Mon Mar 27 21:58:17 2017 +0200
+ donate button
* Sat Mar 25 12:46:53 2017 +0100
Sign
* Sat Mar 25 04:46:03 2017 -0700
adding nxd.ist resolver (#618)
* adding nxd.ist
* changing description of nxd.ist
* Mon Mar 20 22:28:37 2017 +0100
cs-ch2 is unresponsive
* Mon Mar 20 22:27:49 2017 +0100
contrib/resolvers-check.sh: allow a lower margin for the certificate
* Mon Mar 6 22:53:44 2017 +0100
Sign
* Mon Mar 6 22:52:43 2017 +0100
Update dnscrypt-resolvers.csv (#612)
Previously mistakenly added the wrong IPv6 address. Added the correct one for dnscrypt.nl-ns0-ipv6
* Mon Mar 6 20:04:58 2017 +0100
Sign
* Mon Mar 6 20:04:45 2017 +0100
Amsterdan -> Amsterdam
* Mon Mar 6 20:04:07 2017 +0100
Temporarily remove dnscrypt.nl-ns0-ipv6
* Mon Mar 6 20:01:35 2017 +0100
Update dnscrypt-resolvers.csv (#611)
Added dnscrypt.nl
* Mon Mar 6 08:38:28 2017 +0100
Use unified headers on Android
* Sat Mar 4 19:37:35 2017 +0100
Keep variables sorted by size
* Sat Mar 4 13:36:04 2017 -0500
Reset the reachability of nameservers if all are unreachable (#609)
If all nameservers have been marked unreachable, they will not be queried
again until dnscrypt-proxy is restarted. This fix allows for queries to be
retried without restarting dnscrypt-proxy.
Fixes jedisct1/dnscrypt-proxy#608
Signed-off-by: Mitchel Haan <[email protected]>
* Wed Feb 22 13:45:54 2017 +0100
Doc error: client-pk is the client' public key.
Spotted by @willnix
Fixes #603
* Sat Feb 18 18:54:52 2017 +0100
- d0wn-lt-ns1
* Sat Feb 18 10:45:16 2017 +0100
Whitelist some TLDs typically used on local networks
* Thu Feb 16 09:58:12 2017 +0100
whitelist << "j.mp"
* Tue Feb 14 08:33:53 2017 +0100
Whitelist a-msedge.net and l-msedge.net
Fixes #596
* Mon Feb 13 19:42:45 2017 +0100
soltysiak-ipv6 is back
* Sun Feb 12 22:42:48 2017 +0100
Compile for macOS >= 10.10
* Sat Feb 11 20:50:20 2017 +0100
cs-es is temporarily down
* Thu Feb 9 22:25:39 2017 +0100
Avoid clock_gettime() usage on MacOS
The function is present in Sierra, but not on previous OS versions,
although the linker doesn't complain when `-mmacosx-version-min=`
mentions that we want to support OSX < 10.12.
So, just pretend it doesn't exist, and remember to remove that
hack the day everyone is running OSX >= 10.12.
Via an issue from @Thireus
* Thu Feb 9 17:35:57 2017 +0100
Looks like this is being renamed
* Thu Feb 9 13:56:11 2017 +0100
Sign
* Thu Feb 9 16:25:51 2017 +0330
Remove iFreeNet (#591)
* Thu Feb 9 12:58:48 2017 +0100
domains -> zones
* Tue Feb 7 14:25:26 2017 +0100
libevent test/dns: run async resolving after sync one (to avoid timeouts)
* Tue Feb 7 12:33:55 2017 +0100
Normalize the dnscrypt-resolvers.csv format
Also remove the namecoin tag from servers that don't support it any more.
* Tue Feb 7 12:03:43 2017 +0100
Remove unresponsive resolvers
* Sun Jan 29 00:46:04 2017 +0100
Travis is too slow :(
* Sat Jan 28 16:38:43 2017 +0100
ldns-blocking: fix another corner case with suffix matching
Ruleset:
```
*.example.com
ru.example.com
```
A query for `xru.example.com` would find `ru.example.com` as the longest
suffix. The expression didn't match since this is neither an exact match
nor a match that stops at a label.
However, this was ignoring the fact that there a different, shorter rule
could match.
This is pretty annoying, as keeping our promise to log the longest match
means that we need at least yet another lookup in that specific case.
Alternatively, the fpst lookup function could be specialized to stop at
labels, but that would defeat the point of this example plugin. So,
perform an extra lookup after striping the first (last, once the name is
reversed) label.
* Fri Jan 27 00:37:21 2017 +0100
Sort, re-add resolvers that were temporarily down
* Fri Jan 27 00:26:14 2017 +0100
* Sun Jan 22 16:54:03 2017 +0100
Use the PID file to kill the service on Android
* Sun Jan 22 16:51:41 2017 +0100
Update 99dnscrypt (#580)
Added pidfile
* Sun Jan 22 13:00:28 2017 +0100
Android 99dnscrypt: do not sleep before trying the next resolver
* Sun Jan 22 12:55:11 2017 +0100
Android 99dnscrypt: reduce the margin to 700
* Sun Jan 22 12:48:59 2017 +0100
Android's 99dnscrypt: use a random resolver
* Sat Jan 21 11:52:49 2017 +0100
* Sat Jan 21 11:51:05 2017 +0100
Quotes
* Sat Jan 21 11:48:28 2017 +0100
Update ChangeLog
* Sat Jan 21 11:10:33 2017 +0100
Ignore *.exe
* Sat Jan 21 11:08:14 2017 +0100
Update permissions on dnscrypt-update-resolvers.sh
* Sat Jan 21 10:15:48 2017 +0100
Remove cd.. leftover
* Sat Jan 21 10:10:37 2017 +0100
Reduce the number of CI builds
* Sat Jan 21 09:18:11 2017 +0100
Check that everything builds with minimal libsodium builds
* Sat Jan 21 09:13:09 2017 +0100
Update NEWS/ChangeLog
* Sat Jan 21 09:09:07 2017 +0100
"make clean" is not super interesting to log
* Sat Jan 21 08:55:34 2017 +0100
Revert "New resolver in Tokyo, Japan: LifeTyper"
* Sat Jan 21 08:55:16 2017 +0100
Trusty is old
* Sat Jan 21 08:49:23 2017 +0100
Travis doesn't support IPv6 yet
* Sat Jan 21 08:48:56 2017 +0100
Travis: attempt install/uninstall + ./contrib/resolvers-check.sh
* Sat Jan 21 08:45:58 2017 +0100
resolvers-check.sh: IPV4_ONLY can be set to probe only IPv4 resolvers
* Sat Jan 21 08:12:53 2017 +0100
Move dnscrypt-update-resolvers.sh.in and resolvers-check.sh to contrib/
* Sat Jan 21 08:11:41 2017 +0100
Update .gitignore
* Sat Jan 21 08:05:08 2017 +0100
Use printunl/archlinux for the Windows builds
* Sat Jan 21 02:59:46 2017 +0100
New resolver in Tokyo, Japan: LifeTyper
* Sat Jan 21 02:54:08 2017 +0100
Use a random resolver in the tests
* Sat Jan 21 02:48:59 2017 +0100
Indent
* Sat Jan 21 02:45:03 2017 +0100
win32-win64-xcompile.sh: always compile from the script's directory
* Sat Jan 21 01:52:27 2017 +0100
In the Windows dist, remove the sample conf, add WINDOWS doc
* Sat Jan 21 00:00:55 2017 +0100
Update NEWS
* Sat Jan 21 00:00:10 2017 +0100
Update ChangeLog
* Fri Jan 20 23:58:24 2017 +0100
Fix libsodium warning
* Fri Jan 20 23:45:33 2017 +0100
CLEANFILES += dnscrypt-update-resolvers.sh
* Fri Jan 20 23:43:58 2017 +0100
Do not install the systemd files
Package maintainers will do a way better job with these
* Fri Jan 20 23:40:21 2017 +0100
Generate org.dnscrypt.osx.DNSCryptProxy.plist from a template
* Fri Jan 20 23:29:26 2017 +0100
Reduce the difference between Android and iOS builds
* Fri Jan 20 23:13:18 2017 +0100
Always include stdlib.h in evutil_rand.c
* Fri Jan 20 23:09:26 2017 +0100
Make the builds a little bit more silent
* Fri Jan 20 22:57:16 2017 +0100
Split
* Fri Jan 20 22:40:54 2017 +0100
Regen the man page
* Fri Jan 20 22:39:50 2017 +0100
Update ChangeLog
* Fri Jan 20 22:37:01 2017 +0100
Support "random" as a resolver name to pick a random resolver
* Fri Jan 20 21:32:03 2017 +0100
Install examples in @docdir@, create systemd files from templates
* Fri Jan 20 21:31:42 2017 +0100
Pay attention to @datarootdir@ in dnscrypt-update-resolvers.sh.in
* Fri Jan 20 13:58:37 2017 +0100
Print when the configuration file did not change
* Fri Jan 20 13:30:42 2017 +0100
1.9.4
* Fri Jan 20 13:30:57 2017 +0100
soltysiak down :( cs-lt up, cs-ua down.
* Fri Jan 20 13:08:02 2017 +0100
Overwrite conf if the installed one is the vanilla example
* Fri Jan 20 12:52:21 2017 +0100
Fix inverted logic in the installation of the example config file
* Wed Jan 18 10:52:53 2017 +0100
cs-lt and d0wn-us-ns3 are temporarily unresponsive
* Wed Jan 18 08:59:36 2017 +0100
Update ChangeLog
* Wed Jan 18 08:46:40 2017 +0100
On Linux, warn when we are running low on entropy
* Wed Jan 18 08:18:57 2017 +0100
Print even more details in test mode
* Wed Jan 18 08:15:48 2017 +0100
Improve the test mode output and print the validity period
* Wed Jan 18 03:15:58 2017 +0100
Travis: increase the margin for the certificate check
* Wed Jan 18 03:15:46 2017 +0100
Recommend installing pkg-config and libsystemd-dev for systemd
* Wed Jan 18 01:59:11 2017 +0100
Mention that NO_REUSEPORT is not required any more
* Tue Jan 17 22:48:18 2017 +0100
build-base should be enough to build the package
* Tue Jan 17 22:40:38 2017 +0100
d0wn-us-ns3 and soltysiak-ipv6 are temporarily down
* Tue Jan 17 22:37:45 2017 +0100
1.9.3
* Tue Jan 17 22:34:53 2017 +0100
Update ChangeLog
* Tue Jan 17 21:50:02 2017 +0100
Travis: actually try to install the proxy
* Tue Jan 17 21:41:29 2017 +0100
Fix the Plugin directive in config files; add a CI test for it as well
* Tue Jan 17 20:00:22 2017 +0100
Ignore ldconfig errors
* Tue Jan 17 19:52:50 2017 +0100
Restore -e, ignore make install errors