forked from google/libphonenumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release_notes.txt
2724 lines (2457 loc) · 122 KB
/
release_notes.txt
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
Aug 24, 2021: v8.12.31
Metadata changes:
- Updated phone metadata for region code(s): CO, EE, GB, PH, US
- New geocoding data for country calling code(s): 1771 (en)
- Updated geocoding data for country calling code(s): 57 (en), 225 (en)
- Updated carrier data for country calling code(s):
63 (en), 252 (en), 372 (en), 389 (en)
- Updated / refreshed time zone meta data.
Aug 17, 2021: v8.12.30
Metadata changes:
- Updated phone metadata for region code(s): 800, AM, GL, KW, SG, SO, SY
- Updated carrier data for country calling code(s):
55 (en), 65 (en), 252 (en), 263 (en), 963 (en)
- Updated / refreshed time zone meta data.
Aug 06, 2021: v8.12.29
Code changes:
- Updated As-You-Type-Formatter to exclude patterns where some digits would be dropped in the output. This also fixes the bug where an extra country code is added in some cases to the user's output. b/183053929
Metadata changes:
- Updated phone metadata for region code(s): BE, GE, IR, MO, MX, QA, SN
- Updated geocoding data for country calling code(s): 52 (en)
- Updated carrier data for country calling code(s):
32 (en), 221 (en), 995 (en)
- Updated / refreshed time zone meta data.
Jul 20, 2021: v8.12.28
Metadata changes:
- Updated phone metadata for region code(s):
CO, EH, GF, HK, KZ, MA, MO, MU, MX, NG, OM, PH, RU, SG, TO, UG
- Updated geocoding data for country calling code(s): 52 (en)
- Updated carrier data for country calling code(s):
34 (en), 57 (en), 63 (en), 65 (en), 229 (en), 234 (en), 676 (en),
852 (en, zh), 968 (en)
- Updated / refreshed time zone meta data.
Jul 07, 2021: v8.12.27
Metadata changes:
- Updated phone metadata for region code(s): BW, MG, MW, PL, RO, TO, ZW
- Updated short number metadata for region code(s): BW, HU
- Updated carrier data for country calling code(s):
36 (en), 48 (en), 261 (en), 263 (en), 676 (en)
Jun 23, 2021: v8.12.26
Metadata changes:
- Updated phone metadata for region code(s): DZ, EH, GB, MA, PH, QA
- Updated geocoding data for country calling code(s): 212 (en)
Jun 09, 2021: v8.12.25
Metadata changes:
- Updated phone metadata for region code(s):
BZ, GB, GH, HN, JM, LU, TJ, US, VU
- New geocoding data for country calling code(s): 1448 (en)
- Updated geocoding data for country calling code(s): 678 (en)
- Updated carrier data for country calling code(s):
233 (en), 678 (en), 1876 (en)
- Updated / refreshed time zone meta data.
May 26, 2021: v8.12.24
Code changes:
- Changes formatOutOfCountryCallingNumber to always use preferred intl prefix if present, not just for numbers with a non-unique IDD. This means we will output "8~10" as the prefix if calling formatOutOfCountryCallingNumber instead of "810" for some regions that have this tilde in their prefix [designates that the user should wait before continuing to dial].
Metadata changes:
- Updated phone metadata for region code(s):
883, AX, FI, GE, IR, PA, PG, PH, SG, SL, UZ
- Updated carrier data for country calling code(s):
33 (en), 63 (en), 65 (en), 98 (en, fa), 358 (en), 507 (en), 675 (en),
995 (en)
May 11, 2021: v8.12.23
Metadata changes:
- Updated phone metadata for region code(s): BF, CI, RW, SG, UG, US, UZ
- Updated short number metadata for region code(s): DZ
- New geocoding data for country calling code(s): 1572 (en)
- Updated geocoding data for country calling code(s): 225 (en)
- Updated carrier data for country calling code(s):
65 (en), 225 (en), 226 (en), 250 (en), 256 (en), 998 (en)
- Updated / refreshed time zone meta data.
Apr 29, 2021: v8.12.22
Metadata changes:
- Updated phone metadata for region code(s):
BL, CA, CD, CI, GP, IR, JP, LI, MF, MY, PH, PT, RE
- Updated short number metadata for region code(s): FI, PS
- New geocoding data for country calling code(s): 1368 (en)
- Updated geocoding data for country calling code(s): 49 (de, en), 52 (es)
- Updated carrier data for country calling code(s):
46 (en), 60 (en), 63 (en), 225 (en), 229 (en), 243 (en), 252 (en), 262 (en),
351 (en), 423 (en), 590 (en)
- Updated / refreshed time zone meta data.
Apr 05, 2021: v8.12.21
Metadata changes:
- Updated phone metadata for region code(s):
BL, EH, GB, GF, GP, MA, MF, MQ, PF, PM, SG, SS, WF
- Updated short number metadata for region code(s): DE
- Updated carrier data for country calling code(s):
65 (en), 211 (en), 212 (en)
- Updated / refreshed time zone meta data.
Mar 16, 2021: v8.12.20
Metadata changes:
- Updated phone metadata for region code(s):
AR, CA, CL, CM, EH, IM, JP, LB, MA, MC, MY, SG, US
- New geocoding data for country calling code(s):
961 (en), 1447 (en), 1474 (en), 1840 (en)
- Updated geocoding data for country calling code(s): 1854 (en)
- Updated carrier data for country calling code(s):
56 (en), 60 (en), 65 (en), 84 (en)
- Updated / refreshed time zone meta data.
Mar 01, 2021: v8.12.19
Metadata changes:
- Updated phone metadata for region code(s):
882, AU, BJ, BW, CC, CX, EH, KZ, MA, MQ, MU, NO, RE, SG, SJ, SL, TJ, TT, US,
YT
- New geocoding data for country calling code(s): 1945 (en)
- Updated geocoding data for country calling code(s): 61 (en), 267 (en)
- Updated carrier data for country calling code(s):
7 (en), 41 (en), 65 (en), 221 (en), 229 (en), 230 (en), 232 (en), 262 (en),
592 (en), 596 (en), 882 (en), 992 (en), 1868 (en)
- Updated / refreshed time zone meta data.
Feb 08, 2021: v8.12.18
Metadata changes:
- Updated alternate formatting data for country calling code(s): 676
- Updated phone metadata for region code(s): CI, IR, SG, TO
- Updated geocoding data for country calling code(s): 225 (en)
- Updated carrier data for country calling code(s):
65 (en), 225 (en), 676 (en)
Jan 27, 2021: v8.12.17
Metadata changes:
- Updated phone metadata for region code(s): CI, GR, MO, TR, VU
- Updated geocoding data for country calling code(s): 225 (en)
- Updated carrier data for country calling code(s): 853 (en)
Jan 12, 2021: v8.12.16
Metadata changes:
- Updated phone metadata for region code(s):
870, AL, AR, BA, BW, CO, DE, DM, DO, GB, GI, HK, KW, MK, MO, MY, OM, SG, SL,
TH
- Updated short number metadata for region code(s): AR
- Updated geocoding data for country calling code(s): 44 (en)
- Updated carrier data for country calling code(s):
41 (en), 46 (en), 57 (en), 60 (en), 61 (en), 65 (en), 66 (en), 227 (en),
232 (en), 267 (en), 350 (en), 351 (en), 356 (en), 389 (en), 420 (en),
852 (en, zh), 853 (en)
Dec 15, 2020: v8.12.15
Metadata changes:
- Updated phone metadata for region code(s): GN, KE, MU, SG
- Updated carrier data for country calling code(s):
65 (en), 224 (en), 230 (en), 254 (en)
Dec 02, 2020: v8.12.14
Metadata changes:
- Updated phone metadata for region code(s):
BA, BW, CG, CO, EH, FO, HN, IL, KE, MA, NZ, SN, TJ, UY
- Updated geocoding data for country calling code(s): 57 (en), 504 (en)
- Updated carrier data for country calling code(s):
46 (en), 212 (en), 221 (en), 242 (en), 254 (en), 298 (en), 972 (en),
992 (en)
Nov 12, 2020: v8.12.13
Metadata changes:
- Updated phone metadata for region code(s):
CL, DE, FR, GQ, IL, IR, KG, KW, MU, NG, PW, SN, TZ
- Updated carrier data for country calling code(s):
7 (en), 33 (en), 221 (en), 230 (en), 234 (en), 240 (en), 255 (en), 680 (en),
886 (en), 972 (en)
Oct 29, 2020: v8.12.12
Metadata changes:
- Updated phone metadata for region code(s):
AG, AI, AS, BB, BM, BS, CA, CI, DM, DO, GB, GD, GG, GU, IR, JE, JM, JP, KE,
KN, KY, LC, MP, MS, NP, PK, PR, SA, SX, TC, TT, US, VC, VG, VI, VN, WS
- Updated short number metadata for region code(s): JP
- Updated geocoding data for country calling code(s): 81 (en, ja)
- New carrier data for country calling code(s): 81 (en)
- Updated carrier data for country calling code(s):
44 (en), 98 (en, fa), 225 (en), 685 (en), 966 (en)
- Updated / refreshed time zone meta data.
Oct 07, 2020: v8.12.11
Metadata changes:
- Updated phone metadata for region code(s): CM, HK, ID, LK, PA, PY, TJ, UZ
- Updated carrier data for country calling code(s):
94 (en), 852 (en, zh), 992 (en), 998 (en)
- Updated / refreshed time zone meta data.
Sep 20, 2020: v8.12.10
Metadata changes:
- Updated phone metadata for region code(s):
EH, IL, JO, MA, NG, PA, PG, PY, UY
- Updated short number metadata for region code(s): SA
- Updated geocoding data for country calling code(s): 598 (en)
- Updated carrier data for country calling code(s):
212 (en), 234 (en), 507 (en), 595 (en), 675 (en), 972 (en)
Aug 30, 2020: v8.12.9
Metadata changes:
- Updated phone metadata for region code(s): CO, GB, IL, SG
- Updated short number metadata for region code(s): SA
- Updated geocoding data for country calling code(s): 57 (en)
- Updated carrier data for country calling code(s): 65 (en), 972 (en)
Aug 12, 2020: v8.12.8
Metadata changes:
- Updated phone metadata for region code(s): HU, NE, PL, SG, SI, TR
- Updated short number metadata for region code(s): ID, NE
- Updated carrier data for country calling code(s):
65 (en), 226 (en), 227 (en)
Jul 20, 2020: v8.12.7
Metadata changes:
- Updated phone metadata for region code(s): ET, HN, KN, NA, SG, US,
HK, IR, LI, MU, TR, VN
- New geocoding data for country calling code(s): 1326 (en), 1839 (en)
- Updated geocoding data for country calling code(s): 380 (en), 504 (en)
- Updated carrier data for country calling code(s):
65 (en), 234 (en), 1869 (en), 98 (en, fa), 243 (en), 423 (en), 852 (en, zh)
- Updated / refreshed time zone meta data.
- Note: You will find commit with same release tag on Jul 02, 2020.
As that release blocked immediately, we started over new release with same tag.
Code changes:
- [Java only] Added metadata/ folder to only GitHub devleopment version; this
will not be part of the release artifacts untill it is complete and ready
for usage. More details in its README file.
Jun 17, 2020: v8.12.6
Code changes:
- [Java only] Use protobuf API v2 for PhoneMetadata only, mark old methods as deprecated.
Metadata changes:
- Updated phone metadata for region code(s): HN, KE, MY, ZA
- Updated carrier data for country calling code(s): 48 (en), 60 (en), 65 (en)
Jun 03, 2020: v8.12.5
Metadata changes:
- Updated phone metadata for region code(s): ES, GB, GG, JE, KR, RE, TJ, UZ
- Updated geocoding data for country calling code(s): 81 (en)
- Updated carrier data for country calling code(s):
34 (en), 82 (en, ko), 262 (en), 992 (en), 998 (en)
May 19, 2020: v8.12.4
Metadata changes:
- Updated phone metadata for region code(s):
AU, BR, CC, CX, HK, MM, PH, PL, TN
- Updated short number metadata for region code(s): FI, GB, TH
- Updated geocoding data for country calling code(s): 1242 (en), 1867 (en)
- Updated carrier data for country calling code(s):
61 (en), 63 (en), 95 (en), 216 (en), 852 (en, zh)
May 06, 2020: v8.12.3
Metadata changes:
- Updated phone metadata for region code(s):
AR, AU, CC, CX, GB, GG, GR, JE, MY, SG, SL, SR, TH
- Updated short number metadata for region code(s): AR, AU
- Updated geocoding data for country calling code(s): 61 (en), 66 (en, th)
- Updated carrier data for country calling code(s):
60 (en), 61 (en), 65 (en), 232 (en), 597 (en)
- Updated / refreshed time zone meta data.
Apr 22, 2020: v8.12.2
Metadata changes:
- Updated phone metadata for region code(s):
AL, AR, AU, CC, CX, ET, GE, GH, JM, JP, LA, MM, NZ, QA, SG, ZA
- Updated short number metadata for region code(s): AR
- New geocoding data for country calling code(s): 995 (en)
- Updated geocoding data for country calling code(s): 54 (en), 64 (en)
- Updated carrier data for country calling code(s):
64 (en), 65 (en), 95 (en), 995 (en), 1876 (en)
- Updated / refreshed time zone meta data.
Mar 30, 2020: v8.12.1
Metadata changes:
- Updated phone metadata for region code(s):
AG, AI, AS, BB, BD, BM, BS, BW, CA, CL, DM, DO, GB, GD, GU, IL, IR, JM, JO,
KN, KY, KZ, LC, MA, MC, MN, MP, MS, NG, NZ, PE, PH, PR, PW, SG, SS, SX, TC,
TT, US, VC, VG, VI, VN
- New short number metadata for region code(s): SS
- New geocoding data for country calling code(s): 63 (en), 1340 (en)
- Updated geocoding data for country calling code(s):
7 (en, ru), 44 (en), 56 (en, es), 212 (en, fr), 234 (en), 880 (en),
1242 (en), 1345 (en), 1659 (en)
- New carrier data for country calling code(s):
1340 (en), 1659 (en), 1664 (en), 1670 (en)
- Updated carrier data for country calling code(s):
7 (en, ru), 51 (en), 56 (en), 63 (en), 84 (en), 98 (en, fa), 211 (en),
234 (en), 267 (en), 972 (en), 976 (en), 1246 (en), 1264 (en), 1268 (en),
1284 (en), 1345 (en), 1441 (en), 1649 (en), 1684 (en), 1758 (en), 1767 (en),
1784 (en), 1868 (en), 1869 (en), 1876 (en)
- Updated / refreshed time zone meta data.
Mar 18, 2020: v8.12.0
Code changes:
- [JS only] Updates some closure annotations in `phonenumberutil.js` to indicate non-nullable parameters
Metadata changes:
- Updated phone metadata for region code(s):
800, 808, 881, 882, 979, AR, AZ, CL, CN, HK, HN, JO, JP, KE, KP, LA, LR, MK,
ML, MN, MV, MY, MZ, NP, NZ, PS, SV, SY, TT, TZ, UZ, YE
- Updated short number metadata for region code(s): AC, JO, MK, MN, NP, SV, TZ
- New geocoding data for country calling code(s):
850 (en), 963 (en), 967 (en), 970 (en)
- Updated geocoding data for country calling code(s):
60 (en), 389 (en), 504 (en), 962 (en)
- New carrier data for country calling code(s):
247 (en), 500 (en), 504 (en), 850 (en), 881 (en), 882 (en)
- Updated carrier data for country calling code(s):
56 (en), 60 (en), 64 (en), 86 (en, zh), 223 (en), 231 (en), 258 (en),
267 (en), 389 (en), 503 (en), 852 (en, zh, zh_Hant), 856 (en), 960 (en),
962 (en), 963 (en), 964 (en), 970 (en), 992 (en), 994 (en), 998 (en),
1868 (en)
- Updated / refreshed time zone meta data.
Mar 02, 2020: v8.11.5
Metadata changes:
- Updated alternate formatting data for country calling code(s): 595
- Updated phone metadata for region code(s):
AD, BE, BQ, BW, CA, CI, CM, CR, EC, EE, EG, FM, FO, GL, GN, IL, KI, LK, LT,
ME, MO, MT, MW, NE, NF, NR, OM, PA, PF, PG, PK, PY, RO, RW, SC, SD, SG, SK,
SL, SO, TL, TM, TO, TV, UG, VE, VU, WS, ZM
- Updated short number metadata for region code(s):
GN, KI, LK, LT, OM, PK, RO, RW, SH, TM, TR, WS
- New geocoding data for country calling code(s):
92 (en), 236 (en), 593 (en), 595 (en), 598 (en), 670 (en), 672 (en),
678 (en), 685 (en), 689 (en), 690 (en), 993 (en), 1367 (en)
- Updated geocoding data for country calling code(s):
43 (en), 58 (en, es), 94 (en), 221 (en), 224 (en), 225 (en), 233 (en),
252 (en), 264 (en), 290 (en, fr), 352 (de, en), 370 (en), 374 (en, hy, ru),
421 (en), 599 (en), 686 (en)
- New carrier data for country calling code(s):
246 (en), 266 (en), 290 (en), 291 (en), 377 (en), 378 (en), 672 (en),
676 (en), 681 (en), 683 (en), 687 (en), 690 (en), 691 (en), 692 (en)
- Updated carrier data for country calling code(s):
40 (en), 43 (en), 48 (en), 65 (en), 92 (en), 222 (en), 225 (en), 227 (en),
229 (en), 230 (en), 232 (en), 233 (en), 236 (en), 256 (en), 265 (en),
267 (en), 268 (en), 298 (en), 370 (en), 372 (en), 376 (en), 381 (en),
383 (en), 421 (en), 502 (en), 506 (en), 507 (en), 592 (en), 593 (en),
598 (en), 599 (en), 670 (en), 674 (en), 675 (en), 678 (en), 685 (en),
686 (en), 853 (en), 968 (en), 972 (en), 993 (en)
- Updated / refreshed time zone meta data.
Feb 12, 2020: v8.11.4
Metadata changes:
- Updated phone metadata for region code(s):
AZ, BJ, CL, ET, GB, MA, MM, PW, RE, SG
- Updated geocoding data for country calling code(s): 680 (en)
- Updated carrier data for country calling code(s):
56 (en), 95 (en), 229 (en), 262 (en), 680 (en), 994 (en)
Jan 28, 2020: v8.11.3
Metadata changes:
- Updated phone metadata for region code(s): GB, GG, JE, MM, MU, US
- New geocoding data for country calling code(s): 1659 (en)
- Updated carrier data for country calling code(s): 95 (en)
- Updated / refreshed time zone meta data.
Jan 14, 2020: v8.11.2
Metadata changes:
- Updated phone metadata for region code(s):
BF, CA, EH, GM, KR, MA, ML, NG, NZ, SE, SG, TJ, TR, TT
- New geocoding data for country calling code(s): 1672 (en)
- Updated geocoding data for country calling code(s): 220 (en)
- Updated carrier data for country calling code(s):
65 (en), 212 (en), 220 (en), 226 (en), 234 (en), 992 (en), 1868 (en)
- Updated / refreshed time zone meta data.
Dec 10, 2019: v8.11.1
Metadata changes:
- Updated phone metadata for region code(s):
AR, DO, DZ, FR, GA, GE, GI, IL, KW, LB, MA, RO, SG, ZA
- Updated short number metadata for region code(s): FR
- Updated geocoding data for country calling code(s): 33 (en, fr), 54 (en)
- Updated carrier data for country calling code(s):
27 (en), 33 (en), 36 (en), 65 (en), 213 (en), 961 (en), 972 (en), 995 (en)
Nov 26, 2019: v8.11.0
Metadata changes:
- Updated alternate formatting data for country calling code(s): 91
- Updated phone metadata for region code(s):
AF, AL, AR, AX, AZ, BA, BE, BH, BI, BL, BN, CK, CO, CU, CV, DK, EH, ET, FI,
FR, GA, GB, GF, GH, GI, GP, GR, HR, IE, IN, IR, IS, JO, KG, KM, KR, KW, LI,
LY, MA, MD, MF, MM, MQ, NO, PT, QA, RE, SG, TW, YT, ZM, ZW
- Updated short number metadata for region code(s):
AF, AW, BE, CN, CO, DE, ET, GR, KR, MD, NO, PT, SG, TW
- New geocoding data for country calling code(s):
386 (en), 673 (en), 679 (en), 682 (en), 971 (en)
- Updated geocoding data for country calling code(s):
34 (en, es), 46 (en), 47 (en), 91 (en), 216 (en), 218 (en), 241 (en),
251 (en), 353 (en), 354 (en), 886 (en, zh), 996 (en)
- New carrier data for country calling code(s):
46 (en), 82 (en, ko), 218 (en), 501 (en), 682 (en)
- Updated carrier data for country calling code(s):
30 (en), 31 (en), 32 (en), 34 (en), 39 (en), 41 (en), 44 (en), 45 (en),
47 (en), 49 (en), 53 (en), 55 (en), 57 (en), 65 (en), 66 (en), 91 (en),
95 (en), 98 (en, fa), 212 (en), 226 (en), 233 (en), 235 (en), 237 (en),
241 (en), 242 (en), 243 (en), 262 (en), 297 (en), 350 (en), 351 (en),
353 (en), 354 (en), 358 (en), 359 (en), 373 (en), 385 (en), 386 (en),
420 (en), 423 (en), 508 (en), 590 (en), 673 (en), 855 (en), 886 (en),
966 (en), 973 (en), 974 (en), 994 (en), 996 (en)
- Updated / refreshed time zone meta data.
Nov 13, 2019: v8.10.23
Metadata changes:
- Updated phone metadata for region code(s): AL, AR, XK
- Updated carrier data for country calling code(s): 383 (en)
Oct 29, 2019: v8.10.22
Metadata changes:
- Updated phone metadata for region code(s): DM, DO, MM, OM, VN, ZM
- Updated short number metadata for region code(s): GR
- Updated carrier data for country calling code(s):
95 (en), 260 (en), 968 (en)
Oct 16, 2019: v8.10.21
Metadata changes:
- Updated phone metadata for region code(s):
BF, CI, HN, KW, MM, MY, SG, SI, TJ, ZW
- Updated geocoding data for country calling code(s): 52 (en), 95 (en)
- Updated carrier data for country calling code(s):
60 (en), 65 (en), 225 (en), 226 (en), 386 (en), 992 (en)
Oct 02, 2019: v8.10.20
Metadata changes:
- Updated phone metadata for region code(s):
AU, BO, CC, CX, DM, GM, HN, PH, US
- New geocoding data for country calling code(s): 1341 (en)
- Updated carrier data for country calling code(s): 220 (en)
- Updated / refreshed time zone meta data.
Sep 17, 2019: v8.10.19
Metadata changes:
- Updated phone metadata for region code(s): EH, GE, GR, HU, IL, IR, MA, US
- Updated short number metadata for region code(s): ET
- New geocoding data for country calling code(s): 1689 (en)
- Updated carrier data for country calling code(s): 31 (en), 995 (en)
- Updated / refreshed time zone meta data.
Sep 03, 2019: v8.10.18
Metadata changes:
- Updated phone metadata for region code(s): BR, HU, KG, KR, MV, SG, VN
- Updated short number metadata for region code(s): BR, IL
- Updated carrier data for country calling code(s): 65 (en), 996 (en)
Aug 15, 2019: v8.10.17
Metadata changes:
- MX numbering authority has changed dialling patterns to be more
uniform i.e additional domestic (01 and 044) and international
mobile tokens (1) are abolished now. The parsing and formatting
changes were done as part of this release. We recommend to
follow the steps mentioned in our announcement for same:
https://groups.google.com/forum/#!topic/libphonenumber-discuss/pecTIo_HpVE
- Updated phone metadata for region code(s): AM, MM, MX
- Updated short number metadata for region code(s): TH
- Updated carrier data for country calling code(s):
86 (en, zh, zh_Hant), 95 (en), 374 (en, ru)
For users who depend on JavaScript port:
- Please patch in PR #2380 to fix AYTF output that otherwise
swallows the entered old mobile token (1) at the last step.
Code changes:
- AsYouTypeFormatter changed to ensure that the output never adds new digits or swallows digits.
- MX mobile token no longer returned by getCountryMobileToken
Aug 01, 2019: v8.10.16
Metadata changes:
- Updated alternate formatting data for country calling code(s): 676
- Updated phone metadata for region code(s):
AU, CC, CL, CX, GB, IL, KW, MK, NE, TJ, TT, TW, VI
- Updated carrier data for country calling code(s):
56 (en), 61 (en), 65 (en), 227 (en), 972 (en), 992 (en), 1868 (en)
Jul 15, 2019: v8.10.15
Metadata changes:
- Updated alternate formatting data for country calling code(s): 676
- Updated phone metadata for region code(s):
AM, BG, EH, IR, IT, MA, MM, MT, SL, TO, UG, VA, VN
- New geocoding data for country calling code(s): 676 (en)
- Updated geocoding data for country calling code(s):
95 (en), 212 (en, fr), 232 (en), 374 (en, hy, ru)
- Updated carrier data for country calling code(s):
95 (en), 212 (en), 232 (en), 256 (en), 356 (en)
Jun 13, 2019: v8.10.14
Metadata changes:
- Updated phone metadata for region code(s):
BF, BJ, BR, IM, KE, KZ, MN, MX, PH, RE, VN
- Updated short number metadata for region code(s): FR
- Updated geocoding data for country calling code(s): 55 (en)
- Updated carrier data for country calling code(s):
7 (en, ru), 44 (en), 63 (en), 226 (en), 229 (en), 254 (en), 262 (en),
976 (en)
May 29, 2019: v8.10.13
Metadata changes:
- Updated phone metadata for region code(s): AU, CC, CI, CX, DE, HK
- Updated carrier data for country calling code(s): 61 (en), 225 (en)
May 10, 2019: v8.10.12
Metadata changes:
- Updated phone metadata for region code(s): CL, HK, MU, NE
- Updated carrier data for country calling code(s): 230 (en)
Apr 30, 2019: v8.10.11
Metadata changes:
- Updated phone metadata for region code(s): CU, EH, MA
- Updated short number metadata for region code(s): CU
- Updated geocoding data for country calling code(s): 53 (en)
Apr 15, 2019: v8.10.10
Metadata changes:
- Updated phone metadata for region code(s):
BW, CL, DE, ET, IN, NG, PF, TW, VN
- Updated short number metadata for region code(s): KI
- Updated geocoding data for country calling code(s):
251 (en), 267 (en), 886 (en, zh, zh_Hant)
- Updated carrier data for country calling code(s): 234 (en), 689 (en)
- Updated / refreshed time zone meta data.
Apr 02, 2019: v8.10.9
Metadata changes:
- Updated alternate formatting data for country calling code(s): 380, 44, 49
- Updated phone metadata for region code(s): AU, BD, CC, CN, CX, EC, ID, PE
- Updated carrier data for country calling code(s): 51 (en), 593 (en)
Mar 19, 2019: v8.10.8
* Code changes
- Making the application of alternate formats when finding phone numbers in
text in strict-grouping and exact-match mode depend on the leading digits
for each rule. This was always assumed but never actually done. This means
that the false positive rate will decrease but also that more valid numbers
are skipped. A subsequent CL will update patterns to increase recall.
Metadata changes:
- Updated alternate formatting data for country calling code(s):
255, 27, 31, 34, 351, 352, 358, 359, 36, 372, 380, 381, 385, 39, 43, 44, 49,
506, 52, 54, 55, 595, 61, 62, 64, 66, 675, 676, 679, 7, 81, 84, 856, 90, 91,
94, 95, 971, 972, 995
- Updated phone metadata for region code(s):
AC, AU, CC, CN, CX, EH, GE, JM, JP, KE, KG, MA, NO, PH, SJ, UA, UZ, ZW
- Updated short number metadata for region code(s): TW
- New carrier data for country calling code(s): 1658 (en)
- Updated carrier data for country calling code(s):
65 (en), 380 (en, uk), 996 (en), 1876 (en)
Mar 06, 2019: v8.10.7
Metadata changes:
- Updated phone metadata for region code(s): BD, BH, HN, MM, PH, ZW
- Updated geocoding data for country calling code(s): 90 (en, tr), 95 (en)
- Updated carrier data for country calling code(s): 63 (en), 64 (en)
Feb 21, 2019: v8.10.6
Metadata changes:
- Updated phone metadata for region code(s):
CN, IR, JM, KE, KR, KZ, LI, VN
- Updated geocoding data for country calling code(s): 86 (en, zh)
- Updated carrier data for country calling code(s):
84 (en), 86 (en, zh, zh_Hant), 423 (en)
- Updated / refreshed time zone meta data.
Feb 06, 2019: v8.10.5
Metadata changes:
- Updated phone metadata for region code(s):
AE, AG, AI, AM, AR, AS, AT, AU, AZ, BA, BB, BE, BG, BM, BO, BR, BS, BT, BW,
BY, CG, CH, CL, CO, DE, DM, DZ, ES, FI, FR, GB, GD, GE, GR, GU, HN, HR, IE,
IL, IN, IT, JM, JO, JP, KG, KN, KP, KR, KY, LC, LI, LK, LT, LU, MA, MC, MD,
MG, MM, MP, MS, MU, MV, MW, MX, MY, NA, NC, NE, NF, NL, NO, NZ, PE, PH, PL,
PY, RO, RU, SA, SB, SC, SE, SG, SI, SK, SM, SN, SO, SR, SX, TC, TJ, TM, TO,
TR, TT, TZ, UG, UY, VC, VG, VI, VN, XK, ZM, ZW
- Updated short number metadata for region code(s): BR, TH
- Updated geocoding data for country calling code(s): 54 (en), 55 (en, pt)
- Updated carrier data for country calling code(s): 55 (en)
- Updated / refreshed time zone meta data.
Jan 24, 2019: v8.10.4
Metadata changes:
- Updated phone metadata for region code(s):
AR, AT, BH, BI, CL, CN, CW, CZ, DE, FI, FM, HK, KR, LA, LU, ML, NC, NE, PA,
SB, TT, ZW
- Updated short number metadata for region code(s): AR, KR
- Updated geocoding data for country calling code(s): 54 (en, es), 686 (en)
- Updated carrier data for country calling code(s):
254 (en), 507 (en), 599 (en), 880 (en)
Jan 08, 2019: v8.10.3
Code changes:
- Better documentation for getLengthOfNationalDestinationCode to emphasise that
not every number has one.
- Removed unused code in the AsYouTypeFormatter: We no longer have numbers in
formatting matching patterns, only \d.
Metadata changes:
- Updated phone metadata for region code(s):
EG, GM, HK, LR, MM, NG, SD, UZ, VN, VU
- Updated geocoding data for country calling code(s): 249 (en)
- Updated carrier data for country calling code(s):
84 (en), 95 (en), 220 (en), 231 (en), 852 (en, zh, zh_Hant), 965 (ar)
- Updated / refreshed time zone meta data.
Dec 06, 2018: v8.10.2
Metadata changes:
- Updated phone metadata for region code(s):
882, AE, AL, AR, BD, BR, CN, ID, IN, JM, LK, MG, MU, MX, OM, SI, UA, ZW
- Updated short number metadata for region code(s): IN, MG, MX, SI
- Updated geocoding data for country calling code(s): 52 (en, es), 261 (en)
- Updated carrier data for country calling code(s):
66 (en), 91 (en), 386 (en), 968 (en)
- Updated / refreshed time zone meta data.
Nov 21, 2018: v8.10.1
Metadata changes:
- Updated phone metadata for region code(s):
AE, AL, AT, AX, BW, BY, CC, CL, CN, CX, DE, FI, FR, GB, GG, HN, IM, IN, IR,
JE, LA, LI, LT, MM, MN, MY, NZ, PK, SE, SK, SM, UZ, VN, ZM, ZW
- Updated short number metadata for region code(s):
AT, AX, BY, CF, CL, DE, ER, FI, FM, FR, GA, IN, IR, LI, LT, MM, MN, MY, NE,
NZ, OM, PK, SE, SM, UZ, ZA, ZM, ZW
- Updated geocoding data for country calling code(s):
33 (en), 43 (de, en), 49 (en), 52 (en), 60 (en), 64 (en), 91 (en), 263 (en),
358 (en, sv), 370 (en)
- Updated carrier data for country calling code(s):
44 (en), 56 (en), 60 (en), 64 (en), 84 (en), 91 (en), 92 (en), 95 (en),
98 (en, fa), 260 (en), 267 (en), 358 (en), 370 (en), 423 (en), 976 (en),
998 (en)
- Updated / refreshed time zone meta data.
Oct 31, 2018: v8.10.0
Code changes:
- AsYouTypeFormatter changed to better choose between rules when dialling
locally; previously we used the international rules when the national prefix
was present since this would exclude the local-only rules. However, there are
some numbers that are not internationally diallable that *do* use the
national prefix, and this logic precluded formatting them correctly.
Metadata changes:
- Updated phone metadata for region code(s):
AU, BB, BD, BO, CC, CO, CR, CU, CX, EC, EG, ER, ET, FO, GB, GE, GG, GH, GQ,
HR, HU, IE, IL, IM, IN, IQ, JE, KE, KG, KH, KI, KP, KZ, LA, LI, LK, LR, LU,
LY, MC, ME, MK, ML, MM, MU, NE, NF, NG, NO, NP, PE, PF, PG, PH, PL, PS, PY,
RS, RU, SA, SD, SE, SI, SJ, SL, SO, SY, TJ, TM, TR, TW, UA, UG, UY, VA, VE,
VN, VU, YE, ZM
- Updated short number metadata for region code(s):
AU, BB, BD, BO, CC, CO, CR, CU, CX, EC, EG, ER, ET, FO, GB, GE, GG, GH, HR,
HU, IE, IL, IM, IQ, JE, KE, KG, KH, KI, KP, KZ, LA, LK, LU, LY, ME, MK, ML,
MU, NE, NF, NG, NO, NP, PE, PF, PG, PH, PL, PS, PY, RS, RU, SA, SD, SI, SJ,
SL, SO, SY, TJ, TR, TW, UA, UG, UY, VE, YE
- Updated geocoding data for country calling code(s):
7 (en, ru), 44 (en), 47 (en), 58 (en, es), 61 (en), 90 (en, tr), 94 (en),
218 (en), 223 (en), 227 (en), 230 (en), 233 (en), 240 (en), 249 (en),
251 (en), 252 (en), 254 (en), 352 (de, en, fr), 380 (en, uk), 382 (en),
675 (en), 880 (en), 886 (en, zh, zh_Hant), 992 (en), 996 (en)
- Updated carrier data for country calling code(s):
7 (en, ru), 44 (en), 51 (en), 57 (en), 61 (en), 63 (en), 90 (en), 223 (en),
230 (en), 232 (en), 233 (en), 234 (en), 240 (en), 252 (en), 254 (en),
256 (en), 260 (en), 352 (en), 385 (en), 386 (en), 389 (en), 506 (en),
593 (en), 595 (en), 886 (en), 963 (en), 972 (en), 992 (en), 995 (en),
996 (en)
- Updated / refreshed time zone meta data.
Oct 16, 2018: v8.9.16
Metadata changes:
- Updated phone metadata for region code(s):
AF, AO, BA, BB, BG, BM, BS, BT, CA, CN, DM, DO, GD, GU, HN, ID, IL, JM, KE,
KR, KY, LC, MP, TT, US, VG, VI
- Updated short number metadata for region code(s):
AC, AG, AI, AO, AS, BA, BB, BG, BH, BM, BS, BT, CA, CH, DM, DO, EE, GD, GI,
GU, ID, IS, JM, KN, KY, LC, MP, MS, PR, SX, TC, TH, TT, US, VC, VG, VI
- Updated geocoding data for country calling code(s):
62 (en), 244 (en, pt), 247 (en), 359 (bg, en), 387 (bs, en, sr), 1 (en)
- New carrier data for country calling code(s): 380 (uk)
- Updated carrier data for country calling code(s):
62 (en), 91 (en), 387 (en), 975 (en), 1 (en)
- Updated / refreshed time zone meta data.
Oct 03, 2018: v8.9.15
Metadata changes:
- Updated phone metadata for region code(s):
AE, AF, AL, AM, AX, AZ, BE, CD, CH, CL, EH, FI, GQ, HN, JO, JP, LB, LR, MW,
NL, OM, RE, RO, SE, TZ, VA, YT, ZA, ZW
- Updated short number metadata for region code(s): AE, AF, AL, AM, AZ
- Updated geocoding data for country calling code(s):
263 (en), 355 (en), 374 (en, hy, ru), 380 (en)
- Updated carrier data for country calling code(s):
32 (en), 84 (en), 240 (en), 374 (en, ru), 994 (en)
Sep 18, 2018: v8.9.14
Metadata changes:
- Updated phone metadata for region code(s):
AO, EE, HN, IL, IN, MY, SB, UG, VN
- Updated carrier data for country calling code(s):
IN, RO, SB, TZ
- Updated / refreshed time zone meta data.
Sep 05, 2018: v8.9.13
Metadata changes:
- Updated phone metadata for region code(s):
BD, BE, CZ, KR, MU, NA, NL, PG, VN
- Updated carrier data for country calling code(s):
32 (en), 60 (en), 62 (en), 84 (en), 241 (en), 264 (en), 357 (en), 675 (en),
678 (en), 973 (en)
Aug 21, 2018: v8.9.12
Code changes:
- Support Russian extension character "доб" as a valid one while parsing
the numbers.
Metadata changes:
- Updated phone metadata for region code(s):
AU, BD, CC, CL, CX, FR, GI, IN, MY, NL, SA, US, VN
- Updated short number metadata for region code(s): MY
- New geocoding data for country calling code(s): 1640 (en)
- Updated geocoding data for country calling code(s): 880 (en)
- Updated carrier data for country calling code(s):
33 (en), 84 (en), 91 (en), 350 (en), 880 (en)
Jul 25, 2018: v8.9.11
Metadata changes:
- Updated phone metadata for region code(s):
AU, CC, CX, HK, IT, KE, KW, MM, NL, LU, VA
- Updated short number metadata for region code(s):
HK
- New geocoding data for country calling code(s): 1975 (en)
- Updated geocoding data for country calling code(s): 39 (en, it)
- Updated carrier data for country calling code(s):
254 (en), 351 (en), 852 (en, zh, zh_Hant)
Jul 10, 2018: v8.9.10
Metadata changes:
- Updated phone metadata for region code(s): AT, GB, IN, KE, MM, VN
- Updated short number metadata for region code(s): EE, IN, ZW
- Updated geocoding data for country calling code(s): 95 (en)
- Updated carrier data for country calling code(s): 91 (en), 254 (en)
- Updated / refreshed time zone meta data.
Jun 26, 2018: v8.9.9
Metadata changes:
- Updated phone metadata for region code(s): KG, NU, SE, VN
- Updated short number metadata for region code(s): AL, AR, EE, FR, NU, ZW
- New geocoding data for country calling code(s): 996 (en)
- Updated geocoding data for country calling code(s): 52 (es)
- Updated carrier data for country calling code(s): 58 (en), 996 (en)
- Updated / refreshed time zone meta data.
Jun 13, 2018: v8.9.8
Metadata changes:
- Updated phone metadata for region code(s):
AG, AI, AS, BB, BL, BM, BS, CA, CI, DM, DO, GD, GF, GP, GU, IL, JM, KN, KY,
LC, MF, MP, MQ, MS, PR, SE, SX, TC, TT, US, VC, VG, VI, VN
- Updated short number metadata for region code(s):
AL, AU, FR, KE, NZ, TH, UA, ZA
- New geocoding data for country calling code(s): 385 (en), 880 (en)
- Updated geocoding data for country calling code(s): 27 (en), 225 (en)
- Updated carrier data for country calling code(s):
84 (en), 225 (en), 380 (en), 385 (en), 886 (en), 972 (en)
May 29, 2018: v8.9.7
Metadata changes:
- Updated phone metadata for region code(s):
AX, BI, FI, HK, IR, ME, MO, NL, RE, UG, YT
- Updated short number metadata for region code(s): AR, ME, PM, ZA
- New geocoding data for country calling code(s): 60 (en), 380 (uk), 382 (en)
- Updated geocoding data for country calling code(s):
267 (en), 380 (en), 504 (en)
- Updated carrier data for country calling code(s):
257 (en), 262 (en), 380 (en), 852 (en, zh, zh_Hant), 853 (en)
May 15, 2018: v8.9.6
Metadata changes:
- Updated phone metadata for region code(s): IL, IN, NO, TR
- Updated short number metadata for region code(s): FR, TR
- New geocoding data for country calling code(s): 1445 (en)
- Updated geocoding data for country calling code(s): 1345 (en)
- Updated carrier data for country calling code(s):
91 (en), 972 (en), 1869 (en)
May 02, 2018: v8.9.5
Metadata changes:
- Updated phone metadata for region code(s):
AD, AR, EC, FR, HK, IN, KG, LA, ML, PA, SD, SL, TH, TN, US, VI, WS
- Updated short number metadata for region code(s): HK, WS
- New geocoding data for country calling code(s): 1820 (en)
- Updated geocoding data for country calling code(s): 54 (en, es)
- Updated carrier data for country calling code(s):
30 (en), 91 (en), 93 (fa), 223 (en), 232 (en), 249 (en), 374 (ru), 685 (en),
852 (en, zh, zh_Hant), 995 (en), 996 (en), 1649 (en)
Apr 17, 2018: v8.9.4
Code changes:
- Update formatNumberForMobileDialing() to return international format instead of national format for Uzbek phone numbers.
Metadata changes:
- Updated phone metadata for region code(s):
AG, AM, BR, CN, EC, GE, IN, IS, MX, MY, NE, PA, PY, SZ, TO, VC, ZW
- Updated short number metadata for region code(s): BD
- Updated geocoding data for country calling code(s): 268 (en)
- Updated carrier data for country calling code(s):
91 (en), 354 (en), 507 (en), 593 (en), 595 (en), 995 (en), 1268 (en),
1284 (en)
Apr 04, 2018: v8.9.3
Metadata changes:
- Updated phone metadata for region code(s):
AF, AM, BE, BF, CG, DE, EH, GP, IN, IR, KE, MA, ML, MV, TG, TR, TV
- Updated short number metadata for region code(s): BE
- New carrier data for country calling code(s): 688 (en)
- Updated carrier data for country calling code(s):
91 (en), 93 (en), 212 (en), 223 (en), 226 (en), 254 (en), 385 (en)
Mar 13, 2018: v8.9.2
Metadata changes:
- Updated phone metadata for region code(s): CA, IN, KG, PA, SL
- Updated carrier data for country calling code(s):
91 (en), 232 (en), 996 (en)
Mar 06, 2018: v8.9.1
Metadata changes:
- Updated phone metadata for region code(s): CL, FR, HK, IN, MU, MY
- Updated carrier data for country calling code(s):
91 (en), 225 (en), 230 (en)
Feb 20, 2018: v8.9.0
Code changes:
- Ported ShortNumberInfo to Javascript.
Metadata changes:
- Updated phone metadata for region code(s):
BD, BJ, CI, CN, IN, KW, SD, TG, TR, US
- New geocoding data for country calling code(s): 1279 (en)
- Updated carrier data for country calling code(s):
90 (en), 91 (en), 225 (en), 228 (en), 229 (en), 249 (en), 976 (en)
- Updated / refreshed time zone meta data.
Feb 06, 2018: v8.8.11
Metadata changes:
- New phone metadata for region code(s): XK
- Updated phone metadata for region code(s): BE, CV, ET, GW, HK, IN, MW, TT
- New short number metadata for region code(s): XK
- Updated short number metadata for region code(s): IS, ZA
- New geocoding data for country calling code(s): 383 (en, sq, sr)
- New carrier data for country calling code(s): 383 (en)
- Updated carrier data for country calling code(s):
32 (en), 91 (en), 238 (en), 245 (en), 251 (en)
Jan 23, 2018: v8.8.10
Metadata changes:
- Updated phone metadata for region code(s):
BJ, DE, HK, IN, IR, MM, MY, PW, SA, SI
- New geocoding data for country calling code(s): 680 (en)
- Updated geocoding data for country calling code(s): 966 (ar, en)
- New carrier data for country calling code(s): 34 (en), 680 (en)
- Updated carrier data for country calling code(s):
41 (en), 91 (en), 95 (en), 98 (en, fa), 229 (en), 250 (en), 381 (en),
386 (en), 852 (en, zh, zh_Hant)
Jan 09, 2018: v8.8.9
Metadata changes:
- Updated phone metadata for region code(s):
AG, AI, AS, AX, BA, BB, BL, BM, BS, CA, CC, CN, CX, DM, DO, FI, FJ, GD, GF,
GP, GR, GU, HK, ID, IN, IS, JM, KN, KY, LC, MF, MK, MP, MQ, MS, NL, NP, NZ,
PM, PR, RE, RO, SX, TC, TG, TT, US, VC, VG, VI, YT, ZM, ZW
- Updated short number metadata for region code(s): GB, GG, JE, ZW
- New geocoding data for country calling code(s): 387 (bs, en, hr, sr)
- Updated geocoding data for country calling code(s):
31 (en, nl), 61 (en), 263 (en), 381 (sr)
- New carrier data for country calling code(s): 502 (en)
- Updated carrier data for country calling code(s):
30 (en), 40 (en), 86 (en, zh, zh_Hant), 91 (en), 228 (en), 262 (en),
354 (en), 355 (en), 359 (en), 386 (en), 387 (en), 389 (en), 508 (en),
590 (en), 594 (en), 596 (en), 977 (en)
Dec 06, 2017: v8.8.8
Metadata changes:
- Updated phone metadata for region code(s): JM, MY
- Updated short number metadata for region code(s): US, ZA
- Updated carrier data for country calling code(s):
86 (en, zh, zh_Hant), 98 (en, fa)
Nov 28, 2017: v8.8.7
Build changes:
- C++ library can now be built as 32- and 64-bit RPMs (#643).
Metadata changes:
- Updated phone metadata for region code(s):
AX, CC, CX, EH, FI, GU, HK, IN, IR, MA, SM, ZM
- Updated short number metadata for region code(s): AU, HR
- Updated carrier data for country calling code(s):
7 (en, ru), 27 (en), 91 (en), 212 (en), 852 (en, zh, zh_Hant)
Nov 14, 2017: v8.8.6
Metadata changes:
- Updated alternate formatting data for country calling code(s):
34, 62, 91, 94, 971, 972
- Updated phone metadata for region code(s):
AE, AR, AU, BB, BN, BR, BW, BY, BZ, CC, CL, CW, CX, DE, EC, EG, ET, GB, GE,
GG, GP, HK, HR, ID, IE, IL, IN, JO, KH, LK, LU, LV, LY, MG, MO, MR, MY, NL,
NR, OM, PH, PK, PM, PS, RE, RU, RW, SA, SE, SG, SH, SK, SM, TH, TJ, UZ, VN,
ZM, ZW
- New geocoding data for country calling code(s): 61 (en)
- Updated geocoding data for country calling code(s): 20 (en)
- New carrier data for country calling code(s): 674 (en)
- Updated carrier data for country calling code(s):
61 (en), 91 (en), 234 (en), 593 (en), 1246 (en)
- Updated / refreshed time zone meta data.
Oct 30, 2017: v8.8.5
Metadata changes:
- Updated phone metadata for region code(s): AW, CA, CN, MV, NL, TR, UG
- Updated short number metadata for region code(s): TR
- Updated carrier data for country calling code(s):
86 (en, zh, zh_Hant), 297 (en)
Oct 16, 2017: v8.8.4
Build changes:
- C++ geocoding build tools now use readdir, since readdir_r is deprecated.
- Update the protobuf-java dependency used to build the C++ metadata from 2.5.0
to 3.0.0. This is an internal change and does not affect the users of the
library.
Metadata changes:
- Updated phone metadata for region code(s): AL, BS, FJ, JM, PH, US
- Updated short number metadata for region code(s): KZ
- New geocoding data for country calling code(s): 1726 (en)
- Updated geocoding data for country calling code(s): 1242 (en)
- Updated carrier data for country calling code(s):
20 (en), 679 (en), 1242 (en)
Oct 03, 2017: v8.8.3
Metadata changes:
- Updated phone metadata for region code(s): BS, FJ, IR, KR
- Updated short number metadata for region code(s): KR
- Updated carrier data for country calling code(s):
380 (en), 381 (en), 679 (en), 1242 (en)
Sep 19, 2017: v8.8.2
Metadata changes:
- Updated phone metadata for region code(s):
CA, CR, EG, FI, HN, IS, KM, KR, LU, MV, PA, TW, UG, US, VN
- Updated short number metadata for region code(s): IE, IR, KE, TR
- New geocoding data for country calling code(s): 1223 (en)
- Updated geocoding data for country calling code(s): 84 (en, vi)
- Updated carrier data for country calling code(s): 20 (en)
Sep 05, 2017: v8.8.1
Metadata changes:
- Updated phone metadata for region code(s):
AL, AR, AT, AU, AX, AZ, BO, BR, CN, CO, DE, EG, FI, GB, GL, GW, ID, IE, IL,
IM, IN, JP, KI, KR, KW, LB, LI, LU, MV, MW, NA, NE, NG, PK, PY, SE, SI, SK,
SO, SR, TJ, TW, UA, UG, US, VN, ZW
- Updated short number metadata for region code(s): KR
- New geocoding data for country calling code(s): 380 (en), 1838 (en)
- Updated geocoding data for country calling code(s): 84 (en, vi), 686 (en)
- Updated carrier data for country calling code(s):
60 (en), 380 (en), 597 (en), 686 (en)
Aug 21, 2017: v8.8.0
Code changes:
- Improve parsing logic to be smarter about national-prefix detection &
stripping based on possible-lengths (IS_POSSIBLE_LOCAL_ONLY and
INVALID_LENGTH). Enables e.g. adding Iran short-codes starting with "096"
without the need to hack IR's national prefix parsing config.
- Logging changes: Don't log client-provided phone numbers.
- Add constants for C++ PhoneNumberUtil enums' max values.
Metadata changes:
- Updated phone metadata for region code(s):
AX, BF, BG, DM, EG, FI, IN, IR, KY, KZ, LC, MT, NI, PL, RU, SZ, TH, US, VC
- Updated short number metadata for region code(s): BA, IR, PL, RU, TH, ZA
- New geocoding data for country calling code(s): 52 (es), 1986 (en)
- Updated geocoding data for country calling code(s): 52 (en), 268 (en)
- New carrier data for country calling code(s): 1345 (en)
- Updated carrier data for country calling code(s):
20 (en), 226 (en), 268 (en), 356 (en), 505 (en), 1441 (en), 1758 (en),
1767 (en), 1784 (en)
Aug 02, 2017: v8.7.1
Code changes:
- Documentation fix for getNumberType
Metadata changes:
- Updated phone metadata for region code(s):
AG, AM, BJ, BO, CL, EE, EG, GD, HK, IN, KE, KW, LK, US
- Updated short number metadata for region code(s): BJ, EE, EG, IN, KW
- New geocoding data for country calling code(s): 1564 (en)
- New carrier data for country calling code(s): 1268 (en)
- Updated carrier data for country calling code(s):
56 (en), 254 (en), 374 (en), 852 (en, zh, zh_Hant), 1473 (en)
- Updated / refreshed time zone meta data.
Jul 18, 2017: v8.7.0
Code changes:
- New method getSupportedCallingCodes() API to return all the calling codes
that the library considers valid, both for geographical and non-geographical
entities.
- Added isSmsServiceForRegion(PhoneNumber, RegionCode) API in C++ and Java
short number info libraries. An SMS service is where the primary or only
intended usage is to receive and/or send text messages (SMSs). This includes
MMS as MMS numbers downgrade to SMS if the other party isn't MMS-capable. The
is_sms_service metadata is also serialized for the first time. JS is not
affected because it doesn't have short numbers.
- Documentation update for private variables VALID_PUNCTUATION and
SINGLE_INTERNATIONAL_PREFIX, also renaming the latter from
UNIQUE_INTERNATIONAL_PREFIX.
- [Java only] Changing public APIs that take in strings representing phone
numbers or parts of phone numbers to take in CharSequence instead. Updating
some of the internal methods to do the same. This affects ShortNumberInfo and
PhoneNumberUtil, namely the following methods:
- parse & parseAndKeepRawInput
- formatWithCarrierCode & formatWithPreferredCarrierCode