Releases: google/libphonenumber
v8.8.7
Hi all,
Please find the new JARs on the maven site here.
The new release contains mostly metadata changes.
Thanks to all those who contributed by providing issue reports!
See detailed release notes.
Want to be notified of future releases? Join the discussion group!
v8.8.6
Hi all,
Please find the new JARs on the maven site here.
The new release contains mostly metadata changes.
Thanks to all those who contributed by providing issue reports!
See detailed release notes.
Want to be notified of future releases? Join the discussion group!
v8.8.5
Hi all,
Please find the new JARs on the maven site here.
The new release contains mostly metadata changes. Thanks to all those who contributed by providing issue reports! See detailed release notes.
Want to be notified of future releases? Join the discussion group!
v8.8.4
Hi all,
Please find the new JARs on the maven site here.
The new release contains mostly metadata changes. Thanks to all those who contributed by providing issue reports!
See detailed release notes.
Porters only:
These changes affect porters who build the C++ metadata themselves (e.g. cpp/src/phonenumbers/metadata.cc
) using our build tools:
- Backwards-incompatible: the
protobuf-java
dependency used to build the C++ metadata changed from 2.5.0 to 3.0.0.- If you run
mvn package
from a directory abovetools/java/cpp-build/pom.xml
, you need to either installprotoc
such that the version is 3.0.0, or update thepom.xml
in your clone to the version number you're using.
- If you run
- Deprecation fix: C++ geocoding build tools now use
readdir
, sincereaddir_r
is deprecated.
Want to be notified of future releases? Join the discussion group!
v8.8.3
Hi all,
Please find the new JARs on the maven site here.
The new release contains mostly metadata changes.
Thanks to all those who contributed by providing issue reports!
See detailed release notes.
Want to be notified of future releases? Join the discussion group!
v8.8.2
Hi all,
Please find the new JARs on the maven site here.
The new release contains mostly metadata changes.
Thanks to all those who contributed by providing issue reports!
See detailed release notes.
Want to be notified of future releases? Join the discussion group!
v8.8.1
Hi all,
Please find the new JARs on the maven site here.
The new release contains mostly metadata changes.
Thanks to all those who contributed by providing issue reports!
See detailed release notes.
Want to be notified of future releases? Join the discussion group!
v8.8.0
Hi all,
Please find the new JARs on the maven site here.
The new release contains metadata changes and some code changes. Upgrading to the latest release is always encouraged since phone number information changes often!
New functionality in this release:
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. Add constants for C++ PhoneNumberUtil enums' max values.
Full details in the release notes.
Note if you take advantage of this new functionality by changing your code, it will not necessarily be trivially easy to roll back to a previous version.
Thanks to all those who contributed by providing issue reports!
Want to be notified of future releases? Join the discussion group!
v8.7.1
Hi all,
Please find the new JARs on the maven site here.
The new release contains mostly metadata changes.
Thanks to all those who contributed by providing issue reports!
See detailed release notes.
Want to be notified of future releases? Join the discussion group!
v8.7.0
Hi all,
Please find the new JARs on the maven site here.
The new release contains metadata changes and some code changes. Upgrading to the latest release is always encouraged since phone number information changes often!
New functionality in this release:
- New
getSupportedCallingCodes()
API in C++, Java, and JS to return all the calling codes that the library considers valid, both for geographical and non-geographical entities. - New
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. - Java public APIs that used to take in strings representing phone numbers or parts of phone numbers now take in
CharSequence
instead. This affectsShortNumberInfo
andPhoneNumberUtil
.
Heads-up:
- In
phonenumberutil.h
, we removed most of theusing std::*
statements, leaving onlyusing std::string
, and changingphonenumberutil.cc
andphonenumberutil_test.cc
to prefixstd::
for other usage in the code. If you were relying on these using statements, your build will likely stop compiling. This is not considered a breaking library change since depending on these is not considered good C++ practice, hence our not changing the major version number with this change; however if you were relying on us exporting these symbols, you will have to make similar changes to prefix the relevant std collections appropriately.
Porters only:
- The
is_sms_service
metadata is serialized for the first time in C++ and JS metadata. - Documentation update for private variables
VALID_PUNCTUATION
andSINGLE_INTERNATIONAL_PREFIX
, also renaming the latter fromUNIQUE_INTERNATIONAL_PREFIX
.
Full details in the release notes.
Note if you take advantage of this new functionality by changing your code,
it will not necessarily be trivially easy to roll back to a previous version.
Thanks to all those who contributed by providing issue reports and pull requests!
Want to be notified of future releases? Join the discussion group!