-
Notifications
You must be signed in to change notification settings - Fork 117
/
changelog
1854 lines (1250 loc) · 62.4 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
whois (5.5.21) unstable; urgency=medium
* Updated the .cv and .sd TLD servers.
* Remove 4 new gTLDs which are no longer active.
-- Marco d'Itri <[email protected]> Sat, 24 Feb 2024 17:22:22 +0100
whois (5.5.20) unstable; urgency=medium
* Added the .gn TLD server.
* Removed 6 new gTLDs which are no longer active.
* Enabled getopt_long(3) support on Solaris.
-- Marco d'Itri <[email protected]> Fri, 10 Nov 2023 15:26:02 +0100
whois (5.5.19) unstable; urgency=medium
* Fixed english support for Japanese queries to not add again the /e
argument if it had already been provided by the user. (Closes: #1050171)
* Added the .ye and .বাংলা (.xn--54b7fta0cc, Bangladesh) TLD servers.
* Updated the .ba, .bb, .dk, .es, .gt, .jo, .ml, .mo, .pa, .pn, .sv,
.uy, .ﺍﻻﺭﺪﻧ (.xn--mgbayh7gpa, Jordan) and .澳門 (.xn--mix891f, Macao)
TLD servers.
* Upgraded the TLD URLs to HTTPS whenever possible.
* Updated the charset for whois.jprs.jp.
* Removed 3 new gTLDs which are no longer active.
* Removed support for the obsolete as32 dot notation.
-- Marco d'Itri <[email protected]> Sun, 08 Oct 2023 22:58:33 +0200
whois (5.5.18) unstable; urgency=medium
[ Marco d'Itri ]
* Updated the .ga TLD server. (Closes: #1037288)
* Added new recovered IPv4 allocations.
* Removed the delegation of 43.0.0.0/8 to JPNIC.
* Removed 12 new gTLDs which are no longer active.
* Improved the man page source, courtesy of Bjarni Ingi Gislason.
(Closes: #1040613)
[ Robert Scheck ]
* Added the .edu.za SLD server.
* Updated the .alt.za SLD server.
* Added the -ru and -su NIC handles servers.
-- Marco d'Itri <[email protected]> Sat, 22 Jul 2023 17:56:56 +0200
whois (5.5.17) unstable; urgency=medium
[ Robert Scheck ]
* Added the .cd TLD server.
* Updated the -kg NIC handles server name.
[ Marco d'Itri ]
* Removed 2 new gTLDs which are no longer active.
-- Marco d'Itri <[email protected]> Wed, 03 May 2023 14:24:37 +0200
whois (5.5.16) unstable; urgency=medium
* Add bash completion support, courtesy of Ville Skyttä.
* Updated the .tr TLD server.
* Removed support for -metu NIC handles.
-- Marco d'Itri <[email protected]> Tue, 28 Feb 2023 00:58:22 +0100
whois (5.5.15) unstable; urgency=medium
* Updated the .bd, .nz and .tv TLD servers.
* Added the .llyw.cymru, .gov.scot and .gov.wales SLD servers.
* Updated the .ac.uk and .gov.uk SLD servers.
* Recursion has been enabled for whois.nic.tv.
* Updated the list of new gTLDs with four generic TLDs assigned in
October 2013 which were missing due to a bug.
* Removed 4 new gTLDs which are no longer active.
* Added the Georgian translation, contributed by Temuri Doghonadze.
* Updated the Finnish translation, contributed by Lauri Nurmi.
-- Marco d'Itri <[email protected]> Wed, 28 Dec 2022 20:44:11 +0100
whois (5.5.14) unstable; urgency=medium
* Added the .bf and .sd TLD servers.
* Removed the .gu TLD server.
* Updated the .dm, .fj, .mt and .pk TLD servers.
* Updated the charset for whois.nic.tr.
* Updated the list of new gTLDs.
* Removed whois.nic.fr from the list of RIPE-like servers, because it
is not one anymore. (Closes: #1021110)
* Renamed whois.arnes.si to whois.register.si in the list of RIPE-like
servers.
* Added the hiding string for whois.auda.org.au.
* Fixed uclibc builds, because uclibc does not have NLS support.
-- Marco d'Itri <[email protected]> Sun, 16 Oct 2022 22:16:34 +0200
whois (5.5.13) unstable; urgency=medium
* Added the .sd TLD server.
* Updated the list of new gTLDs.
* Added the Turkish translation, contributed by Oğuz Ersen.
-- Marco d'Itri <[email protected]> Fri, 08 Apr 2022 01:08:55 +0200
whois (5.5.12) unstable; urgency=medium
* Updated the .pro TLD server, which was totally broken.
* Fixed the detection of Japanese locales using $LC_MESSAGES.
* Implemented providing partial salt strings to mkpasswd.
* Removed 2 new gTLDs which are no longer active.
* Updated one or more translations. (Closes: #1003597)
* Enabled full hardening in debian/rules.
-- Marco d'Itri <[email protected]> Wed, 23 Feb 2022 01:03:11 +0100
whois (5.5.11) unstable; urgency=medium
* Implemented a --no-recursion command line option to disable recursion
from registrar to registry servers.
* Updated the .pro, .vu and .xxx TLD servers.
* Updated the list of new gTLDs.
* Removed 7 new gTLDs which are no longer active.
* Updated make_version_h.pl to support Ubuntu no-change uploads,
contributed by Matthias Klose. (Closes: #995873)
-- Marco d'Itri <[email protected]> Mon, 03 Jan 2022 18:18:36 +0100
whois (5.5.10) unstable; urgency=medium
* Updated the .lb TLD server.
* Removed 5 new gTLDs which are no longer active.
* Updated the charset for whois.lacnic.net, whois.ax, whois.cira.ca
and whois.dns.pt.
* Fixed reporting an older version number when using --version.
-- Marco d'Itri <[email protected]> Sun, 06 Jun 2021 19:54:13 +0200
whois (5.5.9) unstable; urgency=medium
* Updated the .ga TLD server.
* Removed the .cd and cf TLD servers.
* Removed 72 new gTLDs which are no longer active.
-- Marco d'Itri <[email protected]> Sun, 28 Mar 2021 00:38:20 +0100
whois (5.5.8) unstable; urgency=medium
* Added the .xn--4dbrk0ce (.ישראל, Israel) TLD server.
* Updated the .ie and .az TLD servers.
* Updated the list of new gTLDs.
-- Marco d'Itri <[email protected]> Tue, 16 Feb 2021 01:53:57 +0100
whois (5.5.7) unstable; urgency=medium
* Implemented support for CIDR queries to whois.arin.net.
The old behaviour caused the server to return no results, now when
querying for ip/length the server returns a result if there is an
exact match.
* Added the .ao, .bh, .mm, and .xn--pgbs0dh (.تونس, Tunisia) TLD servers.
* Added some .ru and .su SLD servers.
* Updated the .th and .xn--o3cw4h TLD servers.
* Updated the .cy, .jo, .lb, .np, .xn--mgbayh7gpa and .xn--qxam TLD URLs.
* Updated the charset for whois.ati.tn.
* Updated the list of new gTLDs.
-- Marco d'Itri <[email protected]> Sat, 03 Oct 2020 17:43:06 +0200
whois (5.5.6) unstable; urgency=medium
* Depend on pkg-config, or else the package will be built without libidn
and libxcrypt. (Closes: #950140)
* Added the .xn--q7ce6a (.ລາວ, Lao) TLD server.
* Added the .xn--pgbs0dh (.البحرين, Bahrain) domain.
-- Marco d'Itri <[email protected]> Sun, 16 Feb 2020 10:25:51 +0100
whois (5.5.5) unstable; urgency=medium
* Fixed the hide string for .sx, which broke many others.
* Fixed cross-compilation. (Closes: #947971)
-- Marco d'Itri <[email protected]> Thu, 23 Jan 2020 09:55:48 +0100
whois (5.5.4) unstable; urgency=medium
* Updated the .vu TLD server.
* Updated the list of new gTLDs.
* Added the charset for whois.ripe.net.
* Added support for the referrals in answers from whois.registry.in.
* Implemented support for passing raw $salts$.
* Fixed and updated many hiding string.
* Cleaned up the text and typesetting of the man pages. (Closes: #945622)
-- Marco d'Itri <[email protected]> Tue, 31 Dec 2019 03:04:15 +0100
whois (5.5.3) unstable; urgency=medium
* Added the new 2630:0000::/12 IPv6 assignment to ARIN.
* Updated the .xxx TLD server.
* Updated the list of new gTLDs.
* Converted the Debian packaging to dh.
-- Marco d'Itri <[email protected]> Sun, 17 Nov 2019 21:33:50 +0100
whois (5.5.2) unstable; urgency=medium
* Added the .xn--qxa6a (.ευ, European Union, Greek) TLD server.
* Updated the .td TLD server.
* Updated one or more translations.
-- Marco d'Itri <[email protected]> Wed, 02 Oct 2019 23:44:49 +0200
whois (5.5.1) unstable; urgency=medium
* Updated the .ge TLD server.
* Updated one or more translations.
-- Marco d'Itri <[email protected]> Sun, 18 Aug 2019 19:47:55 +0200
whois (5.5.0) unstable; urgency=medium
* Implemented the -I option to query whois.iana.org and use its referrals.
(Closes: #774603)
* Updated one or more translations. (Closes: #931336, #931244)
* Automatically generate the version string sent to servers because I
kept forgetting to update it with new releases.
* Updated the .zm TLD server.
* Added new recovered IPv4 allocations.
-- Marco d'Itri <[email protected]> Fri, 19 Jul 2019 11:31:42 +0200
whois (5.4.3) unstable; urgency=medium
* Added the new 2a10:0000::/12 IPv6 assignment to RIPE.
-- Marco d'Itri <[email protected]> Wed, 12 Jun 2019 15:03:56 +0200
whois (5.4.2) unstable; urgency=medium
* Added the .ss and .xn--mgbah1a3hjkrd (موريتانيا, Mauritania) TLD
servers.
* Updated the .in TLD and related IDN TLDs servers.
* Updated the .fm TLD server.
-- Marco d'Itri <[email protected]> Thu, 28 Mar 2019 00:48:28 +0100
whois (5.4.1) unstable; urgency=medium
* Added the .mw TLD server.
* Updated one or more translations.
-- Marco d'Itri <[email protected]> Sun, 27 Jan 2019 04:48:53 +0100
whois (5.4.0) unstable; urgency=medium
* Added support for the new libxcrypt 4.x.
This allows mkpasswd to support many modern password hash methods.
* Renamed the hash types (i.e. the arguments to -H) to use the naming
convention established by John the Ripper.
* Made mkpasswd use entropy gathered by crypt_gensalt(3), when available.
* Fixed many portability bugs in mkpasswd.
* Added the .gp TLD server.
* Updated the list of new gTLDs.
-- Marco d'Itri <[email protected]> Fri, 26 Oct 2018 18:32:49 +0200
whois (5.3.2) unstable; urgency=medium
* Added the .ge TLD server.
* Updated the charset for whois.nic.cl. (Closes: #900047)
* Updated the list of new gTLDs.
-- Marco d'Itri <[email protected]> Sun, 15 Jul 2018 12:38:42 +0200
whois (5.3.1) unstable; urgency=medium
* mkpasswd: support passwords of arbitrary length. (Closes: #899254)
* Added the .ls TLD server. (Closes: #896452)
* Added support for -bzh and -uanic NIC handles.
* Updated the list of new gTLDs.
-- Marco d'Itri <[email protected]> Tue, 22 May 2018 15:32:28 +0200
whois (5.3.0) unstable; urgency=medium
* Implemented querying for ip6.arpa domains.
* Updated the .pr TLD servers.
* Updated the list of new gTLDs.
-- Marco d'Itri <[email protected]> Sun, 21 Jan 2018 01:23:45 +0100
whois (5.2.20) unstable; urgency=medium
* Added the .mr TLD server.
* Removed the .bs TLD server.
* Updated the .ai, .gh, .gr, .kw, .ls, .ph, .sb, .com.uy and .vn TLD
servers.
-- Marco d'Itri <[email protected]> Wed, 27 Dec 2017 03:15:27 +0100
whois (5.2.19) unstable; urgency=medium
* Switched do libidn2.
* Adopted getentropy(2) for mkpasswd on recent Linux.
* Updated the .id and .museum TLD servers.
* Removed the .dj TLD server.
-- Marco d'Itri <[email protected]> Sun, 10 Dec 2017 17:16:58 +0100
whois (5.2.18) unstable; urgency=medium
* Fixed an unitialised variable which used to break querying the
Verisign registry servers with parameters.
* Do not request domains only when querying the Verisign registry
servers for a hostname.
* Fixed the program return code for queries like
"nameserver name.example.com".
-- Marco d'Itri <[email protected]> Tue, 22 Aug 2017 16:45:02 +0200
whois (5.2.17) unstable; urgency=high
* Fixed whois referrals for .com, .net, .jobs, .bz, .cc and .tv, broken
by an ICANN-mandated output change:
https://www.icann.org/resources/pages/rdds-labeling-policy-2017-02-01-en
* Added the .xn--2scrj9c (ಭಾರತ, India), .xn--3hcrj9c (ଭାରତ, India),
.xn--45br5cyl (ভাৰত, India), .xn--h2breg3eve (भारतम्, India),
.xn--h2brj9c8c (भारोत, India), .xn--mgbbh1a (ﺏﺍﺮﺗ, India),
.xn--mgbgu82a (ڀﺍﺮﺗ, India) and .xn--rvc1e0am3e (ഭാരതം, India)
TLD servers.
* Updated the list of new gTLDs.
* whois.1: fixed a typo. (Closes: #866742)
-- Marco d'Itri <[email protected]> Thu, 27 Jul 2017 17:08:47 +0200
whois (5.2.16) unstable; urgency=medium
* Fixed parsing of 6to4 addresses broken in 5.2.15.
* Updated the .do TLD server.
* Updated the list of new gTLDs.
-- Marco d'Itri <[email protected]> Mon, 13 Mar 2017 01:40:38 +0100
whois (5.2.15) unstable; urgency=medium
* Updated the .gf and .mq TLD servers.
* Updated the list of new gTLDs.
* Updated the charset for whois.nic.kz.
* Fixed multiple portability issues on non-Linux platforms.
* Fixed a lot of minor compiler warnings with no practical effects.
* Added support for libidn2, not enabled yet.
-- Marco d'Itri <[email protected]> Mon, 27 Feb 2017 00:37:41 +0100
whois (5.2.14) unstable; urgency=medium
* Updated the .ar, .bm and .fm TLD servers.
* Updated the Afilias hiding string to fix hiding for the new .bm server.
-- Marco d'Itri <[email protected]> Thu, 29 Dec 2016 23:12:19 +0100
whois (5.2.13) unstable; urgency=medium
* Use "domain" instead of "=" for default verisign-grs queries,
to ignore the name server names spam.
* Fixed make_ip_del_recovered.pl, which generated non-functioning data.
* Added the .xn--90ae (бг, Bulgaria) TLD server.
* Updated the .bd, .jobs and .mobi TLD servers.
* Added new ASN allocations.
* Added new recovered IPv4 allocations.
* Updated the crsnic.net hiding string to fix hiding for .bi.
* Updated the list of new gTLDs.
-- Marco d'Itri <[email protected]> Sun, 30 Oct 2016 17:08:07 +0100
whois (5.2.12) unstable; urgency=medium
* Implemented support for fuzzing with the awesome american fuzzy lop.
* Added the .xn--e1a4c (ею, European Union) and .xn--mix891f (澳門,
Macao) TLD servers.
* Updated the .jobs, .kn and .pro TLD servers.
* Updated the .gi, .lc, .sc and .vc TLD servers, because the precedent
data caused the program to return an error status.
* Updated the list of new gTLDs.
* Fixed the code which queries whois.iana.org for TLDs to recognize IDN
TLDs too.
-- Marco d'Itri <[email protected]> Tue, 29 Mar 2016 05:33:10 +0200
whois (5.2.11) unstable; urgency=medium
* Fixed the --select-types and --sources long options.
* Updated the list of new gTLDs.
* Removed the .an TLD.
* Removed the .xn--l1acc (.МОН, Mongolia) TLD server.
* Added the .xn--mgbtx2b (عراق, Iraq) and .xn--qxam (.ΕΛ, Greece) TLD
servers.
-- Marco d'Itri <[email protected]> Tue, 08 Dec 2015 07:43:48 +0100
whois (5.2.10) unstable; urgency=medium
* Updated the list of new gTLDs.
* Updated the .ki and .vg TLD servers.
-- Marco d'Itri <[email protected]> Thu, 30 Jul 2015 03:26:56 +0200
whois (5.2.9) unstable; urgency=medium
* Updated the list of new gTLDs.
* Updated the .bn and .cr TLD servers.
* Updated IDSTRING to 5.2.
-- Marco d'Itri <[email protected]> Mon, 08 Jun 2015 02:18:47 +0200
whois (5.2.8) unstable; urgency=medium
* Updated the list of new gTLDs.
* Added new ASN allocations.
* Added the .xn--y9a3aq (.հայ, Armenia) TLD server.
-- Marco d'Itri <[email protected]> Mon, 18 May 2015 00:37:32 +0200
whois (5.2.7) unstable; urgency=medium
* Removed a bogus disclaimer detection string.
* Updated the list of new gTLDs
-- Marco d'Itri <[email protected]> Wed, 25 Mar 2015 23:04:44 +0100
whois (5.2.6) unstable; urgency=medium
* Added the .edu.ph TLD server.
* Removed the .gov.py TLD server. (Closes: #780562)
* Updated the list of new gTLDs.
* Implemented hiding multiple disclaimers blocks to improve detection.
* Updated the disclaimer detection strings.
-- Marco d'Itri <[email protected]> Mon, 23 Mar 2015 04:28:39 +0100
whois (5.2.5) unstable; urgency=medium
* Added the .xn--90ais (.бел, Belarus) TLD server.
* Updated the .ky TLD server.
* Updated the list of new gTLDs.
* Added new recovered IPv4 allocations.
-- Marco d'Itri <[email protected]> Tue, 03 Mar 2015 02:15:57 +0100
whois (5.2.4) unstable; urgency=medium
* Fixed referrals handling for the .cc, .tv a .jobs TLDs.
* Updated the list of new gTLDs.
-- Marco d'Itri <[email protected]> Sun, 25 Jan 2015 04:07:20 +0100
whois (5.2.3) unstable; urgency=medium
* Added the .gw TLD server.
* Updated the .bm, .gr, .gt, .md, .np, .py, .tc, .tg, .vi, .net.za,
.org.za and .web.za TLD servers. (Closes: #773489)
* Removed the .cg TLD server.
* Updated the list of new gTLDs.
* mkpasswd: use arc4random_buf(3) where available.
* mkpasswd: support OpenBSD's new hash 2b.
* Updated some IPv4 allocations.
* Remove the new_gtlds.h generated file from the Debian source package.
-- Marco d'Itri <[email protected]> Fri, 26 Dec 2014 20:12:24 +0100
whois (5.2.2) unstable; urgency=medium
* Fixed the code that removes trailing dots. (Closes: #763834)
* Added the .xn--d1alf (.мкд, Macedonia) and .xn--node (.გე, Georgia)
TLD servers.
* Updated the list of new gTLDs.
-- Marco d'Itri <[email protected]> Thu, 06 Nov 2014 03:47:43 +0100
whois (5.2.1) unstable; urgency=medium
* Added the .aw and .zm TLD servers.
* Added the charset for whois.domain.kg.
* Updated the list of new gTLDs.
* Queries for bare TLDs will be directed to whois.iana.org.
(Closes: #763833)
-- Marco d'Itri <[email protected]> Thu, 16 Oct 2014 02:01:20 +0200
whois (5.2.0) unstable; urgency=medium
* Implemented support for the long RIPE flags.
* "Fixed" some harmless bugs discovered with a Coverity scan.
* Default to whois.ripe.net when using long flags.
* Updated the list of new gTLDs.
* Added a new ASN allocation.
* Added new recovered IPv4 allocations.
* Updated make_version_h.pl to support Debian binNMUs. (Closes: #761318)
-- Marco d'Itri <[email protected]> Sat, 13 Sep 2014 05:05:16 +0200
whois (5.1.5) unstable; urgency=medium
* Updated the list of new gTLDs.
* Added some disclaimer suppression strings for the new gTLDs' servers.
* Updated one or more translations. (Closes: #756231)
-- Marco d'Itri <[email protected]> Sat, 02 Aug 2014 03:41:44 +0200
whois (5.1.4) unstable; urgency=medium
* Added the charset for whois.lacnic.net.
* Updated the list of new gTLDs.
* Updated one or more translations.
-- Marco d'Itri <[email protected]> Mon, 30 Jun 2014 04:22:21 +0200
whois (5.1.3) unstable; urgency=medium
* Use the IANA recovered address space list.
* Updated the list of new gTLDs.
* Support hiding disclaimers until the end of the output.
* Fix a disclaimer hiding string. (Closes: #748363)
-- Marco d'Itri <[email protected]> Mon, 26 May 2014 04:19:41 +0200
whois (5.1.2) unstable; urgency=medium
* Always query whois.nic.$TLD for the "new" gTLDs, because the ICANN
contract requires that it works.
* Added the .aw and .zm TLD servers.
* Updated the .mk, .tc and .vu TLD servers.
* Added more ASN entries for Japan and Korea.
* Fixed some invalid ASN and networks entries which would never be
matched, reported by Henry Stern.
* mkpasswd ported to Solaris/Dyson, patch courtesy of Igor Pashev.
-- Marco d'Itri <[email protected]> Fri, 02 May 2014 04:15:08 +0200
whois (5.1.1) unstable; urgency=medium
* Added the servers for 29 "new" gTLDs.
-- Marco d'Itri <[email protected]> Sat, 11 Jan 2014 00:51:05 +0100
whois (5.1.0) unstable; urgency=low
* Added the .ga, .ml, .pf, .xn--l1acc (.МОН, Mongolia) and
.xn--mgba3a4f16a (.ﺍیﺭﺎﻧ, Iran) TLD servers.
* Added the servers for 54 "new" gTLDs.
* Updated the .bw, .gd, .hn, .sb, .xn--j1amh and .xn--mgberp4a5d4ar
TLD servers.
* Added new RIPE and APNIC ASN allocations.
* Removed the .ck TLD server.
* Updated one or more translations.
* Applied multiple small fixes contributed by Petr Písař of Red Hat.
* Correctly hide the disclaimers for .be and .sx. (Closes: #729366)
* Direct queries for private ASN blocks to RIPE. (Closes: #724661)
-- Marco d'Itri <[email protected]> Thu, 26 Dec 2013 10:05:43 +0100
whois (5.0.26) unstable; urgency=low
* Added the .cf TLD server.
* Updated the .bi TLD server.
* Added a new ASN allocation.
-- Marco d'Itri <[email protected]> Wed, 17 Jul 2013 00:48:12 +0200
whois (5.0.25) unstable; urgency=low
* Added the .ax, .bn, .iq, .pw and .rw TLD servers.
* Updated one or more translations.
-- Marco d'Itri <[email protected]> Fri, 10 May 2013 05:13:47 +0200
whois (5.0.24) unstable; urgency=low
* Merged documentation fixes and the whois.conf(5) man page, courtesy of
Petr Písař of Red Hat.
* Added a new ASN allocation.
* Updated one or more translations. (Closes: #705163)
-- Marco d'Itri <[email protected]> Thu, 18 Apr 2013 03:36:17 +0200
whois (5.0.23) unstable; urgency=medium
* whois.nic.or.kr switched from EUC-KR to UTF-8. (LP#1132526)
-- Marco d'Itri <[email protected]> Mon, 08 Apr 2013 06:14:14 +0200
whois (5.0.22) unstable; urgency=low
* Fixed cross-compiling, this time for real. (See #695442.)
-- Marco d'Itri <[email protected]> Sun, 31 Mar 2013 22:17:29 +0200
whois (5.0.21) unstable; urgency=low
* Fixed parsing of 6to4 addresses: the last two bytes of the IPv4 address
in 6to4 addresses were not parsed correctly since version 5.0.19.
(Closes: #699928)
* Added the .xn--j1amh (.укр, Ukraine) TLD server.
* Updated the .bi, .se and .vn TLD servers. (Closes: #697753)
* Removed whois.pandi.or.id from the list of servers which support the
RIPE extensions, since it does not anymore and queries are broken.
(Closes: #704115)
* Updated some disclaimer suppression strings.
* Respect DEB_HOST_GNU_TYPE when selecting CC for cross-compiling.
(Closes: #695442)
-- Marco d'Itri <[email protected]> Sun, 31 Mar 2013 19:46:02 +0200
whois (5.0.20) unstable; urgency=low
* Updated the .by, .ng, .om, .sm, .tn, .ug and .vn TLD servers.
(Closes: #689486)
* Added the .bw, .td, .xn--mgb9awbf (عمان., Oman), .xn--mgberp4a5d4ar
(.السعودية, Saudi Arabia) and .xn--mgbx4cd0ab (ﻢﻠﻴﺴﻳﺍ., Malaysia)
TLD servers.
* Removed the .kp, .mc, .rw and .xn--mgba3a4f16a (ایران., Iran) TLD servers.
-- Marco d'Itri <[email protected]> Sun, 07 Oct 2012 01:25:05 +0200
whois (5.0.19) unstable; urgency=low
* Added the .post TLD server.
* Updated the .co.za SLD servers. (Closes: #687094)
* Added the .alt.za, .net.za and .web.za SLD servers.
* whois.ua changed (?) the encoding to utf-8. (Closes: #686715)
* Fixed the parsing of 6to4 addresses like whois 2002:xxxx::. (LP#967311)
* Modified the package version check in debian/rules to help Ubuntu
maintainers. (Closes: #684526)
-- Marco d'Itri <[email protected]> Mon, 17 Sep 2012 21:41:29 +0200
whois (5.0.18) unstable; urgency=low
* Updated the .ae and .xn--mgbaam7a8h (.امارات, United Arabs Emirates)
TLDs.
* Updated the server charset table for .fr and .it.
-- Marco d'Itri <[email protected]> Sun, 22 Jul 2012 20:35:18 +0200
whois (5.0.17) unstable; urgency=medium
* Updated the .bi, .fo, .gr and .gt TLD servers.
* Changed the version check in debian/rules to support Ubuntu backports.
(Closes: #671097)
* Removed support for recursion of .org queries, it has been a thick
registry since 2005. (Closes: #678734)
-- Marco d'Itri <[email protected]> Mon, 25 Jun 2012 03:34:36 +0200
whois (5.0.16) unstable; urgency=medium
* Added the .xn--80ao21a (.ҚАЗ, Kazakhstan) TLD server.
* Updated the .ec and .ee TLD servers.
* Removed the .xn--mgbc0a9azcg (.المغرب, Morocco) and .xn--mgberp4a5d4ar
(.السعودية, Saudi Arabia) TLD servers.
* Added a new ASN allocation.
* Updated one or more translations.
-- Marco d'Itri <[email protected]> Mon, 30 Apr 2012 05:44:07 +0200
whois (5.0.15) unstable; urgency=medium
* Added the .xn--mgba3a4f16a (ایران., Iran) TLD server.
* Updated the .pe TLD server, this time for real. (Closes: #653105)
* Updated one or more translations. (Closes: #654175)
-- Marco d'Itri <[email protected]> Mon, 05 Mar 2012 22:56:19 +0100
whois (5.0.14) unstable; urgency=medium
* Added the .sx TLD server.
* Updated the .pe TLD server. (Closes: #653105)
-- Marco d'Itri <[email protected]> Fri, 23 Dec 2011 23:55:47 +0100
whois (5.0.13) unstable; urgency=medium
* Updated the .hr TLD server. (Closes: #646572)
* Improved the package description, thanks to debian-l10n-english@.
(Closes: #650111)
* Updated the FSF address in licenses.
-- Marco d'Itri <[email protected]> Sun, 27 Nov 2011 21:19:28 +0100
whois (5.0.12) unstable; urgency=low
* Recursion disabled when the query string contains spaces, because
probably the query format will not be compatible with the referral
server (e.g. whois to rwhois or ARIN to RIPE).
* Add the "+" flag by default to queries to whois.arin.net if the
argument looks like an IP address. Also add the "a" and "n" flags.
No thanks to ARIN for breaking every whois client.
* Added the .cv, .lk, .mq, .sy, .so, .biz.ua, .co.ua, .pp.ua, .qa,
.xn--3e0b707e (.한국, Korea), .xn--45brj9c (.ভারত, India, Bengali),
.xn--90a3ac (.СРБ, Serbia), .xn--clchc0ea0b2g2a9gcd (.சிங்கப்பூர்,
Singapore, Tamil), .xn--fpcrj9c3d (.భారత్, India, Telugu), .xn--fzc2c9e2c
(.ලංකා, Sri Lanka, Sinhala), .xn--gecrj9c (.ભારત, India, Gujarati),
.xn--h2brj9c (.भारत, India, Hindi), .xn--lgbbat1ad8j (.الجزائر, Algeria),
.xn--mgbayh7gpa (.الاردن, Jordan), .xn--mgbbh1a71e (.بھارت, India, Urdu),
.xn--mgbc0a9azcg (.المغرب, Morocco), .xn--ogbpf8fl (.سورية, Syria),
.xn--s9brj9c (.ਭਾਰਤ, India, Punjabi), .xn--xkc2al3hye2a (.இலங்கை, Sri
Lanka, Tamil), .xn--wgbl6a (.قطر, Qatar), .xn--xkc2dl3a5ee0h
(.இந்தியா, India, Tamil), .xn--yfro4i67o (.新加坡, Singapore, Chinese) and
.xxx TLD servers. (Closes: #642424),
* Added the .priv.at pseudo-SLD server.
* Updated the .co, .gf, .gp, .kr, .li, .rs, .ru, .su, .sv, .ua and
.xn--p1ai TLD servers. (Closes: #590425, #634830, #627478)
* Added a new ASN allocation.
* Fixed a typo and -t syntax in whois(1). (Closes: #614973, #632588)
* Made whois return an error in some cases, code contributed by
David Souther.
* Split HAVE_LINUX_CRYPT_GENSALT from HAVE_XCRYPT to support SuSE,
which has it builtin in the libc. Added untested support for Solaris'
crypt_gensalt(3). This and the following changes have been contributed
by Ludwig Nussel of SuSE.
* mkpasswd: stop rejecting non-ASCII characters.
* mkpasswd: added support for the 2y algorithm, which fixes CVE-2011-2483.
* mkpasswd: raised the number of rounds for 2a/2y from 4 to 5, which is
the current default.
* mkpasswd: removed support for 2 and {SHA}, which actually are not
supported by FreeBSD and libxcrypt.
-- Marco d'Itri <[email protected]> Mon, 10 Oct 2011 02:04:32 +0200
whois (5.0.11) unstable; urgency=medium
* Added the remaining IPv4 allocations.
* Added new ASN allocations.
* Updated the .co and .gm TLD servers.
-- Marco d'Itri <[email protected]> Sun, 23 Jan 2011 18:08:55 +0100
whois (5.0.10) unstable; urgency=medium
* Added new IPv4 allocations.
-- Marco d'Itri <[email protected]> Tue, 30 Nov 2010 23:51:59 +0100
whois (5.0.9) unstable; urgency=low
* Added new IPv4 allocations.
-- Marco d'Itri <[email protected]> Sun, 12 Nov 2010 22:24:42 +0100
whois (5.0.8) unstable; urgency=medium
* Added the .xn--fzc2c9e2c (.ලංකා, Sri Lanka, Sinhala), .xn--mgbayh7gpa
(.الاردن, Jordan) and .xn--pgbs0dh (.تونس, Tunisia) domains.
* Added the .xn--o3cw4h (.ไทย, Thailand) and .xn--ygbi2ammx (.فلسطين,
Palestinian Territory) TLD servers.
* Updated the .bd and .ps TLD servers.
* Removed the .lk TLD server.
-- Marco d'Itri <[email protected]> Wed, 06 Oct 2010 17:57:40 +0200
whois (5.0.7) unstable; urgency=medium
* Added new IPv4 allocations.
* Added the .xn--j6w193g (.香港, Hong Kong), .xn--kprw13d (.台湾, Taiwan)
and .xn--kpry57d (.台灣, Taiwan) TLD servers.
* Updated the .bd, .bo, .cm, .co, .cu, .dz, .gr, .hk, .lb, .ni, .rw, .tw
and .tz TLD servers.
-- Marco d'Itri <[email protected]> Mon, 09 Aug 2010 00:58:21 +0200
whois (5.0.6) unstable; urgency=medium
* Added new IPv4 allocations.
* Added the .priv.at, .xn--fiqs8s (.中国, China), .xn--fiqz9s
(.中國, China) and .xn--wgbh1c (.مصر, Egypt) TLD servers.
* Do not use the "AS" prefix for ASN queries to whois.arin.net.
(Closes: #583798)
-- Marco d'Itri <[email protected]> Sun, 11 Jul 2010 16:49:19 +0200
whois (5.0.5) unstable; urgency=medium
* Added the .xn--p1ai (.рф, Russian Federation) TLD server.
(Closes: #581611)
* Updated the .ls TLD server. (Closes: #582077)
-- Marco d'Itri <[email protected]> Sun, 23 May 2010 03:17:45 +0200
whois (5.0.4) unstable; urgency=high
* Added new IPv4 allocations.
* Stop using inet_pton to parse IP addresses because it does not work
when a netmask length is specified. (Closes: #580633)
-- Marco d'Itri <[email protected]> Tue, 11 May 2010 22:33:37 +0200
whois (5.0.3) unstable; urgency=medium
* Added the .dj, .gl, .xn--mgbaam7a8h (.امارات, United Arabs Emirates),
and .xn--mgberp4a5d4ar (.السعودية, Saudi Arabia) TLD servers.
* Explicitly ignore Ubuntu patchlevels in the debian/rules version check
to help the Ubuntu developers who keep breaking their package every time
they patch it.
-- Marco d'Itri <[email protected]> Thu, 06 May 2010 23:51:11 +0200
whois (5.0.2) unstable; urgency=medium
* Added new IPv4 allocations.
* Updated one or more translations. (Closes: #572068)
* Updated the .gt TLD server. (Closes: #576521)
* Use inet_pton (if available) to parse IP addresses. (Closes: #573006)
-- Marco d'Itri <[email protected]> Sun, 11 Apr 2010 04:17:33 +0200
whois (5.0.1) unstable; urgency=medium
* Added new IPv4 allocations.
* Removed the .dj TLD server.
* Added support to mkpasswd for a "-5" convenience command line parameter.
* Updated one or more translations. (Closes: #562706)
* Removed the broken links from the README. (Closes: #566950)
-- Marco d'Itri <[email protected]> Thu, 28 Jan 2010 00:55:22 +0100
whois (5.0.0) unstable; urgency=low
* Added optional support for automatically transcoding the output of
servers. (Closes: #363366, #402356)
* Automatically add --show-handles to queries for .dk domains.
* Normalize the querystring and convert it to punycode even if a server
is specified on the command line.
* Updated the .id, .is, .my, .sb and .tj TLD servers.
* Removed the .mm, .pw, .sr and .tp TLD servers.
* Cleaned up the horrible strings manipulation code. (Closes: #131924)
-- Marco d'Itri <[email protected]> Sun, 20 Dec 2009 03:01:40 +0100
whois (4.7.37) unstable; urgency=medium
* Added new ASN allocations.
* Added new IPv4 allocations.
* Fixed the disclaimer suppression data for .biz. (Closes: #551299)
* Added Chinese translation contributed by Feng Liu.
* Added the .cm and .kn TLD servers.
* Updated the .bi, .ge, .gf, .ki, .ls, .np and .tr TLD servers.
* Removed the .mq TLD server.
-- Marco d'Itri <[email protected]> Mon, 07 Dec 2009 22:47:26 +0100
whois (4.7.36) unstable; urgency=medium
* Fixed the whois server for 182.0.0.0/7 added in 4.7.35.
* Fixed the whois servers for some ERX legacy allocations.
-- Marco d'Itri <[email protected]> Wed, 12 Aug 2009 22:01:25 +0200
whois (4.7.35) unstable; urgency=medium
* Added new IPv4 allocations.
* Updated the .ae, .jobs, .ms, .ph and .tv TLD servers. (Closes: #539567)
* Added the .ls, .mg, .mk, .tz and .uy TLD servers.
* Removed the .td TLD server.
* mkpasswd: generate random-length hashes when supported.
* mkpasswd: use ngettext to support translation of plural forms.
(Patch courtesy of Petr Pisar.)
* Updated some translations.
-- Marco d'Itri <[email protected]> Wed, 12 Aug 2009 15:31:20 +0200
whois (4.7.34) unstable; urgency=medium
* Added new IPv4 allocations.
* Fixed the disclaimer suppression data for .mobi. (Closes: #526143)
* Updated the French translation. (Closes: #527605)
* Updated the .bd TLD server.
-- Marco d'Itri <[email protected]> Wed, 17 Jun 2009 11:59:51 +0200
whois (4.7.33) unstable; urgency=medium
* mkpasswd: use /dev/urandom to generate the salt. If it is not present,
initialize srand(3) with gettimeofday(2) instead of time(2) to have a
larger randomness space. (Closes: #523387)
* mkpasswd: added preliminary support for variable length salts, patch
courtesy of Nicolas François.
* Updated the .co.za SLD server. (Closes: #521579)
-- Marco d'Itri <[email protected]> Sun, 12 Apr 2009 05:55:21 +0200
whois (4.7.32) unstable; urgency=medium
* Added new ASN allocations.
* Updated the .tel, .gg and .je TLD servers.
-- Marco d'Itri <[email protected]> Mon, 16 Mar 2009 18:08:04 +0100
whois (4.7.31) unstable; urgency=low
* Implemented a 10 seconds timeout on connect(2) to allow querying
servers with broken IPv6 connectivity. (Closes: #408096)
* Added support for automatically determining the server for in-addr.arpa
domains.
* Added new IPv4 allocations.
* Fixed a typo in de.po. (Closes: #514619)
-- Marco d'Itri <[email protected]> Sun, 01 Mar 2009 19:39:42 +0100
whois (4.7.30) unstable; urgency=high
* Updated the .gi, .lc and .mn TLD servers.
-- Marco d'Itri <[email protected]> Tue, 16 Dec 2008 18:49:28 +0100
whois (4.7.29) unstable; urgency=medium
* Fixed the short option -S which I broke in 4.7.25.
* Added support for ASN32 in the ASPLAIN notation.
* Do not disable the timeout after the connection to the server, because
it can still hang forever.
* Added the .gy, .hn, .ng and .sl TLD servers.
* Updated the .tel, .cr, .dz, .ht, .im, .jo, .ly, .mt, .mu, .pr, .rs, .sn,
.com.uy, .vc and .vn TLD servers.
* Added support for -kenic NIC handles.
* Added new IPv4 allocations.
* Little portability fixes.
* Added Finnish translation contributed by Sami Kerola.
-- Marco d'Itri <[email protected]> Tue, 09 Dec 2008 02:08:35 +0100
whois (4.7.28) unstable; urgency=medium
* Updated the .aero TLD server.
* Added a new ASN allocation.
* Search PGPKEY-* objects in the RIPE database.
-- Marco d'Itri <[email protected]> Wed, 10 Sep 2008 18:49:37 +0200
whois (4.7.27) unstable; urgency=medium
* Updated the .md and .me TLD servers.
* Added a new ASN allocation.
* Added a new IPv4 allocation.
* Updated the Polish and Czech translations.
-- Marco d'Itri <[email protected]> Thu, 17 Jul 2008 00:54:55 +0200
whois (4.7.26) unstable; urgency=medium
* Added support for passing command line options in the environment
variables WHOIS_OPTIONS and MKPASSWD_OPTIONS. (Closes: #324858)
* Updated the French translation. (Closes: #474307)
-- Marco d'Itri <[email protected]> Sat, 05 Apr 2008 04:53:26 +0200
whois (4.7.25) unstable; urgency=low
* mkpasswd: added support for the SHA-256 and SHA-512 methods from
glibc 2.7.
* mkpasswd: added support for FreeBSD-style Blowfish and NT-Hash methods.
* mkpasswd: added support for variable-rounds methods (OpenBSD-style
Blowfish and SHA-256/SHA-512).
* mkpasswd: renamed -H/--hash to -m/--method.
* mkpasswd: finished support for libxcrypt (not enabled by default).
* Added NONE entries for the rest of .uk SLD. (Closes: #471963)
* Added the .bd, .gh, .lc, .sc, .ma, .me, .om and .rs TLD servers.
* Updated the .aero, .bb and .bz TLD servers. (Closes: #448683)
* Added another RIPE ERX ASN block. (Closes: #452328)
* Added a new ASN allocation.
* Added Basque and Czech translations.
-- Marco d'Itri <[email protected]> Sun, 23 Mar 2008 19:18:34 +0100
whois (4.7.24) unstable; urgency=medium
* Added new ASN allocations.
* Added new IPv4 allocations.
* Added the .asia, .kp and .mq TLD servers. (Closes: #445747)
-- Marco d'Itri <[email protected]> Tue, 30 Oct 2007 11:06:25 +0100
whois (4.7.23) unstable; urgency=medium
* Fixed myinet_aton to not reject CIDR networks.
* Added support for ASN32.
* Added the za.net and za.org pseudo-TLD servers.
-- Marco d'Itri <[email protected]> Thu, 13 Sep 2007 03:28:21 +0200
whois (4.7.22) unstable; urgency=medium
* Added new IPv4 allocations.
* Added new ASN allocations.
* Updated the Polish translation.
* Updated the .jobs, .ai and .tn TLD and za.net servers.
* Added the za.net server. (Closes: #423549)
* Stop misparsing <as-set>:<hierarchical-name> as an IPv6 address.
* Stop mangling IDN queries with in-query flags. (Closes: #422895)