forked from ginhom/dnscrypt-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
6370 lines (3394 loc) · 137 KB
/
ChangeLog
File metadata and controls
6370 lines (3394 loc) · 137 KB
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
* Wed Jun 10 16:54:56 2015 +0200
Add a new Windows registry key: EphemeralKeys
* Wed Jun 10 15:38:16 2015 +0200
Rephrase
* Wed Jun 10 13:12:02 2015 +0200
Enable TFO on Linux
* Wed Jun 10 11:23:11 2015 +0200
Useless update to test the dnscrypt.org mirror
* Tue Jun 9 18:15:12 2015 +0200
dnscrypt.org-fr now supports Namecoin domains
* Tue Jun 9 14:05:40 2015 +0200
Easier
* Tue Jun 9 01:47:16 2015 +0200
Not relevant any more since the switch to port 443.
* Mon Jun 8 18:59:48 2015 +0200
Regen sig
* Mon Jun 8 18:58:58 2015 +0200
Revert "CloudNS Canberra is down"
* Mon Jun 8 18:56:26 2015 +0200
Add a link to the signature
* Mon Jun 8 16:57:05 2015 +0200
+ dnscrypt-resolvers.csv.minisig
* Mon Jun 8 16:50:06 2015 +0200
The minisign public key
* Mon Jun 8 16:39:25 2015 +0200
Update signature
* Mon Jun 8 16:37:48 2015 +0200
CloudNS Canberra is down
* Thu Jun 4 19:29:40 2015 +0200
Sorry, I haven't tried Solaris for a while
* Wed Jun 3 13:05:05 2015 +0200
If compiled with --enable-plugins-root, allow absolute paths starting with
the root, and always prepends the root if another absolute path is given.
* Wed Jun 3 12:30:37 2015 +0200
"Mobility" doesn't seem to be called like that any more.
* Wed Jun 3 12:16:57 2015 +0200
Remove WARNING
* Wed Jun 3 12:16:37 2015 +0200
The IP address doesn't have to be in hexadecimal any more
* Wed Jun 3 12:11:34 2015 +0200
Reduce the allowed burst of identical log messages and increase the time window
* Wed Jun 3 12:07:12 2015 +0200
Document log levels
* Tue Jun 2 21:44:28 2015 +0200
Bump
* Tue Jun 2 21:44:05 2015 +0200
Update ChangeLog
* Tue Jun 2 21:39:04 2015 +0200
Use buffered writes for logging. For Windows compat.
* Tue Jun 2 21:14:56 2015 +0200
Align
* Tue Jun 2 21:00:02 2015 +0200
Next version will be 1.5.0
* Tue Jun 2 20:53:29 2015 +0200
Stop pretending it provides confidentiality.
* Tue Jun 2 20:50:56 2015 +0200
Done in 1.4.4
* Tue Jun 2 20:42:49 2015 +0200
Nits
Merge: 875004f 950ca2b
* Tue Jun 2 20:41:39 2015 +0200
Merge pull request #194 from zedinosaur/logger-notify
Add systemd_notify wrapper on sd_notify.
* Tue Jun 2 20:29:42 2015 +0200
-E
* Tue Jun 2 20:25:21 2015 +0200
dnscrypt-proxy can now use ephemeral keys
* Tue Jun 2 18:12:39 2015 +0200
Display provider features
* Tue Jun 2 15:00:07 2015 +0200
Disclaimer
* Wed May 27 00:23:43 2015 +0200
Add a script to check providers health
* Wed May 27 00:19:03 2015 +0200
Remove dead resolvers
Udpate signature
* Wed May 27 00:06:03 2015 +0200
Reduce the number of retries to fetch the cert in test mode
Merge: de235dd 16f4880
* Fri May 22 18:09:01 2015 +0200
Merge pull request #214 from Shnatsel/master
Add systemd unit to debian package
* Fri May 22 18:25:38 2015 +0300
fscking systemd requires custom scripting on top of .service file, as if dh doesn't automatically know .service files go to systemd. bollocks
* Fri May 22 17:34:38 2015 +0300
Documentation lied to me!
* Fri May 22 17:26:08 2015 +0300
add missing 'automake' build dependency. Apparently 'autotools-dev' is not sufficient on Ubuntu 15.04
* Fri May 22 16:33:29 2015 +0300
Add a systemd service file for use in Ubuntu 15.04 and Debian Jessie. Not tested yet.
* Fri May 22 15:45:10 2015 +0300
Drop duplicated resolvconf code from sysvinit script, use shared init system wrappers instead
* Fri May 22 15:35:36 2015 +0300
Fix fallout from IPv6 enablement in sysvinit script
* Fri May 22 15:34:24 2015 +0300
add respawn stanza to upstart script so that dnscrypt-proxy will be respawned on crashes, but no more than 3 crashes in 60 seconds are allowed
* Fri May 22 15:33:18 2015 +0300
Split all scripting out of Upstart config so it can be reused for systemd config and potentially sysvinit
Merge: e1a8073 cb74a72
* Fri May 22 08:53:02 2015 +0200
Merge pull request #209 from Shnatsel/master
Add resolvconf support on Ubuntu + minor packaging fixes
* Fri May 22 02:35:19 2015 +0300
add another item to changelog
* Fri May 22 02:29:25 2015 +0300
Upstart's resolvconf auto-configuration now works with ports explicitly specified in the config
* Fri May 22 02:27:41 2015 +0300
Fixed sysvinit script to work with IPv6 local addresses and made it default to 127.0.0.1 for resolvconf if no address is specified explicitly in the config file
* Fri May 22 02:02:15 2015 +0300
replace [] with test in upstart-embedded shell scripts; doesn't work otherwise
* Fri May 22 01:26:13 2015 +0300
update Debian copyright file
* Fri May 22 01:24:30 2015 +0300
update Debian packaging changelog
* Fri May 22 01:21:12 2015 +0300
Add support for specifying a custom location for .csv file in dnscrypt-proxy.default and reorganize the .default for readability
* Fri May 22 01:19:07 2015 +0300
Add support for resolvconf to Upstart script
* Fri May 22 00:18:05 2015 +0300
More useful error reporting in case of missing config file
* Sat May 9 17:20:30 2015 +0200
libevent resync
* Sat May 9 16:36:29 2015 +0200
Relibtoolize libevent-modified
* Sat May 9 16:30:54 2015 +0200
Have dcplugin_get_client_address_len access the right struct member name
* Sat May 9 16:16:06 2015 +0200
Use libsodium 1.0.3
* Mon Apr 20 22:18:45 2015 +0200
Don't compile with Clang on Travis
* Sat Apr 18 19:10:54 2015 +0200
Test on OSX
* Thu Feb 19 14:49:16 2015 +0200
.travis.yml: multiple fixes
* test with clang too
* move to correct tag when cloning
* use as many jobs as CPUs available when running make
* notify if job fails immediately without waiting for a long time
* Sat Apr 11 11:12:21 2015 +0200
Do not use 127.0.0.7 as an example.
* Thu Apr 9 09:54:10 2015 +0200
Update sig
* Thu Apr 9 09:53:48 2015 +0200
Fix country for d0wn-ch-ns1
* Tue Apr 7 21:10:20 2015 +0200
Online.net -> Scaleway.com
* Sun Apr 5 20:20:22 2015 +0200
The AppArmor profile needs to access the resolvers list and ldns.
Not sure that this profile ever worked.
* Thu Mar 19 23:32:55 2015 +0100
Remove config.guess patch for Bitrig
* Sat Mar 14 22:56:43 2015 -0400
Add systemd_notify wrapper on sd_notify.
Move the logic for calling sd_notify into its own function and do better
logging of errors returned.
Merge: 71a07c1 b5edbb4
* Sun Mar 8 23:43:17 2015 +0100
Merge pull request #191 from dartraiden/master
corrected Fusl server addresses
* Mon Mar 9 01:31:00 2015 +0300
corrected Fusl server addresses
* Sun Mar 8 20:30:20 2015 +0100
Resign dnscrypt-resolvers.csv
* Sun Mar 8 20:29:21 2015 +0100
Add Fusl servers
* Sat Mar 7 16:18:46 2015 +0100
2015
* Sat Feb 14 01:39:57 2015 +0100
Use libsodium 1.0.2
* Fri Feb 13 20:49:51 2015 +0100
Update signature
* Thu Feb 12 08:24:30 2015 +0100
Update d0wn public key
* Sun Feb 8 17:08:12 2015 +0100
Sync android build scripts with libsodium
* Sun Feb 8 17:00:10 2015 +0100
Remove --disable-pie on Android
* Sun Feb 8 16:53:30 2015 +0100
Bump default platform version to 18
Merge: 31b8e3f d1a5dc7
* Sat Feb 7 15:58:27 2015 +0100
Merge pull request #183 from mosin/patch-1
android ndk requires arch to be arm not armv7
* Sat Feb 7 09:48:17 2015 -0500
android ndk requires arch to be arm not armv7
In the android-build.sh script, the call the ${ANDROID_NDK_HOME}/build/tools/make-standalone-toolchain.sh passes TARGET_ARCH as armv7 where as around line 117 of make-standalone-toolchain.sh requires ARCH to be {arm,x86,mips,arm64,x86_64,mips64}
* Wed Jan 28 07:52:09 2015 +0100
Use different short descriptions for ipredator and ipredator6
* Wed Jan 28 07:50:56 2015 +0100
Order lexically
Merge: 7abdc99 9f9e555
* Wed Jan 28 07:48:08 2015 +0100
Merge pull request #181 from d31m0/patch-1
1 new resolver
* Wed Jan 28 05:56:29 2015 +0100
1 new resolver
IPV4 / IPV6 resolver by Ipredator.se VPN anonymizer service.
* Mon Jan 19 09:47:33 2015 +0100
libtool and autotools are not enough; pkg-config is now also required
* Mon Jan 19 09:36:55 2015 +0100
Don't strip binaries on Win32.
* Mon Jan 19 09:01:55 2015 +0100
Copy libeay32.dll if required by ldns
* Fri Jan 16 09:29:18 2015 +0100
Revert "Add a new OpenNIC server in Washington"
* Thu Jan 15 17:21:59 2015 +0100
Add pre-generated man pages
* Thu Jan 15 16:58:39 2015 +0100
Revert "Check if -Wl,-pie should be used instead of -pie in LDFLAGS"
* Thu Jan 15 09:49:18 2015 +0100
No need to log when recvfrom() returns EAGAIN or EINTR
On Linux, recvfrom() returns EAGAIN when the packet has an invalid checksum.
* Fri Jan 9 08:36:59 2015 +0100
Remove OpenNIC JP servers
* Tue Jan 6 10:57:05 2015 +0100
+ DNSSEC signed public key for fr-dnscrypt.org
* Mon Jan 5 21:36:22 2015 +0100
We use edns by default, so set udp_max_size to the default max payload size
* Mon Jan 5 18:07:55 2015 +0100
Update ChangeLog
* Mon Jan 5 17:55:36 2015 +0100
+dnscrypt.org-fr
* Mon Jan 5 17:16:31 2015 +0100
NEWS update
* Mon Jan 5 17:10:50 2015 +0100
Get ready for a new release
* Mon Jan 5 17:07:25 2015 +0100
libevent 2.0.22
* Mon Jan 5 17:04:17 2015 +0100
libevent: fix CVE-2014-6272
* Mon Jan 5 17:03:44 2015 +0100
libevent: Fix evbuffer_peek() with len==-1 and start_at non-NULL.
* Wed Dec 31 19:09:00 2014 +0100
2015
* Mon Dec 29 18:29:18 2014 +0100
Check if -D_FORTIFY_SOURCE=2 works
* Mon Dec 29 18:22:22 2014 +0100
Add IPv6 IP for ns1-wa-us
Merge: 14d2932 783edbf
* Mon Dec 29 18:19:23 2014 +0100
Merge branch 'master' of https://github.com/jedisct1/dnscrypt-proxy
* 'master' of https://github.com/jedisct1/dnscrypt-proxy:
Check if -Wl,-pie should be used instead of -pie in LDFLAGS
Reflecting 'd0wn-fr-ns1' server IP address change.
* Mon Dec 29 18:19:05 2014 +0100
Add a new OpenNIC server in Washington
* Mon Dec 29 01:29:11 2014 +0100
Check if -Wl,-pie should be used instead of -pie in LDFLAGS
Merge: 8bb1599 579c596
* Fri Dec 26 14:10:13 2014 +0100
Merge pull request #171 from DistantThunder/master
Updating d0wn french servers.
* Fri Dec 26 02:32:29 2014 +0100
Reflecting 'd0wn-fr-ns1' server IP address change.
Changing 'd0wn-fr-ns2' listening port to a working one.
Merge: 3f7dbf5 32794a0
* Sun Dec 21 14:08:23 2014 +0100
Merge pull request #169 from pataquets/patch-1
Fix typos
* Sun Dec 21 12:05:07 2014 +0100
Fix typo
* Sun Dec 21 12:03:01 2014 +0100
Fix typo
Merge: 57d3072 562ddd4
* Thu Dec 4 17:40:14 2014 -0800
Merge pull request #166 from xuzhen/master
fixed issue #104
* Thu Dec 4 21:31:28 2014 +0800
fixed issue #104
* Wed Dec 3 15:02:27 2014 -0800
Update ChangeLog
* Wed Dec 3 15:01:09 2014 -0800
Remove OpenNIC UK resolvers
* Tue Dec 2 23:23:29 2014 -0800
Bump fpm package version up
* Tue Dec 2 23:22:49 2014 -0800
Use resolver-name
* Tue Dec 2 23:07:55 2014 -0800
dnscrypt-wrapper doesn't support socket activation (yet?)
* Tue Dec 2 23:07:03 2014 -0800
Document how to run dnscrypt-proxy with systemd
* Tue Dec 2 19:15:44 2014 -0800
Remove offline d0wn servers
* Tue Dec 2 19:00:11 2014 -0800
open dns supports https now
* Tue Dec 2 18:57:21 2014 -0800
Update d0wn IPs, add new d0wn servers, update open dns catchline
* Tue Dec 2 17:51:11 2014 -0800
Bump version number
* Tue Dec 2 17:27:05 2014 -0800
When using a systemd socket, retrieve its local address.
* Tue Dec 2 17:13:02 2014 -0800
The systemd service needs NonBlocking=true
* Tue Dec 2 17:08:58 2014 -0800
Socket inherited from systemd must be set to nonblocking.
* Tue Dec 2 16:46:27 2014 -0800
When using systemd, the local address may not reflect the reality.
* Tue Dec 2 16:39:50 2014 -0800
UDP sockets sent by systemd are not listening
* Tue Dec 2 15:52:58 2014 -0800
Fix error message
* Tue Dec 2 15:40:42 2014 -0800
Add a simple sample systemd service file.
* Tue Dec 2 15:15:06 2014 -0800
Add SYSTEMD_DAEMON_ flags
* Tue Dec 2 14:54:05 2014 -0800
The TCP socket is of type SOCK_STREAM.
* Tue Dec 2 14:53:47 2014 -0800
Outline systemd descriptors initialization
* Tue Dec 2 14:51:35 2014 -0800
Check for libsystemd-daemon in addition to libsystemd.
Do not pick systemd unless --with-systemd is explicitly used.
* Tue Dec 2 14:18:15 2014 -0800
A file descriptor doesn't have to be >= 0
* Tue Dec 2 14:16:52 2014 -0800
Indent
* Tue Dec 2 16:42:19 2014 -0800
logger() -> logger_noformat()
* Tue Dec 2 15:43:22 2014 -0800
Use sodium 1.0.1
* Tue Dec 2 14:56:50 2014 -0800
libevent2: Fix race caused by event_active
There is a race between manual event_active and natural event activation.
If both happen at the same time on the same FD, they would both be protected by the same event base lock except for 1 LoC where the fields of struct event are read without any kind of lock.
In 2.0-stable, none of this is inside the lock; in HEAD, only the callback is read inside the lock. This gets the callback and all 3 arguments inside the lock before calling it outside the lock.
* Tue Dec 2 14:55:57 2014 -0800
Sodium 0.5.0 is the bare minimum.
Merge: 6d3a902 7a8b8e8
* Tue Dec 2 14:12:37 2014 -0800
Merge pull request #165 from zedinosaur/systemd
Add socket activation to dnscrypt-proxy.
* Sat Nov 29 22:56:40 2014 -0500
Add documentation about systemd integration.
* Sat Nov 29 22:27:23 2014 -0500
Move READY notify to when listeners start.
* Sat Nov 29 14:47:26 2014 -0500
Add socket activation to dnscrypt-proxy.
Conditional systemd support for socket activation and startup and shutdown
notification.
Merge: 3c605e7 24efbde
* Tue Nov 25 16:41:48 2014 -0800
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
iOS: add -miphoneos-version-min
Add the cypherpunk.lu server
Update dnscrypt-resolvers.csv.sig
Sort resolvers list
Added a DNSCrypt server in Luxembourg
Indent
High-level functions are enough
Not Poly1305-AES.
* Tue Nov 25 16:41:29 2014 -0800
Don't use -fwrapv if it's redundant.
* Thu Nov 20 14:01:46 2014 -0800
iOS: add -miphoneos-version-min
* Fri Oct 31 13:02:14 2014 -0700
Add the cypherpunk.lu server
* Fri Oct 31 09:01:55 2014 -0700
Update dnscrypt-resolvers.csv.sig
* Fri Oct 31 09:01:35 2014 -0700
Sort resolvers list
Merge: 4ab8308 1f3d58e
* Fri Oct 31 08:58:52 2014 -0700
Merge pull request #157 from virii/master
Added a DNSCrypt server in Luxembourg
* Fri Oct 31 16:51:27 2014 +0100
Added a DNSCrypt server in Luxembourg
* Wed Oct 29 02:13:20 2014 -0700
Indent
* Wed Oct 29 02:12:30 2014 -0700
High-level functions are enough
* Wed Oct 29 02:09:37 2014 -0700
Not Poly1305-AES.
Merge: 41c667e ca47395
* Mon Oct 13 10:17:52 2014 -0700
Merge pull request #150 from rob/patch-1
Update dnscrypt-resolvers.csv
* Mon Oct 13 09:33:50 2014 -0400
Update dnscrypt-resolvers.csv
According to the OpenNIC wiki [1], the correct IPv6 address for PhilipSoutham's server is ns18.ca.us, not ns17.ca.us. The provider key was also wrong.
[1] http://wiki.opennicproject.org/Tier2
* Fri Oct 10 19:17:23 2014 -0700
Libevent2 - Fix a typo in a doxygen comment. Reported by äå.
* Tue Sep 30 16:05:35 2014 -0700
d0wn servers support Namecoin - Prodded by @bugreport0
Merge: 9ec8509 5a9a96d
* Mon Sep 29 15:42:05 2014 -0700
Merge remote-tracking branch 'teknocrat/master'
* teknocrat/master:
* New ebuild for 1.4.0 * New ebuild for 1.4.1 * Configuration change to support providers * Drop libsodium from overlay (is not in portage tree) * Dnscrypt-Proxy 1.4.x requires libsodium 1.0.0 or newer
Conflicts:
packages/gentoo/net-dns/dnscrypt-proxy/Manifest
packages/gentoo/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.4.0.ebuild
packages/gentoo/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.4.1.ebuild
* Wed Sep 24 11:17:38 2014 -0400
* New ebuild for 1.4.0
* New ebuild for 1.4.1
* Configuration change to support providers
* Drop libsodium from overlay (is not in portage tree)
* Dnscrypt-Proxy 1.4.x requires libsodium 1.0.0 or newer
* Sun Sep 28 01:42:11 2014 -0700
and -> and/or
Merge: 1578efb 4cd37f7
* Sat Sep 27 12:13:32 2014 -0700
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
* New ebuild for 1.4.0 * New ebuild for 1.4.1 * Configuration change to support providers
* Sat Sep 27 12:13:10 2014 -0700
Fix the tests, update Gemfile by the way
Merge: 4991aa3 c21c3c1
* Wed Sep 24 08:56:40 2014 -0700
Merge pull request #145 from Teknocrat/master
New Gentoo ebuilds for 1.4.0 and 1.4.1
* Wed Sep 24 11:17:38 2014 -0400
* New ebuild for 1.4.0
* New ebuild for 1.4.1
* Configuration change to support providers
* Sat Sep 20 23:05:44 2014 -0700
Mention that a minimal build of libsodium is fine.
* Fri Sep 19 00:02:26 2014 -0700
Update ChangeLog
Merge: 3c960ad 1e2eb46
* Thu Sep 18 23:23:45 2014 -0700
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
Do not use the same description for 2 different configurations
Update ChangeLog
libevent - [Bugfix] fix bufferevent setwatermark suspend_read
libevent - regress_buffer: fix 'memcmp' compare size
* Thu Sep 18 23:18:23 2014 -0700
1.4.0 -> 1.4.1
* Thu Sep 18 22:55:23 2014 -0700
timing -> timing out
* Thu Sep 18 18:56:25 2014 -0700
Do not use the same description for 2 different configurations
* Thu Sep 18 17:25:37 2014 -0700
Update ChangeLog
* Thu Sep 18 17:24:03 2014 -0700
libevent - [Bugfix] fix bufferevent setwatermark suspend_read
* Thu Sep 18 17:23:22 2014 -0700
libevent - regress_buffer: fix 'memcmp' compare size
Merge: 5d55fee 4a3a23c
* Thu Sep 11 20:22:14 2014 -0700
Merge remote-tracking branch 'Shnatsel/master'
* Shnatsel/master:
Bump compat to 9, standards version to 3.9.5
Drop AppArmor installation from Debian/Ubuntu package
Since we could not resolve the AppArmor shutdown issue so far, at least add a warning about it
* Sun Sep 7 17:49:19 2014 -0700
Target iOS 7.1 since iOS 8 hasn't been jailbroken yet
* Sat Sep 6 13:58:09 2014 -0700
Use Sodium 0.7.0
* Thu Sep 4 15:05:58 2014 -0700
ChangeLog update
* Thu Sep 4 15:00:35 2014 -0700
Add a few comments to the .plist file
* Thu Sep 4 14:57:28 2014 -0700
Mention that the path to the CSV file is also required
* Tue Sep 2 20:09:22 2014 -0700
ChangeLog update
* Tue Sep 2 14:53:24 2014 -0700
libevent: Consistently check for failure from evbuffer_pullup()
* Wed Aug 27 22:50:37 2014 -0700
Ship libgcc_s_dw2-1.dll in the Windows package
* Tue Aug 26 19:14:37 2014 -0700
Bump libsodium DLL version
* Tue Aug 26 11:45:14 2014 -0700
Mention Docker images
* Sun Aug 24 19:03:35 2014 +0400
Bump compat to 9, standards version to 3.9.5
* Sun Aug 24 18:48:36 2014 +0400
Drop AppArmor installation from Debian/Ubuntu package
* Sun Aug 24 18:40:29 2014 +0400
Since we could not resolve the AppArmor shutdown issue so far, at least add a warning about it
* Fri Aug 22 11:48:53 2014 -0700
libevent2
* Fri Aug 22 11:48:19 2014 -0700
DTrace -> dtrace
* Fri Aug 22 11:47:32 2014 -0700
Update documentation
* Fri Aug 22 11:43:17 2014 -0700
I am not running Mountain Lion any more.
* Fri Aug 22 11:43:02 2014 -0700
Doc update
* Thu Aug 21 23:05:59 2014 -0700
More permanent issues URL
* Thu Aug 21 22:58:04 2014 -0700
-encrypted
* Thu Aug 21 22:55:33 2014 -0700
Clarify what the Resolver Name is
* Thu Aug 21 22:54:05 2014 -0700
Regen documentation
* Thu Aug 21 22:47:22 2014 -0700
Make it clear that most people just need to run dnscrypt-proxy -R <provider name>
* Tue Aug 19 10:18:04 2014 -0700
Add a few files created by "make verify" to .gitignore.
* Tue Aug 19 08:28:49 2014 -0700
Note about dnscrypt.org being blocked
* Sat Aug 16 22:31:53 2014 -0700
Revert "No more resolvers in Japan :("
* Thu Aug 14 12:13:23 2014 -0700
Remove unused function.
* Tue Aug 12 22:43:43 2014 -0700
Revert "Bring back clang on Travis"
Merge: ef06bdb 1eb7a00
* Tue Aug 12 22:43:32 2014 -0700
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy
* 'master' of github.com:jedisct1/dnscrypt-proxy:
Bring back clang on Travis
* Tue Aug 12 22:41:55 2014 -0700
No more resolvers in Japan :(
* Mon Aug 11 16:47:26 2014 -0700
Bring back clang on Travis
* Thu Aug 7 20:14:01 2014 -0700
clang seems to be broken on Travis
* Thu Aug 7 19:45:22 2014 -0700
Document that some plugins need additional DLLs on Windows
* Mon Jul 28 13:02:56 2014 -0700
Don't even try to parse an empty file.
* Sat Jul 26 12:12:17 2014 -0700
Bump version to 1.4.1
* Sat Jul 26 12:07:19 2014 -0700
mlock() the proxy context
* Sat Jul 26 11:59:43 2014 -0700
Replace the custom fingerprint parse with sodium_hextobin()
Merge: 5ddc648 3f85a31
* Sat Jul 26 11:21:41 2014 -0700
Merge branch 'master' of github.com:jedisct1/dnscrypt-proxy