[PR #63] [MERGED] fix(deps): bump libphonenumber-js from 1.10.15 to 1.10.17 in /web #122

Closed
opened 2026-03-03 16:36:51 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/NdoleStudio/httpsms/pull/63
Author: @dependabot[bot]
Created: 1/9/2023
Status: Merged
Merged: 1/11/2023
Merged by: @AchoArnold

Base: mainHead: dependabot/npm_and_yarn/web/libphonenumber-js-1.10.17


📝 Commits (1)

  • 5790085 fix(deps): bump libphonenumber-js from 1.10.15 to 1.10.17 in /web

📊 Changes

3 files changed (+12 additions, -12 deletions)

View changed files

📝 web/package-lock.json (+7 -7)
📝 web/package.json (+1 -1)
📝 web/yarn.lock (+4 -4)

📄 Description

Bumps libphonenumber-js from 1.10.15 to 1.10.17.

Changelog

Sourced from libphonenumber-js's changelog.

1.10.17 / 08.01.2023

  • Added PhoneNumber.getPossibleCountries() function. It returns a list of countries this phone number could possibly belong to. Can be used when parsing complete international phone numbers containing a "calling code" that is shared between several countries. If parsing such a phone number returns country: undefined then getPossibleCountries() function could be used to somehow speculate about what country could this phone number possibly belong to.

1.10.0 / 18.05.2022

  • Migrated the library to use "ES Modules" export. This shouldn't break anyone's code and it makes it more modern since people asked about this feature.

1.9.48 / 06.02.2022

1.9.45 / xx.01.2022

  • Added AsYouType.getNumberValue() function. The function will be used in react-phone-number-input component. Returns the phone number in E.164 format. For example, for country "US" and input "(222) 333-4444" it will return "+12223334444". Will return undefined if no digits have been input, or when inputting a phone number in national format and no default country or default "country calling code" have been set.

1.9.42 / 05.11.2021

  • Added a better called alias for metadata.full.jsonmetadata.max.json.

1.9.40 / 02.11.2021

  • Improved format selection in AsYouType formatter: previously it chose the first one before there were at least 3 national (significant) number digits, now it starts filtering out formats right from the start of the national (significant) number.

1.9.36 / 05.10.2021

  • Added a setExt(ext: string) function of a PhoneNumber class instance. It could be useful when formatting phone numbers stored as two separate fields: the phone number itself and the extension part.

1.9.27 / 09.09.2021

  • Added TypeScript "typings" on the exported Metadata class. Also rewrote Metadata class API docs and the description of leading_digits metadata property.

  • TypeScript Metadata exported type was renamed to MetadataJson so that the Metadata class type could be exported as Metadata.

1.9.26 / 05.09.2021

  • Added validatePhoneNumberLength() function: same as isPossiblePhoneNumber() but tells the actual reason why a phone number is not possible: TOO_SHORT, TOO_LONG, INVALID_LENGTH, etc.
validatePhoneNumberLength('abcde') === 'NOT_A_NUMBER'
validatePhoneNumberLength('444 1 44') === 'INVALID_COUNTRY'
</tr></table> 

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/NdoleStudio/httpsms/pull/63 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 1/9/2023 **Status:** ✅ Merged **Merged:** 1/11/2023 **Merged by:** [@AchoArnold](https://github.com/AchoArnold) **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/web/libphonenumber-js-1.10.17` --- ### 📝 Commits (1) - [`5790085`](https://github.com/NdoleStudio/httpsms/commit/5790085cde4f9e2c9cfb7eb7ddd20491af2c2489) fix(deps): bump libphonenumber-js from 1.10.15 to 1.10.17 in /web ### 📊 Changes **3 files changed** (+12 additions, -12 deletions) <details> <summary>View changed files</summary> 📝 `web/package-lock.json` (+7 -7) 📝 `web/package.json` (+1 -1) 📝 `web/yarn.lock` (+4 -4) </details> ### 📄 Description Bumps [libphonenumber-js](https://gitlab.com/catamphetamine/libphonenumber-js) from 1.10.15 to 1.10.17. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://gitlab.com/catamphetamine/libphonenumber-js/blob/master/CHANGELOG.md">libphonenumber-js's changelog</a>.</em></p> <blockquote> <h1>1.10.17 / 08.01.2023</h1> <ul> <li><a href="https://github-redirect.dependabot.com/catamphetamine/libphonenumber-js/issues/420">Added</a> <code>PhoneNumber.getPossibleCountries()</code> function. It returns a list of countries this phone number could possibly belong to. Can be used when parsing complete international phone numbers containing a &quot;calling code&quot; that is shared between several countries. If parsing such a phone number returns <code>country: undefined</code> then <code>getPossibleCountries()</code> function could be used to somehow speculate about what country could this phone number possibly belong to.</li> </ul> <h1>1.10.0 / 18.05.2022</h1> <ul> <li>Migrated the library to use <a href="https://gitlab.com/catamphetamine/libphonenumber-js/-/issues/42">&quot;ES Modules&quot; export</a>. This shouldn't break anyone's code and it makes it more modern since people asked about this feature.</li> </ul> <h1>1.9.48 / 06.02.2022</h1> <ul> <li>Merged a <a href="https://gitlab.com/catamphetamine/libphonenumber-js/-/merge_requests/8">pull request</a> that <a href="https://github-redirect.dependabot.com/catamphetamine/libphonenumber-js/issues/170#issuecomment-1030821520">changed the declaration</a> of basic &quot;string&quot; types like <code>E164Number</code>, <code>NationalNumber</code>, <code>Extension</code>, etc.</li> </ul> <h1>1.9.45 / xx.01.2022</h1> <ul> <li>Added <code>AsYouType.getNumberValue()</code> function. The function will be <a href="https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/113">used</a> in <code>react-phone-number-input</code> component. Returns the phone number in <a href="https://en.wikipedia.org/wiki/E.164"><code>E.164</code></a> format. For example, for country <code>&quot;US&quot;</code> and input <code>&quot;(222) 333-4444&quot;</code> it will return <code>&quot;+12223334444&quot;</code>. Will return <code>undefined</code> if no digits have been input, or when inputting a phone number in national format and no default country or default &quot;country calling code&quot; have been set.</li> </ul> <h1>1.9.42 / 05.11.2021</h1> <ul> <li>Added a better called alias for <code>metadata.full.json</code> — <code>metadata.max.json</code>.</li> </ul> <h1>1.9.40 / 02.11.2021</h1> <ul> <li>Improved <a href="https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/93">format selection</a> in <code>AsYouType</code> formatter: previously it chose the first one before there were at least 3 national (significant) number digits, now it starts filtering out formats right from the start of the national (significant) number.</li> </ul> <h1>1.9.36 / 05.10.2021</h1> <ul> <li>Added a <a href="https://gitlab.com/catamphetamine/libphonenumber-js/#setextext-string"><code>setExt(ext: string)</code></a> function of a <code>PhoneNumber</code> class instance. It could be useful when formatting phone numbers stored as two separate fields: the phone number itself and the extension part.</li> </ul> <h1>1.9.27 / 09.09.2021</h1> <ul> <li> <p><a href="https://gitlab.com/catamphetamine/libphonenumber-js/-/issues/45">Added</a> TypeScript &quot;typings&quot; on the exported <code>Metadata</code> class. Also rewrote <code>Metadata</code> class API <a href="https://gitlab.com/catamphetamine/libphonenumber-js#metadata">docs</a> and the description of <a href="https://gitlab.com/catamphetamine/libphonenumber-js/blob/master/METADATA.md#leading_digits"><code>leading_digits</code></a> metadata property.</p> </li> <li> <p>TypeScript <code>Metadata</code> exported type was renamed to <code>MetadataJson</code> so that the <code>Metadata</code> class type could be exported as <code>Metadata</code>.</p> </li> </ul> <h1>1.9.26 / 05.09.2021</h1> <ul> <li><a href="https://github-redirect.dependabot.com/catamphetamine/libphonenumber-js/issues/406">Added</a> <code>validatePhoneNumberLength()</code> function: same as <code>isPossiblePhoneNumber()</code> but tells the actual reason why a phone number is not possible: <code>TOO_SHORT</code>, <code>TOO_LONG</code>, <code>INVALID_LENGTH</code>, etc.</li> </ul> <pre lang="js"><code>validatePhoneNumberLength('abcde') === 'NOT_A_NUMBER' validatePhoneNumberLength('444 1 44') === 'INVALID_COUNTRY' &lt;/tr&gt;&lt;/table&gt; </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://gitlab.com/catamphetamine/libphonenumber-js/commit/7d634bf3b64af33014880fc7bf89a49fcb61d870"><code>7d634bf</code></a> 1.10.17</li> <li><a href="https://gitlab.com/catamphetamine/libphonenumber-js/commit/efac6789deb2744ca34870ae675f0db3440de2c6"><code>efac678</code></a> <a href="https://gitlab.com/catamphetamine/libphonenumber-js/issues/420">#420</a>. Added <code>PhoneNumber.getPossibleCountries()</code> function</li> <li><a href="https://gitlab.com/catamphetamine/libphonenumber-js/commit/16e49aff5c834b42f9bf6a2467741040cb14eafd"><code>16e49af</code></a> Updated links in metadata docs</li> <li><a href="https://gitlab.com/catamphetamine/libphonenumber-js/commit/afedd2e535c87564fcfd862c43ff7514fb2d5cd4"><code>afedd2e</code></a> Added phone number type descriptions</li> <li><a href="https://gitlab.com/catamphetamine/libphonenumber-js/commit/c46152bfbdd2cc8101aa5373ba1854b659a8fdc4"><code>c46152b</code></a> Updated <code>leading_digits</code> description</li> <li><a href="https://gitlab.com/catamphetamine/libphonenumber-js/commit/ed03cb6344cc939f9cc4378707d98cec0b703f96"><code>ed03cb6</code></a> 1.10.16</li> <li><a href="https://gitlab.com/catamphetamine/libphonenumber-js/commit/9cc3df95c8bb1d27dbd65d8a10b3b6d7c30b0877"><code>9cc3df9</code></a> Updated metadata</li> <li>See full diff in <a href="https://gitlab.com/catamphetamine/libphonenumber-js/compare/v1.10.15...v1.10.17">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=libphonenumber-js&package-manager=npm_and_yarn&previous-version=1.10.15&new-version=1.10.17)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 16:36:51 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/httpsms#122
No description provided.