-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease_notes.txt
1454 lines (1299 loc) · 64.8 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
Nov 23, 2016: v7.7.5
Code changes:
- Removing all references to possible_number_pattern other than the proto
buffer itself (and derived files, or hand-crafted files based on it.) This
information is no longer present in the binary.
- Refactored metadata loading and removed synchronization for all kinds of
metadata. Clients may experience quicker loading of alternate formats and
short number metadata, but no change is required for callers of the library.
- Reduced visibility of `public` internal API
`PhoneNumberUtil.createInstance(MetadataSource)` to `private`. MetadataSource
and all its implementations are non-public so this should not affect public
usage of the library.
Metadata changes:
- Updated phone metadata for region code(s):
BB, BD, ES, HN, IN, KR, KW, MC, NL, PH, PK, SH, TW, VG, ZW
- Updated short number metadata for region code(s):
AF, AG, AM, AR, AW, AZ, BD, BM, BQ, BW, CD, CI, CM, CO, CW, DZ, GD, GE, GN,
GT, GY, HN, HT, IE, IN, IQ, JM, JO, KE, KG, KH, KW, LV, NO, SG, SV, UY
- Updated geocoding data for country calling code(s): 504 (en)
- New carrier data for country calling code(s): 886 (en), 1284 (en)
- Updated carrier data for country calling code(s): 63 (en), 92 (en)
Nov 09, 2016: v7.7.4
GitHub project changes:
- Changed tag to vX.Y.Z from libphonenumber-X.Y.Z; this may affect ports and
derived projects.
Metadata structure changes in XML file:
- Mobile and Fixed-Line blocks are no longer assumed to inherit missing data
from the GeneralDesc, but are treated like every other phone number type.
This means that for the non-geographical country codes, like +800, the
example number has been moved from generalDesc to the relevant number types,
and the code in getExampleNumberForNonGeoEntity has been changed to look at
these sub-types for an example number.
This also means that the "NA" and "-1" blocks present in the metadata to
indicate that no mobile or fixed-line numbers appear for the entity have been
removed.
There should no longer be an exampleNumber at the generalDesc level, but it
should be present at every PhoneNumberDesc with data.
Code changes:
- Using new possibleLengthInfo to decide whether a short number is the right
length or not. This could result in more specific results; whereas before, a
number from length 3 to length 6 may have been deemed possible, now we may
exclude a number of length 5.
- Add hash (#) as a diallable character. Numbers with # in them will no longer
have formatting applied in formatInOriginalFormat, and
normalizeDiallableCharsOnly now retains the # symbol.
- getExampleNumberForNonGeoEntity has been changed to look at the specific
number types, not just the generalDesc, for the example numbers; this is a
necessary change after the metadata structure change detailed above.
Metadata changes:
- Updated phone metadata for region code(s): AD, AE, IN, IR, MU, MV, NG, PG
- Updated short number metadata for region code(s): NL, SN
- New geocoding data for country calling code(s):
960 (en), 1249 (en), 1343 (en), 1579 (en), 1581 (en)
- Updated geocoding data for country calling code(s):
1782 (en), 1867 (en), 1902 (en)
- Updated carrier data for country calling code(s):
91 (en), 234 (en), 971 (en)
Oct 26, 2016: libphonenumber-7.7.3
Internal changes:
- Fixed Phonemetadata.java not to merge from a NumberFormat's unset bool
national_prefix_optional_when_formatting.
- Added MetadataFilter, an internal API which is under development and subject
to backwards-incompatible changes without notice or guarantees.
Metadata changes:
- Updated phone metadata for region code(s):
882, AG, AI, AS, BB, BM, BR, BS, CA, DM, DO, GD, GU, HU, IN, JM, KN, KY, KZ,
LC, MP, MS, PR, SX, TC, TR, TT, UG, US, VC, VG, VI
- Updated short number metadata for region code(s): UY
- New geocoding data for country calling code(s): 1463 (en), 358 (sv)
- Removed geocoding data for country calling code(s): 358 (se)
- Updated geocoding data for country calling code(s): 7 (en, ru)
- Updated carrier data for country calling code(s):
91 (en), 256 (en), 1876 (en)
Oct 06, 2016: libphonenumber-7.7.2
Code changes:
- Stop setting empty preferred_domestic_carrier_code, and if we are passed such
a number then treat the empty field as if unset.
Metadata changes:
- Updated phone metadata for region code(s): CL, FR, KE, MU, NG
- Updated short number metadata for region code(s):
EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, OM, PA, PE, PF, PG, PH,
PK, PL, PM, PR, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG,
SH, SI, SJ, SK, SL, SM, SN, SO, SR, ST, SV, SX, SY, SZ, TC, TD, TG, TH, TJ,
TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI,
VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
- Updated geocoding data for country calling code(s): 56 (en, es)
- Updated carrier data for country calling code(s):
230 (en), 234 (en), 254 (en)
Sep 27, 2016: libphonenumber-7.7.1
Build changes:
- OSGi support added to Manifest information when building jar (#1300)
- BuildMetadataJsonFromXml changed to output possible lengths for JS build
- Fix geocoding file generation to handle language codes that are not just
two letters long properly and to process filenames in the same order.
Code changes:
- Switching the internal implementation of isPossible and related functions
to use the new possibleLengths metadata. This affects a lot of countries,
making isPossible more restrictive as more precise data is available. It
also affects parsing ambiguous and invalid numbers, as we decide whether
to strip a possible national prefix (1) or country code based on the length
of the number and whether it is possible before or after this.
- Formatting, naming (LOGGER -> logger) and comment tweaks to follow style
guide
- Removal of unneeded canBeGeocoded method in the
PhoneNumberToTimeZonesMapper.java, using phoneNumberUtil instead
Metadata changes:
- Updated phone metadata for region code(s):
800, 808, 870, 878, 881, 882, 883, 888, 979, AG, AM, BD, BF, CL, CO, EC, ET,
GB, GG, GH, IN, LR, MD, MQ, SH, SN, TA, TH, TR
- Updated short number metadata for region code(s):
AC, AD, AE, AF, AG, AI, AL, AM, AO, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD,
BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BW, BY, BZ, CA, CC,
CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ,
DK, DM, DO, DZ, MD
- New carrier data for country calling code(s): 593 (en)
- Updated carrier data for country calling code(s):
49 (en), 56 (en), 66 (en), 90 (en), 91 (en), 226 (en), 231 (en), 373 (en),
852 (zh_Hant)
Sep 19, 2016: libphonenumber-7.7.0
Code changes:
- Removed the dependency on protobuf (protobuf-javanano) from the Java library,
resurrecting
java/libphonenumber/src/com/google/i18n/phonenumbers/Phonemetadata.java
which was present until libphonenumber-7.1.1.
Does not affect the C++ or JavaScript libraries.
Sep 07, 2016: libphonenumber-7.6.1
Code changes:
- Phonemetadata.java has two more fields to represent possible lengths of phone
numbers. Changed BuildMetadataFromXml (and the resultant jar) to alter the way
that metadata about possible-lengths information is consumed when constructing
metadata to populate these.
Discussion list email:
https://groups.google.com/forum/#!topic/libphonenumber-discuss/75TOpTFVi08
Metadata changes:
- Updated phone metadata for region code(s):
AG, AM, AX, BY, CD, FI, IN, KR, MA, NA, NL, PK, SY
- Updated short number metadata for region code(s): BR, GB, NL, NZ
- New geocoding data for country calling code(s):
82 (pl, pt, ro, ru, sl, sr, uk, vi)
- Updated carrier data for country calling code(s):
27 (en), 91 (en), 243 (en), 963 (en)
Aug 24, 2016: libphonenumber-7.6.0
Code changes:
- Refactored metadata loading and closed all streams after loading.
- Made isNumberGeographical public, and changed the geocoder to
use this when checking whether to give a detailed answer or country-level
only.
Build changes:
- Use protobuf-javanano 3.0.0-alpha-7 from Maven Central.
Metadata changes:
- Updated phone metadata for region code(s): EH, ET, JM, MA, SK, SN, SY, ZM
- Updated short number metadata for region code(s): ZA
- Updated geocoding data for country calling code(s): 212 (en)
- New carrier data for country calling code(s):
86 (zh, zh_Hant), 852 (zh, zh_Hant), 963 (en)
- Updated carrier data for country calling code(s):
86 (en), 212 (en), 251 (en), 421 (en)
- Deleted unsupported SingleFilePhoneNumberMetadataProto
Aug 10, 2016: libphonenumber-7.5.2
Metadata changes:
- Updated phone metadata for region code(s): CO, IN, ME
- Updated short number metadata for region code(s): IN
- New carrier data for country calling code(s): 382 (en)
- Updated carrier data for country calling code(s): 91 (en)
Jul 27, 2016: libphonenumber-7.5.1
Metadata changes:
- Updated alternate formatting data for country calling code(s): 595
- Updated phone metadata for region code(s): BD, BG, CI, IN, PY, TJ
- Updated short number metadata for region code(s): IN
- New geocoding data for country calling code(s):
82 (bg, ca, el, es, fi, hi, hu, iw, ja, tr)
- Updated geocoding data for country calling code(s): 44 (en)
- New carrier data for country calling code(s): 374 (ru)
- Updated carrier data for country calling code(s):
91 (en), 374 (en), 992 (en)
Jul 22, 2016: libphonenumber-7.5.0
Code changes:
- Simplify concurrent metadata loading in MultiFileMetadataSourceImpl and
reduce points of contention.
Jul 14, 2016: libphonenumber-7.4.5
Metadata changes:
- Updated phone metadata for region code(s): CN, HN, IN, KW, LV, TC
- Updated short number metadata for region code(s): AE, BR, GB, ZA
- New geocoding data for country calling code(s): 93 (fa), 992 (en)
- Updated geocoding data for country calling code(s):
91 (en), 98 (en, fa), 371 (en), 504 (en), 1 (en)
- Updated carrier data for country calling code(s): 91 (en)
Jun 29, 2016: libphonenumber-7.4.4
Metadata changes:
- Updated phone metadata for region code(s): AZ, BH, HN, IN, US
- Updated short number metadata for region code(s): BR, IN, SK
- New geocoding data for country calling code(s): 994 (en),
- Updated geocoding data for country calling code(s): 504 (en), 1 (en)
- Updated carrier data for country calling code(s):
91 (en), 973 (en), 994 (en)
Jun 15, 2016: libphonenumber-7.4.3
Metadata changes:
- Updated phone metadata for region code(s):
HK, HN, IN, KN, KW, SK, SN, TH, TZ
- Updated short number metadata for region code(s): AR, NO
- New geocoding data for country calling code(s): 93 (en), 504 (en)
- New carrier data for country calling code(s): 93 (fa), 98 (fa)
- Updated carrier data for country calling code(s):
66 (en), 91 (en), 255 (en), 421 (en)
Jun 01, 2016: libphonenumber-7.4.2
Code changes:
- Make C++ code forward compatible with an upcoming RE2 change.
Metadata changes:
- Updated phone metadata for region code(s): AE, BZ, GU, IN, KR
- Updated short number metadata for region code(s): BR
- New geocoding data for country calling code(s): 501 (en)
- Updated carrier data for country calling code(s):
91 (en), 971 (en), 1671 (en)
May 18, 2016: libphonenumber-7.4.1
Metadata changes:
- Updated phone metadata for region code(s): FR, IL, KR
- Updated carrier data for country calling code(s): 972 (en)
May 11, 2016: libphonenumber-7.4.0
Maven changes:
- Repackage protobuf runtime dependency to prevent conflicts with clients'
protobuf dependencies. Backwards-compatible, so no changes needed for clients
who could use the previous release, but enables those with their own protobuf
dependencies to use this and future releases without workarounds.
May 03, 2016: libphonenumber-7.3.2
Metadata changes:
- Updated phone metadata for region code(s):
AU, BR, ET, IN, KH, ML, NO, SB, TJ, US
- Updated short number metadata for region code(s): CA, ML, US
- New geocoding data for country calling code(s): 223 (en)
- Updated geocoding data for country calling code(s):
27 (en), 55 (en, pt), 1 (en)
- Updated carrier data for country calling code(s):
61 (en), 91 (en), 223 (en), 251 (en), 677 (en), 992 (en)
Apr 20, 2016: libphonenumber-7.3.1
Metadata changes:
- Updated phone metadata for region code(s): DE, DJ, IL, IN, KH
- Updated short number metadata for region code(s): BR
- Updated carrier data for country calling code(s):
91 (en), 855 (en), 972 (en)
Apr 05, 2016: libphonenumber-7.3.0
Code changes:
- Added java/pending_code_changes.txt for contributors to track code changes
between releases.
- Reduced minimum required version of cmake to 2.8.
- Added cmake installation instructions for Mac.
- Added getExampleNumberForType that doesn't take in a region, and
getInvalidExampleNumber
- Improvements to javadoc for parse method
- Update isNumberGeographical to return true for geographical mobile numbers.
Metadata changes:
- Updated phone metadata for region code(s):
BJ, BZ, CI, ET, GQ, KE, KW, ML, NO, OM, VN
- Updated short number metadata for region code(s): KE
- Updated geocoding data for country calling code(s):
84 (en), 251 (en), 254 (en)
- Updated carrier data for country calling code(s):
84 (en), 225 (en), 229 (en), 254 (en), 968 (en)
Mar 21, 2016: libphonenumber-7.2.8
Metadata changes:
- Updated phone metadata for region code(s): CL, CN, FO, KE, SE, SO
- Updated short number metadata for region code(s): FO
- Updated geocoding data for country calling code(s): 86 (en, zh)
- Updated carrier data for country calling code(s):
86 (en), 252 (en), 254 (en)
Mar 09, 2016: libphonenumber-7.2.7
Code changes:
- Update nationalPrefixOptionalWhenFormatting documentation.
Metadata changes:
- Updated phone metadata for region code(s): CN, IN, MO, TK
- Updated short number metadata for region code(s): FR
- Updated carrier data for country calling code(s): 853 (en)
- Updated / refreshed time zone meta data.
Feb 25, 2016: libphonenumber-7.2.6
Metadata changes:
- Updated phone metadata for region code(s): DJ, MA, NA, US
- Updated short number metadata for region code(s): KR
- New geocoding data for country calling code(s): 1380 (en)
- Updated geocoding data for country calling code(s): 212 (en)
Feb 10, 2016: libphonenumber-7.2.5
Code changes:
- Fix two places in demo where NPEs can occur on bad input.
- Fix an IllegalStateException when getMetadataForNonGeographicalRegion is
called with a country calling code which isn't a non-geographic entity.
Metadata changes:
- Updated phone metadata for region code(s):
AG, AI, AS, BB, BM, BS, CA, DM, DO, ET, GD, GU, JM, KN, KY, LC, MP, MS, PR,
SE, SK, SX, TC, TT, US, VC, VG, VI
- Updated geocoding data for country calling code(s): 46 (en)
- Updated carrier data for country calling code(s): 251 (en)
Jan 28, 2016: libphonenumber-7.2.4
- First release to automatically remove obsolete geocoding files
Metadata changes:
- Updated phone metadata for region code(s):
BW, CA, CI, CK, GM, IN, NA, NG, PG, TD, TM
- Updated short number metadata for region code(s): PT
- New geocoding data for country calling code(s): 1825 (en)
- Removed geocoding data for country calling code(s):
1726 (en), 1730 (en), 1838 (en), 1851 (en), 1888 (en), 225 (fr), 242 (fr),
269 (fr), 238(pt), 55 (pt)
- Updated carrier data for country calling code(s):
91 (en), 225 (en), 234 (en), 235 (en), 675 (en), 993 (en)
Jan 08, 2016: libphonenumber-7.2.3
Backwards-incompatible code changes:
- Removed deprecated ShortNumberUtil.java
Other code changes:
- Updated the demo:
added short number support;
added permalink;
added direct link to file an issue
Metadata changes:
- Updated phone metadata for region code(s):
AU, BR, CC, CR, CW, CX, ET, HN, KR, SI, TV, WF
- Updated short number metadata for region code(s): FR, HR, HU, IT, KR, LV, TV
- New geocoding data for country calling code(s): 688 (en)
- Updated carrier data for country calling code(s):
61 (en), 251 (en), 506 (en), 599 (en)
Dec 15, 2015: libphonenumber-7.2.2
Metadata changes:
- Updated phone metadata for region code(s):
AT, BD, BR, CC, CX, CY, FI, ID, IS, KI, MM, TN, VC
- Updated short number metadata for region code(s):
AT, BG, CY, CZ, DE, DK, EE, FI, GB, GR, ID, IE, IS, LT, LU, MT, NL, PL, RO,
SI, SK
- New geocoding data for country calling code(s): 95 (en)
- Updated carrier data for country calling code(s):
216 (en), 354 (en), 357 (en), 686 (en)
Nov 11, 2015: libphonenumber-7.2.1
- Fix to libphonenumber-7.2.0
Metadata changes: None
Nov 10, 2015: libphonenumber-7.2.0
* Broken, do not use *
Code changes:
- Phonemetadata now generated as nanoproto
Metadata changes:
- Updated phone metadata for region code(s):
BI, BT, IL, MN, MO, NP, RU, SK, VG
- Updated short number metadata for region code(s): BT, DK
- New geocoding data for country calling code(s): 972 (en), 975 (en)
- New carrier data for country calling code(s): 853 (en)
- Updated carrier data for country calling code(s):
45 (en), 257 (en), 421 (en), 964 (en), 972 (en), 975 (en), 976 (en)
- Updated / refreshed time zone meta data.
Oct 29, 2015: libphonenumber-7.1.1
Metadata changes:
- Updated phone metadata for region code(s):
AT, BB, BR, GW, ID, MD, OM, SO, TT
- Updated short number metadata for region code(s): BB, NO
- New geocoding data for country calling code(s): 968 (en)
- Updated geocoding data for country calling code(s): 245 (en, pt)
- Updated carrier data for country calling code(s):
62 (en), 245 (en), 252 (en), 373 (en), 968 (en), 1246 (en)
Oct 08, 2015: libphonenumber-7.1.0
API changes:
- New MetadataSource implementation that reads from a single metadata file with
all regions' phone number metadata.
Metadata changes:
- Updated phone metadata for region code(s): BR, BS, HT, IR, KW, MC, PA, VU
- Updated carrier data for country calling code(s):
98 (en), 678 (en), 880 (en)
Sep 16, 2015: libphonenumber-7.0.11
Metadata changes:
- Updated phone metadata for region code(s):
IN, KE, LR, MM, MR, NA, NE, PT, RO, SO, TZ, US
- New short number metadata for region code(s): CF, CG, ER, KP, NE, SO
- Updated short number metadata for region code(s): CD, NO, PT
- New geocoding data for country calling code(s): 1854 (en)
- Updated geocoding data for country calling code(s): 264 (en)
- Updated carrier data for country calling code(s):
40 (en), 91 (en), 95 (en), 227 (en), 231 (en), 252 (en), 254 (en), 255 (en),
509 (en)
Aug 31, 2015: libphonenumber-7.0.10
Metadata changes:
- Updated phone metadata for region code(s):
AU, BY, CR, DZ, EH, ES, HK, HT, IN, JO, MN, MU, ST, TD, TT, ZW
- Updated short number metadata for region code(s): HK, KR
- Updated geocoding data for country calling code(s): 263 (en)
- New carrier data for country calling code(s): 509 (en), 976 (en)
- Updated carrier data for country calling code(s):
41 (en), 61 (en), 91 (en), 230 (en), 235 (en), 239 (en)
Aug 03, 2015: libphonenumber-7.0.9
Metadata changes:
- Updated phone metadata for region code(s): AR, IN, MX, PL, SZ, YT, ZW
- Updated short number metadata for region code(s): MX, ZW
- Updated carrier data for country calling code(s): 91 (en), 263 (en)
Jul 14, 2015: libphonenumber-7.0.8
Metadata changes:
- Updated phone metadata for region code(s):
AC, BS, BW, CL, DE, DZ, HN, HR, IL, IN, IT, JO, KY, MA, NP, PL, SH, SL, TM,
UA, VA
- Updated short number metadata for region code(s): HR
- Updated geocoding data for country calling code(s): 56 (en, es)
- Updated carrier data for country calling code(s):
49 (en), 212 (en), 232 (en), 267 (en), 380 (en), 385 (en), 962 (en),
972 (en), 977 (en), 993 (en)
- Updated / refreshed time zone meta data.
Jun 24, 2015: libphonenumber-7.0.7
Metadata changes:
- Updated phone metadata for region code(s):
AC, BF, BG, CG, CM, FR, IL, IN, JP, KW, LB, LI, SB, SD, SH, TT
- Updated short number metadata for region code(s): GY, SB
- New geocoding data for country calling code(s): 592 (en)
- Updated geocoding data for country calling code(s):
86 (en, zh), 226 (en), 290 (en, fr)
- New carrier data for country calling code(s): 592 (en), 689 (en)
- Updated carrier data for country calling code(s):
7 (en), 60 (en), 91 (en), 237 (en), 242 (en), 249 (en), 359 (en), 961 (en),
1868 (en)
- Updated / refreshed time zone meta data.
May 29, 2015: libphonenumber-7.0.6
Metadata changes:
- Updated phone metadata for region code(s):
BB, BR, CR, ID, IL, JO, KW, LK, LU, MD, MM, MV, MY, PH, PK, SC, SE
- Updated short number metadata for region code(s): BE, LK, US
- Updated carrier data for country calling code(s):
60 (en), 63 (en), 92 (en), 94 (en), 95 (en), 248 (en), 373 (en), 960 (en),
972 (en), 1246 (en)
Apr 24, 2015: libphonenumber-7.0.5
* Metadata changes:
- Updated phone metadata for region code(s):
AF, AS, BD, BE, CA, CI, ID, IN, JM, KH, LI, LU, MU, NE, PL
- Updated short number metadata for region code(s): BE, LI
- Updated geocoding data for country calling code(s):
62 (en), 86 (en, zh), 358 (en, fi, se)
- Updated carrier data for country calling code(s):
32 (en), 93 (en), 225 (en), 227 (en), 855 (en), 1684 (en), 1876 (en)
Mar 25, 2015: libphonenumber-7.0.4
* Metadata changes:
- Updated phone metadata for region code(s): CA, HU, IL, JO, LU, SG, SL, US
- Updated short number metadata for region code(s): BI
- New geocoding data for country calling code(s):
1220 (en), 1628 (en), 1629 (en)
- Updated carrier data for country calling code(s):
65 (en), 232 (en), 972 (en)
Mar 02, 2015: libphonenumber-7.0.3
* Metadata changes:
- Updated phone metadata for region code(s):
AR, BH, BY, CI, CN, GH, KR, KW, LU, ME, NZ, SB, WS
- New geocoding data for country calling code(s): 64 (en)
- Updated geocoding data for country calling code(s):
86 (en, zh), 1418 (en), 1438 (en), 1450 (en), 1514 (en), 1819 (en)
- Updated carrier data for country calling code(s):
225 (en), 233 (en), 677 (en), 973 (en)
Jan 09, 2015: libphonenumber-7.0.2
* Metadata changes:
- Updated phone metadata for region code(s):
BD, BH, EH, GH, IN, JM, LU, MA, MY, NF, NG, PK, SB, TT, TZ
- Updated geocoding data for country calling code(s): 91 (en), 352 (en, fr)
- New carrier data for country calling code(s): 1876 (en)
- Updated carrier data for country calling code(s):
60 (en), 91 (en), 92 (en), 212 (en), 233 (en), 234 (en), 352 (en), 677 (en)
Nov 25, 2014: libphonenumber-7.0.1
* Metadata changes:
- New alternate formatting data for country calling code(s): 676
- Updated phone metadata for region code(s):
BI, CM, ID, IR, KR, LA, NP, TG, TH, TO
- New geocoding data for country calling code(s): 237 (en)
- Updated geocoding data for country calling code(s): 98 (en, fa)
- Updated carrier data for country calling code(s):
237 (en), 257 (en), 856 (en), 977 (en)
Oct 29, 2014: libphonenumber-7.0
* Code changes:
- New APIs for ShortNumberInfo. The old APIs have been deprecated and will be
removed in an upcoming release.
* Metadata changes:
- Updated phone metadata for region code(s):
AR, AU, CC, CI, CX, DZ, EE, IN, KZ, MC, SB, TJ, TT
- Updated short number metadata for region code(s): MC
- Updated geocoding data for country calling code(s): 34 (en, es), 54 (en)
- Updated carrier data for country calling code(s):
7 (en), 61 (en), 91 (en), 225 (en), 677 (en), 967 (en), 992 (en), 1868 (en)
Oct 13, 2014: libphonenumber-6.3.1
* Metadata changes:
- Updated phone metadata for region code(s):
AC, AU, CR, DE, IL, MR, NO, SA, SR, UG
- Updated short number metadata for region code(s): CR
- Updated carrier data for country calling code(s):
61 (en), 256 (en), 506 (en), 597 (en), 966 (en), 972 (en)
Sep 25, 2014: libphonenumber-6.3
* Code changes:
- Changing the offline geocoder to not return any country at all if the number
could belong to multiple countries
- Removing obsolete code that treated countries with no metadata as valid.
* Metadata changes:
- New alternate formatting data for country calling code(s): 54, 91
- Updated phone metadata for region code(s):
AM, AR, BR, CA, CL, IL, IN, IR, IS, KE, NI, PF, SB, SN, TH, TN, US
- New geocoding data for country calling code(s):
1782 (en), 1929 (en), 1930 (en), 1938 (en)
- Updated geocoding data for country calling code(s): 98 (en, fa)
- New carrier data for country calling code(s): 354 (en)
- Updated carrier data for country calling code(s):
27 (en), 56 (en), 66 (en), 91 (en), 92 (en), 98 (en), 216 (en), 221 (en),
254 (en), 374 (en), 505 (en), 677 (en), 972 (en)
Aug 21, 2014: libphonenumber-6.2.2
* Metadata changes:
- Updated phone metadata for region code(s): BN, CL, CO, DK, IN, SB, SO
- Updated short number metadata for region code(s): FR, SA, US
- Updated carrier data for country calling code(s):
27 (en), 57 (en), 91 (en), 252 (en), 677 (en)
Jul 28, 2014: libphonenumber-6.2.1
* Metadata changes:
- Updated phone metadata for region code(s): BW, LB, MD, PA, PF, VI, ZM
- New carrier data for country calling code(s): 507 (en), 961 (en)
- Updated carrier data for country calling code(s): 267 (en), 373 (en)
Jun 30, 2014: libphonenumber-6.2
* Code changes:
- Better exclusion of dates when matching phone numbers from text.
- Handle phone input in RFC3966 with missing tel: prefix
* Metadata changes:
- New alternate formatting data for country calling code(s): 95
- Updated phone metadata for region code(s):
AF, CN, EH, FJ, IN, JP, KE, KG, KW, MA, MM, PG, PK, SN, SO
- New short number metadata for region code(s): SN
- Updated short number metadata for region code(s): FR, KE
- Updated geocoding data for country calling code(s): 254 (en)
- New carrier data for country calling code(s): 95 (en)
- Updated carrier data for country calling code(s):
92 (en), 93 (en), 212 (en), 221 (en), 254 (en), 675 (en), 679 (en), 965 (en),
996 (en)
Jun 06, 2014: libphonenumber-6.1.1
* Metadata changes:
- Updated phone metadata for region code(s):
AF, AG, AI, AS, BB, BF, BM, BS, CA, CN, CR, DM, DO, DZ, FR, GD, GU, IN, JM,
KH, KN, KW, KY, LC, MN, MP, MS, NG, NI, PH, PR, SX, TC, TT, US, VC, VG, VI
- Updated short number metadata for region code(s): AL
- New geocoding data for country calling code(s): 1346 (en), 1959 (en)
- Updated geocoding data for country calling code(s):
33 (en, fr), 352 (de, en, fr), 355 (en)
- New carrier data for country calling code(s): 505 (en)
- Updated carrier data for country calling code(s):
63 (en), 91 (en), 93 (en), 234 (en)
May 08, 2014: libphonenumber-6.1
* Code changes:
- Adding MetadataLoader support to allow custom metadata loading from
alternative sources (should have no visible impact to users).
- Fixing bug where digits could be lost in as-you-type formatting and
formatting patterns incorrectly applied.
* Metadata changes:
- Updated phone metadata for region code(s):
AR, BF, BR, BS, CL, CN, CO, CR, DE, DM, EC, EG, FR, GA, GD, GH, HU, ID, IL,
IN, JP, KH, KI, KN, LA, LC, LR, ML, MU, MX, MZ, NA, NE, PF, PL, RU, SM, TH,
TW, UZ, VA, VC
- Updated short number metadata for region code(s): BI, CR, PL, TH
- New geocoding data for country calling code(s): 32 (de), 1242 (en)
- Updated geocoding data for country calling code(s):
32 (en, nl), 55 (en), 56 (en, es), 86 (en, zh)
- New carrier data for country calling code(s):
1758 (en), 1784 (en), 1869 (en)
- Updated carrier data for country calling code(s):
66 (en), 86 (en), 227 (en), 231 (en), 233 (en), 258 (en), 1473 (en),
1767 (en)
Feb 25, 2014: libphonenumber-6.0
* Code changes:
- Better support for detecting phone numbers in text that are beside each other
- Change to how Japanese numbers beginning with "00" are modelled, with the
side-effect that the maximum possible number length has been extended by 1.
- Handle StringIndexOutOfBoundsException in the AsYouTypeFormatter when the
national prefix that was extracted was not found in the prefix. This affected
countries with very long carrier codes, such as Korea.
- Removal of some of the author attributions - contributions to be tracked in
CONTRIBUTORS file.
* Metadata changes:
- Updated phone metadata for region code(s): AS, BR, KW, LU
- New carrier data for country calling code(s): 1684 (en)
- Updated carrier data for country calling code(s): 352 (en)
Feb 07, 2014: libphonenumber-5.9.4
* Metadata changes:
- Updated phone metadata for region code(s):
883, BF, BJ, BW, CL, CR, DZ, FR, GD, IN, JP, MD, NG, NZ, PK, PL, SY, UY, VU
- Updated short number metadata for region code(s): LV, MD
- New carrier data for country calling code(s): 373 (en), 1473 (en)
- Updated carrier data for country calling code(s):
48 (en), 49 (en), 91 (en), 92 (en), 213 (en), 226 (en), 229 (en), 234 (en),
267 (en), 389 (en), 506 (en), 598 (en)
Jan 21, 2014: libphonenumber-5.9.3
* Metadata changes:
- Updated phone metadata for region code(s):
BF, BH, BR, CN, GR, IN, MY, PA, TN, US
- Updated short number metadata for region code(s): CN
- New geocoding data for country calling code(s): 1364 (en), 1725 (en)
- Updated geocoding data for country calling code(s): 86 (en)
- Updated carrier data for country calling code(s):
55 (en), 226 (en), 973 (en)
Dec 20, 2013: libphonenumber-5.9.2
* Metadata changes:
- New alternate formatting data for country calling code(s): 255, 27, 381, 506
- Updated alternate formatting data for country calling code(s): 43
- Updated phone metadata for region code(s):
AG, AI, AS, BB, BF, BM, BS, CA, CR, DM, DO, EC, GD, GU, JM, KN, KY, LC, MP,
MS, PR, SO, SX, TC, TT, US, VC, VG, VI
- Updated carrier data for country calling code(s): 226 (en)
Dec 13, 2013: libphonenumber-5.9.1
* Metadata changes:
- New alternate formatting data for country calling code(s): 505, 679
- Updated phone metadata for region code(s):
BF, CI, EG, EH, FJ, IN, KI, MA, MT, NG, NI, SI, SN, SR, TT
- Updated short number metadata for region code(s): KI
- Updated geocoding data for country calling code(s):
27 (en), 226 (en), 1 (en)
- New carrier data for country calling code(s): 356 (en), 677 (en)
- Updated carrier data for country calling code(s):
212 (en), 221 (en), 225 (en), 226 (en), 234 (en), 597 (en), 1 (en)
Nov 12, 2013: libphonenumber-5.9
* Code changes:
- Adding support for numbers with multiple Italian leading zeros, by adding a field
to the phone number proto to allow an arbitrary number of leading zeros, and
supporting this when parsing, validating and formatting.
- Adding more functionality to ShortNumberInfo -> such as getExpectedCostForRegion.
- Fix for parsing short numbers that start with the national prefix.
- Updating formatNumberForMobileDialing to work with short numbers.
- Stop finding Israeli 4-digit "star" numbers in text when no star is in fact present.
- Bug fix for finding phone numbers where the area code was also part of the country
calling code.
* Metadata changes:
- Updated phone metadata for region code(s):
AU, BQ, BY, CI, CO, CW, GN, HN, IN, JO, KI, KW, MG, MK, MM, NA, PK, TC, TM,
UG
- New short number metadata for region code(s): CD, GN
- Updated short number metadata for region code(s):
AF, AG, AI, AM, AR, AS, AW, AZ, BD, BH, BI, BM, BO, BQ, BT, BW, BY, CA, CH,
CI, CM, CO, CW, DZ, FJ, GD, GE, GH, GT, GY, HN, HT, ID, IE, IM, IN, IQ, JM,
JO, KE, KG, KH, KI, KW, KZ, LR, SV
- New geocoding data for country calling code(s):
257 (en), 389 (en), 599 (en), 686 (en), 962 (en)
- Updated geocoding data for country calling code(s):
264 (en), 375 (be, en, ru)
- New carrier data for country calling code(s):
375 (be, ru), 389 (en), 599 (en), 965 (ar)
- Updated carrier data for country calling code(s):
57 (en), 61 (en), 92 (en), 225 (en), 256 (en), 257 (en), 261 (en), 375 (en),
686 (en), 962 (en), 965 (en)
Oct 10, 2013: libphonenumber-5.8.8
* Metadata changes:
- New alternate formatting data for country calling code(s):
350, 358, 36, 66, 84, 94, 995
- Updated alternate formatting data for country calling code(s):
31, 359, 372, 49, 62, 7
- Updated phone metadata for region code(s):
AR, BD, BE, BF, BR, CO, CR, FI, GI, GM, IS, MU
- Updated short number metadata for region code(s): AR, BE, ES, GI, PG, US
- Updated geocoding data for country calling code(s): 220 (en)
- Updated carrier data for country calling code(s):
20 (en), 220 (en), 224 (en), 230 (en), 852 (en)
Oct 8, 2013: libphonenumber-5.8.7
* Code changes:
- New method in the PhoneNumberUtil API - isMobileNumberPortableRegion.
- Carrier mapper: Updated API and added a getSafeDisplayName method that only returns the carrier
if it's safe to display to the user.
Oct 7, 2013:
* Code changes:
- Added PhoneNumberToTimeZonesMapper including unittests to the geocoder maven project.
- Added build rules for generating the binary time zones mapping file from the text file.
- Modified PhoneNumberParserServlet.java (the appengine demo) to incorporate time zone mapping.
* Metadata changes:
- Added the time zone mapping file.
Sep 30, 2013:
* Code changes:
- Added PhoneNumberToCarrierMapper including unittests.
- Added build rules for generating binary carrier mapping files from text files.
- Modified PhoneNumberParserServlet.java (the appengine demo) to incorporate carrier mapping.
* Metadata changes:
- Added carrier mapping files for some NANPA countries, EG, SS, MA, DZ, TN, GM, SN, MR, ML, GN,
CI, BF, NE, TG, BJ, MU, LR, SL, GH, NG, TD, CF, CM, CV, ST, GQ, GA, CG, CD, AO, GW, SC, SD, RW,
ET, SO, DJ, KE, TZ, UG, BI, MZ, ZM, MG, ZW, MW, BW, SZ, ZA, AW, FO, GL, GR, NL, BE, FR, GI, PT,
LU, IE, AL, CY, FI, BG, HU, LT, EE, AM, BY, AD, UA, RS, HR, SI, BA, IT, RO, CH, CZ, SK, AT, DK,
NO, PL, DE, BZ, CR, PE, CU, AR, BR, CL, CO, VE, BO, PY, SR, UY, MY, AU, ID, PH, NZ, SG, TH, TL,
BN, PG, TO, VU, FJ, WS, KI, RU, VN, HK, KH, LA, CN, BD, TR, IN, PK, AF, LK, MV, JO, IQ, KW, SA,
YE, OM, PS, AE, IL, BH, QA, BT, NP, IR, TJ, TM, AZ, GE, KG and UZ in English.
Sep 23, 2013: libphonenumber-5.8.6
* Code changes:
- Restructured the geocoder binary generation code, moving the classes under tools/ from
geocoding/ to buildtools/ and renaming AreaCode to PhonePrefix.
Sep 23, 2013: libphonenumber-5.8.5
* Code changes:
- Restructured the geocoder, moving the utility classes to a new module internal/prefixmapper.
Sep 20, 2013: libphonenumber-5.8.4
* Metadata changes:
- Adding a token to indicate which countries have mobile portability.
Sep 20, 2013: libphonenumber-5.8.3
* Code changes:
- PhoneNumberOfflineGeocoder: Moved utility functionality to PrefixFileReader.
- Bug fix: Argentinian (and other countries with mobile tokens) mobile numbers now geocode
correctly.
Sep 19, 2013: libphonenumber-5.8.2
* Code changes:
- New method in the PhoneNumberUtil API - getCountryMobileToken.
Sep 19, 2013: libphonenumber-5.8.1
* Metadata changes:
- New alternate formatting data for country calling code(s): 675
- Updated phone metadata for region code(s):
AO, AU, BF, BW, CA, CH, CI, CN, DE, FR, MA, MR, MU, NI, PG, SA, SE, US, VI
- New short number metadata for region code(s): IQ
- Updated short number metadata for region code(s):
AU, BR, DO, EG, FR, GH, ID, IL, JM, KE, KZ, LR, MW, NG, NI, SA, SE, SL, TZ, US, UZ
- New geocoding data for country calling code(s):
966 (ar, en), 1 (en)
Sep 2, 2013: libphonenumber-5.8
* Code changes:
- Renamed ShortNumberUtil to ShortNumberInfo -> the former class is now deprecated and will be
deleted in a later release. At the moment it just delegates to ShortNumberInfo.
- New methods in the ShortNumberInfo API - isCarrierSpecific, singleton interface,
isPossibleShortNumber, isValidShortNumber, getShortNumberCost. Note this is an experimental API
at the moment and subject to change.
- Bug fixes:
-- AsYouTypeFormatting: 3-digit numbers can be formatted as a group where appropriate
-- AsYouTypeFormatting: Countries with an optional national prefix were considered before to
have always entered it, resulting in bugs where numbers without the national prefix were
not properly formatted.
-- Numbers in Chile that overlap with emergency numbers are no longer marked as connecting to
them
-- Not requiring the NDC to be alone for countries where there is no national prefix in strict
grouping when extracting phone numbers
* Metadata changes:
- New alternate formatting data for country calling code(s):
30, 31, 385, 58, 62, 63, 971, 972
- Updated alternate formatting data for country calling code(s): 43, 44, 49
- Moved emergency phone number data to the ShortNumberMetadata.xml file
- Updated phone metadata for region code(s):
AT, EG, ML, NC, NL, SA
- New short number metadata for region code(s):
AR, CL, CO, ES, MX, NC
- Emergency metadata fixes for region code(s):
GA, JM, MH, VE
Aug 09, 2013: libphonenumber-5.7.2
* Metadata changes:
- New alternate formatting data for country calling code(s):
352, 359, 372, 373, 375, 595, 7, 855
- Updated phone metadata for region code(s):
AR, BF, BH, BR, BY, CH, CM, CN, GE, GW, HN, JM, KH, LT, LU, MU, NP, RO, SO
- New short number metadata for region code(s): BR
- Updated short number metadata for region code(s):
CH, FJ, GB, GG, IM, IT, JE, SH
Aug 8, 2013: libphonenumber-5.7.1
* Metadata/code changes:
- Change to the way the metadata is built; now only parts of the proto that are relevant will be
generated. This means short-code data won't be generated for the normal protos, and fixed-line
data won't be generated for short-number protos. This cuts the metadata binary size approximately
in half.
Jul 17, 2013: libphonenumber-5.7
* Code changes:
- Improve phone number extraction recall.
- Add support for loading short number metadata.
Jul 16, 2013: libphonenumber-5.6.2
* Metadata changes:
- Updated alternate formatting data for country calling code(s): 49, 61
- New metadata for region code(s): TA
- Updated metadata for region code(s):
BF, BH, BI, BJ, BR, CR, EH, GA, GE, GN, GU, IL, IN, IR, KH, KW, KZ, MA, MT,
NA, NE, NL, PH, RO, SH, SO, TK
- New geocoding data for country calling code(s): 47 (en), 82 (ar)
- Updated geocoding data for country calling code(s):
49 (en), 98 (en, fa), 241 (en)
Jul 12, 2013: libphonenumber-5.6.1
* Code changes:
- Rename all instances of PhoneNumberMetadata to PhoneNumberMetadata for consistency.
Jun 05, 2013: libphonenumber-5.6
* Code changes:
- Fix for as-you-type-formatting bug affecting countries with no national prefix
formatting rule, such as China.
* Metadata changes:
- New alternate formatting data for country calling code(s): 351
- Updated alternate formatting data for country calling code(s): 49
- Updated metadata for region code(s):
AS, BG, BH, BJ, BL, CD, CI, DE, DZ, EH, FJ, GF, GP, IN, KH, KZ, MA, MD, MF,
ML, MY, NG, PT, PY, TC, TJ, TT
May 08, 2013: libphonenumber-5.5
* Code changes:
- Changed internal initialization code and made more fields final.
Note that we now throw an exception if an attempt is made to set the
metadata more than once (which should only happen during testing).
- Fix problem with formatNumberForMobileDialing for HU and CL.
* Metadata changes:
- Updated alternate formatting data for country calling code(s): 49
- Updated metadata for region code(s):
AM, BF, BR, CR, DE, MA, MG, MM, SA, TL, UA
- Updated geocoding data for country calling code(s): 374 (am, en, ru)
Apr 19, 2013: libphonenumber-5.4.2
* Metadata changes:
- Updated metadata for region code(s): BF, GA, IN, KR, MV, PH, SO, UA, US
Mar 25, 2013: libphonenumber-5.4.1
* Metadata changes:
- Updated metadata for region code(s): BF, BH, CR, EC, IR, MG, PF, TD, TN
- New geocoding data for country calling code(s): 374 (am, ru)
- Updated geocoding data for country calling code(s):
98 (en, fa), 358 (en, se), 374 (en)
Mar 07, 2013: libphonenumber-5.4
* Code changes:
- Switch formatNumberForMobileDialing to prefer national format to international format when the
number is dialed from the same region the phone number is from.
* Metadata changes:
- Updated metadata for region code(s):
BF, CD, CN, CZ, GN, IR, JP, KR, KW, LR, NZ, TT, UG, ZW
- New geocoding data for country calling code(s): 82 (cs)
- Updated geocoding data for country calling code(s):
82 (en, fr, ko, zh, zh_Hant), 98 (en, fa), 263 (en)
Feb 11, 2013: libphonenumber-5.3.2
* Metadata changes:
- Updated metadata for region code(s):
BD, BE, BY, CA, EH, GR, IE, IN, IS, LI, MA, MU, PT, SE, SG, TL
- New geocoding data for country calling code(s):
375 (be, en, ru), 1 (en)
Jan 25, 2013: libphonenumber-5.3.1
* Metadata changes:
- Updated metadata for region code(s): CN, DK, EH, GN, KH, KW, MA, MY, PA
Jan 08, 2013: libphonenumber-5.3
* Code changes:
- Handling UAN numbers in Argentina better when dialling them locally from a
mobile
* Metadata changes:
- Updated metadata for region code(s):
BE, BW, CL, CN, CO, EH, KW, MA, ML, NG, PL, SY, ZA, ZM
- New geocoding data for country calling code(s): 32 (en, fr, nl)
- Updated geocoding data for country calling code(s): 27 (en), 86 (en, zh)
Dec 06, 2012: libphonenumber-5.2.2
* Metadata changes:
- New metadata for region code(s): EH
- Updated metadata for region code(s): BR, CL, CR, IN, MA, PG, PK, RO
- New geocoding data for country calling code(s): 241 (en)
Nov 26, 2012: libphonenumber-5.2.1
* Metadata changes:
- Updated metadata for region code(s):
AE, AW, BF, CN, DE, JO, KE, KH, LT, MM, MU, NG, RW, SR, TR, VU
- New geocoding data for country calling code(s): 359 (bg, en)
Oct 10, 2012: libphonenumber-5.2
* Code changes:
- Adds isNumberGeographical() method.
- Adds getRegionCodesForCountryCode() method.
- Fixing issue with getSupportedGlobalNetworkCallingCodes()
[https://github.com/googlei18n/libphonenumber/issues/202]
- Ensures that returned collections are unmodifiable where necessary
[there is a very slight risk that this may break existing users who were relying on being able
to modify these collections, but doing so would be breaking lots of other assumptions that this
library makes - if you need to modify any affected collections you must copy them first]
* Metadata changes:
- Updated metadata for region code(s): DE, GR, HR, OM, SB, ZA
- Removed metadata for region code: AN (Netherlands Antilles)
- Updated geocoding data for country calling code(s): 30 (el, en)
Sep 27, 2012: libphonenumber-5.1.4
* Metadata changes:
- Updated metadata for region code(s): AU, EC, KH, LB, TN, US
Sep 17, 2012: libphonenumber-5.1.3
* Metadata changes:
- Updated metadata for region code(s): EG, LA, LB, LI, PY
- Updated metadata for non-geographical calling codes: 800, 808, 888, 979
- Updated geocoding data for country calling code(s): 98 (en), 1 (en)
Sep 11, 2010: libphonenumber-5.1.2
* Bug fix:
- Fixing regression in AsYouTypeFormatter where it no longer worked for numbers entered in national
format for countries with no national prefix, e.g. Spain.
Sep 5, 2010: libphonenumber-5.1.1
* Code changes:
- Added better logging/exception handling for catching cases where metadata is invalid/missing.
Sep 3, 2012: libphonenumber-5.1
* Code changes:
- Inserting a space after the national prefix in the AsYouTypeFormatter when formatting numbers in
national format, if the formatting rules for that country dictate that a space is appropriate.
- Format emergency numbers and short-codes as a block in the AsYouTypeFormatter.
* Metadata changes:
- Updated metadata for region code(s): BF, BG, DZ, GA, IT, JP, KW, PF
Aug 20, 2012: libphonenumber-5.0.3
* Metadata changes:
- New alternate formatting data for country calling code(s): 43
- Updated metadata for region code(s): AT, BF, JO, NG, RU, SL
- New geocoding data for country calling code(s): 62 (en, id), 98 (fa)
Aug 07, 2012: libphonenumber-5.0.2
* Metadata changes:
- Updated metadata for region code(s):
BF, CN, DJ, IL, JO, KH, KZ, MA, MT, MV, MY, NC, NG, SD, SK, SN, TL, UZ
- New geocoding data for country calling code(s): 7 (ru), 98 (en)
- Updated geocoding data for country calling code(s): 7 (en)
July 26th, 2012: libphonenumber-5.0.1
* Metadata changes
- CL, DE ,IN, KR, US
- New geocoding data for country calling codes 40, 57, 66, 82, 91.
- Fixed comments for 353 (IE).
July 12th, 2012: libphonenumber-5.0
* Code changes:
- Support for alternate formats when finding phone numbers.
- Allowing two-digit numbers to be parsed if they are entered in national-format with no
punctuation
* Metadata changes
- IL, GA
* Other
- Reflowed this file to 100 char width to make it unambiguous as to what the standard should be.
July 6th, 2012: libphonenumber-4.9.1
* Metadata changes
- AR, BA, BF, CR, DE, EC, ES, KZ, MK, NC, NG, PF, SB, UZ, non-geo entity 882
- Geocoding data updates for country calling codes 54 (AR) and 81 (JP), new data for 234 (NG)
June 21st, 2012: libphonenumber-4.9
* Bug fix
- formatInOriginalFormat fixed not to add a star sign if it was not present originally.
* Metadata changes
- BF, CZ, ES, KW
- Non-geographical entities with calling code 882 (BebbiCell, Maritime Communications, Oration
Technologies, Telespazio and Thuraya)
- Geocoding data updates for country calling codes 221, 224, 226, 242, 244, 245
* Functionality changes:
- Minimum allowed length for a national significant number (NSN) when parsing changed from 3 to 2.
- Support parsing of RFC3966-formatted strings with an isdn-subaddress or extra parameters
specified.
- Allow soft hyphen to appear in phone numbers (\u00AD)
* Testing changes:
- Add extra unit tests for non-geographical phone number entities