Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency intl-tel-input to v23 #3319

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 11, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
intl-tel-input (source) 17.0.13 -> 23.0.4 age adoption passing confidence

Release Notes

jackocnr/intl-tel-input (intl-tel-input)

v23.0.4

Compare Source

Update LPN to v8.13.36

v23.0.3

Compare Source

Fix strictMode issue: type max len number, select all, can't type 0

v23.0.2

Compare Source

  • New package.json exports

v23.0.1

Compare Source

  • validationNumberType (see v23.0.0 release notes)

v23.0.0

Compare Source

  • utilsScript option and loadUtils method now load the utils script using a dynamic import as opposed to injecting a new script tag.
  • To make this work, the utils script (build/js/utils.js) is now an ES Module, which no longer uses any globals, like window.intlTelInputUtils (etc). This means it will no longer work to pre-load the utils script yourself, hence the new bundles (see next point).
  • For those who are not worried about file size, we now provide two bundles which include the utils script: build/js/intlTelInputWithUtils.js and react/build/IntlTelInputWithUtils.js. If you're using ES Modules, you can import these as "intl-tel-input/intlTelInputWithUtils" and "intl-tel-input/reactWithUtils" respectively (TypeScript types included in the regular declaration files).
  • New option validationNumberType which defaults to "MOBILE" - this determines the number type to enforce during validation with isValidNumber, as well as the number length to enforce with strictMode. This replaces the mobileOnly argument which you could previously pass to isValidNumber. (this change snuck in in v23.0.1 very quickly after releasing v23.0.0)

v22.0.2

Compare Source

v22.0.1

Compare Source

Switch translation files from .mjs to .js to increase compatibility e.g. esbuild

v22.0.0

Compare Source

  • Dropped showSelectedDialCode in favour of new separateDialCode option
  • Dropped countrySearch option (leaving it enabled)
  • Dropped preferredCountries option in favour of new countryOrder option
  • Moved global variables window.intlTelInputGlobals and window.intlTelInputUtils to static variables on intlTelInput object e.g. intlTelInput.getCountryData() and intlTelInput.utils.getValidationError()
  • Switch translation files from .mjs to .js to increase compatibility e.g. esbuild

v21.2.8

Compare Source

v21.2.7

Compare Source

  • minor bug fix

v21.2.6

Compare Source

  • Improve translation exports - thanks @​anthony0030!
  • Update to libphonenumber v8.13.35

v21.2.5

Compare Source

  • Dont override window.intlTelInputGlobals if already exists

v21.2.4

Compare Source

v21.2.3

Compare Source

  • Move translations out of data.js

v21.2.2

Compare Source

  • Add ZH locale
  • Add AC and XK country names in all translation files (currently not supported by country-list lib)

v21.2.1

Compare Source

  • Fix package.json path

v21.2.0

Compare Source

  • Provide translation modules for several common languages - BIG THANKS to @​anthony0030 🎈 🍰

v21.1.4

Compare Source

Add new CA dial code

v21.1.3

Compare Source

Fix globe icon

v21.1.2

Compare Source

Expose react CJS module

v21.1.1

Compare Source

Fix package.json exports

v21.1.0

Compare Source

  • Significant reduction in CSS filesize
  • Lots of other improvements under the hood e.g. linting/spelling/formatting fixes

With thanks to @​anthony0030

Full Changelog: jackocnr/intl-tel-input@v21.0.9...v21.1.0

v21.0.9

Compare Source

TS declaration setup v6

v21.0.8

Compare Source

Try re-adding types entry in package.json

v21.0.7

Compare Source

Bump libphonenumber

v21.0.6

Compare Source

TS declaration setup v5

v21.0.5

Compare Source

TS declaration setup v4

v21.0.4

Compare Source

v21.0.3

Compare Source

TS declaration setup v3

v21.0.2

Compare Source

  • Fixes and testing different TS declaration setup

v21.0.1

Compare Source

Fixes

v21.0.0

Compare Source

BREAKING CHANGES

  • Remove legacy jQuery version of the plugin
  • Remove Sass variables in favour of CSS variables (thanks @​anthony0030)
    • NOTE: upgrading users are recommended to update their CSS overrides to use the new CSS variables instead where possible - see CSS file for details
  • React component: drop CommonJS build (IntlTelInput.cjs.js) and rename ES Modules build from IntlTelInput.esm.js to IntlTelInput.js
  • React component: remove redundant react props: placeholder, className, disabled, onFocus, onBlur (instead use inputProps)
  • Switch selected-flag div to be a <button> instead of just having role="button" attribute
  • Rename HTML/CSS classes: selected-flag => selected-country and flag-container => country-container

OTHER CHANGES

  • Use Esbuild instead of grunt plugins (template/concat/uglify) to build JS
  • Use ES modules internally
  • Use Typescript internally (type declaration files can be found in build/js/ and react/build/js/ dirs)
  • Update libphonenumber to v8.13.33 (thanks @​anthony0030)
  • Add a way to automatically download the correct version of node (thanks @​anthony0030)

v20.3.0

Compare Source

  • Remove babel build step as no longer needed

v20.2.0

Compare Source

  • Added strictMode option

v20.1.0

Compare Source

  • React component: support inputProps prop

v20.0.5

Compare Source

  • a11y fix - see commits

v20.0.4

Compare Source

Cleanup

v20.0.3

Compare Source

  • Bump libphonenumber to v8.13.32

v20.0.2

Compare Source

  • Build CSS

v20.0.1

Compare Source

Fixes

v20.0.0

Compare Source

BREAKING CHANGES

  • Limit the number of files installed with intl-tel-input (as a dependency) - more details here
  • Update the ARIA tags to work with countrySearch (there are 4 new translation keys in i18n option - see readme)
  • Remove defaultToFirstCountry option as that behaviour was causing problems and so is not recommended (you can always use initialCountry to set the initial country if you wish to)
  • By default, calling isValidNumber will now default to mobile-only mode (it will only return true for valid mobile numbers), which means it will be much more accurate - if you don't want this, you can pass false as an argument e.g. isValidNumber(false)
  • Removed legacy Promise checks, as they are now supported in all modern browsers
  • Remove autoInsertDialCode feature, preferring showSelectedDialCode
  • Simplified hiddenInput option so it must return an object - see readme
  • Validation methods now return false if the number contains an alphabetic character

NON BREAKING CHANGES

v19.5.7

Compare Source

Fixes

v19.5.6

Compare Source

  • mobileOnly flag for isValidNumber

v19.5.5

Compare Source

Fixes

v19.5.4

Compare Source

Fixes

v19.5.3

Compare Source

v19.5.2

Compare Source

v19.5.1

Compare Source

v19.5.0

Compare Source

  • New globe icon

v19.4.0

Compare Source

  • improve hiddenInput to allow returning an object (see readme)

v19.3.0

Compare Source

  • defaultToFirstCountry option

v19.2.20

Compare Source

  • Fixes

v19.2.19

Compare Source

v19.2.18

Compare Source

Fixes

v19.2.17

Compare Source

v19.2.16

Compare Source

Fixes

v19.2.15

Compare Source

Full Changelog: jackocnr/intl-tel-input@v19.2.14...v19.2.15

v19.2.14

Compare Source

Handle accented chars in search

v19.2.13

Compare Source

Tweaks

v19.2.12

Compare Source

Fixes

v19.2.11

Compare Source

Build stuff

v19.2.8

Compare Source

Fixes

v19.2.7

Compare Source

Fixes

v19.2.6

Compare Source

Fixes

v19.2.5

Compare Source

Fixes

v19.2.3

Compare Source

v19.2.2

Compare Source

v19.2.1

Compare Source

v19.2.0

Compare Source

v19.1.1

Compare Source

v19.1.0

Compare Source

v19.0.2

Compare Source

Bugfix

v19.0.1

Compare Source

v19.0.0

Compare Source

v18.5.3

Compare Source

v18.5.2

Compare Source

v18.5.1

Compare Source

Fixes

v18.5.0

Compare Source

v18.4.0

Compare Source

v18.3.5

Compare Source

  • Fix getValidationError returning -99 for 1-digit numbers
  • Fix popup position when only showing a few countries

v18.3.4

Compare Source

What's Changed

New Contributors

Full Changelog: jackocnr/intl-tel-input@v18.3.3...v18.3.4

v18.3.3

Compare Source

-Fix tests

v18.3.2

Compare Source

-Re-add Western Sahara - see discussion here:https://github.com/jackocnr/intl-tel-input/pull/14844

v18.3.1

Compare Source

-Fixing non compliant divider in country dropdown

v18.3.0

Compare Source

-remove western sahara country
-useFullscreenPopup option
-update libphonenumber to v8.13.26

v18.2.1

Compare Source

v18.2.0

Compare Source

Add isPossibleNumber method

v18.1.8

Compare Source

v18.1.7

Compare Source

v18.1.6

Compare Source

What's Changed

New Contributors

Full Changelog: jackocnr/intl-tel-input@v18.1.5...v18.1.6

v18.1.5

Compare Source

v18.1.4

Compare Source

v18.1.3

Compare Source

v18.1.2

Compare Source

v18.1.1

Compare Source

Simplify nationalMode option. Previously, when nationalMode was set to false, the plugin was needlessly creating a worse UX for users who typed a valid national number in 2 situations: (1) it wouldn't update the flag between NANP countries if you typed a different area code (in national format), and (2) isValidNumber would return false for a valid national number.

v18.1.0

Compare Source

Add showFlags option

v18.0.3

Compare Source

v18.0.2

Compare Source

v18.0.1

Compare Source

v18.0.0

Compare Source

  • Remove autoHideDialCode option in favour of new autoInsertDialCode option
  • Allow nationalMode to be used with separateDialCode

v17.0.21

Compare Source

v17.0.20

Compare Source

v17.0.19

Compare Source

What's Changed

New Contributors

Full Changelog: jackocnr/intl-tel-input@v17.0.18...v17.0.19

v17.0.18

Compare Source

v17.0.16

Compare Source

v17.0.15

Compare Source

v17.0.14

Compare Source


Configuration

📅 Schedule: Branch creation - "every weekend" in timezone Europe/Paris, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label May 11, 2024
Copy link

socket-security bot commented May 11, 2024

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@babel/helper-environment-visitor@7.22.20 None 0 6.56 kB nicolo-ribaudo
npm/@babel/helper-hoist-variables@7.22.5 None 0 7.03 kB nicolo-ribaudo
npm/@babel/helper-split-export-declaration@7.22.6 None 0 10.7 kB nicolo-ribaudo
npm/@babel/helper-validator-option@7.23.5 None 0 11.7 kB nicolo-ribaudo
npm/@babel/plugin-proposal-unicode-property-regex@7.18.6 None 0 3.48 kB nicolo-ribaudo
npm/@babel/plugin-syntax-async-generators@7.8.4 None 0 2.52 kB nicolo-ribaudo
npm/@babel/plugin-syntax-class-properties@7.12.13 None 0 2.68 kB nicolo-ribaudo
npm/@babel/plugin-syntax-class-static-block@7.14.5 None 0 2.74 kB nicolo-ribaudo
npm/@babel/plugin-syntax-dynamic-import@7.8.3 None 0 2.47 kB nicolo-ribaudo
npm/@babel/plugin-syntax-export-namespace-from@7.8.3 None 0 2.62 kB nicolo-ribaudo
npm/@babel/plugin-syntax-import-meta@7.10.4 None 0 2.56 kB jlhwung
npm/@babel/plugin-syntax-json-strings@7.8.3 None 0 2.58 kB nicolo-ribaudo
npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4 None 0 2.74 kB jlhwung
npm/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3 None 0 2.63 kB nicolo-ribaudo
npm/@babel/plugin-syntax-numeric-separator@7.10.4 None 0 2.75 kB jlhwung
npm/@babel/plugin-syntax-object-rest-spread@7.8.3 None 0 2.53 kB nicolo-ribaudo
npm/@babel/plugin-syntax-optional-catch-binding@7.8.3 None 0 2.57 kB nicolo-ribaudo
npm/@babel/plugin-syntax-optional-chaining@7.8.3 None 0 2.52 kB nicolo-ribaudo
npm/@babel/plugin-syntax-private-property-in-object@7.14.5 None 0 2.82 kB nicolo-ribaudo
npm/@babel/plugin-syntax-top-level-await@7.14.5 None 0 2.74 kB nicolo-ribaudo
npm/@babel/plugin-syntax-unicode-sets-regex@7.18.6 None 0 3.4 kB nicolo-ribaudo
npm/@babel/regjsgen@0.8.0 None 0 15.4 kB nicolo-ribaudo
npm/@cspotcode/source-map-support@0.8.1 filesystem +1 194 kB cspotcode
npm/@esbuild/aix-ppc64@0.20.2 None 0 10.4 MB evanw
npm/@eslint-community/eslint-utils@4.4.0 None 0 379 kB eslint-community-bot
npm/@eslint-community/regexpp@4.10.0 None 0 431 kB eslint-community-bot
npm/@eslint/js@8.57.0 None 0 13.9 kB eslintbot
npm/@humanwhocodes/config-array@0.11.14 None 0 55.6 kB nzakas
npm/@humanwhocodes/module-importer@1.0.1 unsafe 0 21.2 kB nzakas
npm/@humanwhocodes/object-schema@2.0.3 None 0 23.3 kB nzakas
npm/@jest/schemas@29.6.3 None 0 6.07 kB simenb
npm/@jridgewell/set-array@1.2.1 None 0 17.9 kB jridgewell
npm/@jridgewell/sourcemap-codec@1.4.15 None 0 45.9 kB jridgewell
npm/@jridgewell/trace-mapping@0.3.25 None 0 169 kB jridgewell
npm/@pkgjs/parseargs@0.11.0 None 0 74.2 kB oss-bot
npm/@protobufjs/aspromise@1.1.2 None 0 9.05 kB dcode
npm/@protobufjs/base64@1.1.2 None 0 9.22 kB dcode
npm/@protobufjs/codegen@2.0.4 None 0 9.14 kB dcode
npm/@protobufjs/eventemitter@1.1.0 None 0 7.75 kB dcode
npm/@protobufjs/fetch@1.1.0 network 0 8.76 kB dcode
npm/@protobufjs/float@1.0.2 None 0 27 kB dcode
npm/@protobufjs/inquire@1.1.0 None 0 4.29 kB dcode
npm/@protobufjs/path@1.1.2 None 0 7.77 kB dcode
npm/@protobufjs/pool@1.1.0 None 0 6.25 kB dcode
npm/@protobufjs/utf8@1.1.0 None 0 23.5 kB dcode
npm/@sinclair/typebox@0.27.8 None 0 442 kB sinclair
npm/@tsconfig/node10@1.0.9 None 0 2.39 kB typescript-deploys
npm/@tsconfig/node12@1.0.11 None 0 2.5 kB typescript-deploys
npm/@tsconfig/node14@1.0.3 None 0 2.39 kB typescript-deploys
npm/@types/d3-color@3.1.0 None 0 28.2 kB types
npm/@types/d3-delaunay@6.0.1 None 0 14.5 kB types
npm/@types/d3-format@3.0.1 None 0 18.5 kB types
npm/@types/d3-interpolate@3.0.1 None 0 25 kB types
npm/@types/d3-time@3.0.3 None 0 30.7 kB types
npm/@types/estree@1.0.5 None 0 25.7 kB types
npm/@types/json-schema@7.0.15 None 0 31.7 kB types
npm/@types/json5@0.0.29 None 0 3 kB types
npm/@types/long@4.0.2 None 0 13.3 kB types
npm/@types/minimatch@3.0.5 None 0 8.2 kB types
npm/@ungap/structured-clone@1.2.0 None 0 26.2 kB webreflection
npm/@yarnpkg/lockfile@1.1.0 environment, eval, filesystem 0 280 kB arcanis
npm/abort-controller@3.0.0 None 0 76.3 kB mysticatea
npm/acorn-jsx@5.3.2 None 0 24.4 kB rreverser
npm/acorn@8.11.3 None 0 531 kB marijn
npm/agentkeepalive@4.5.0 network 0 43.7 kB fengmk2
npm/aggregate-error@3.1.0 None 0 6.69 kB sindresorhus
npm/ajv-formats@2.1.1 None 0 52.2 kB esp
npm/ansi-escapes@4.3.2 None +1 135 kB sindresorhus
npm/ansi-regex@6.0.1 None 0 5.67 kB qix
npm/any-promise@1.3.0 None 0 22.2 kB kevinbeaty
npm/anymatch@3.1.3 None 0 9.65 kB phated
npm/arg@4.1.3 None 0 12.9 kB qix
npm/arrify@1.0.1 None 0 2.34 kB sindresorhus
npm/asap@2.0.6 None 0 33.9 kB kriskowal
npm/asn1@0.2.6 None 0 19.8 kB bahamat
npm/assert-plus@1.0.0 environment 0 11.4 kB pfmooney
npm/asynckit@0.4.0 None 0 27.4 kB alexindigo
npm/atomic-sleep@1.0.0 None 0 6.57 kB davidmarkclements
npm/aws-sign2@0.7.0 None 0 14.2 kB mikeal
npm/aws4@1.12.0 environment 0 23.5 kB hichaelmart
npm/base64-js@1.5.1 None 0 9.62 kB feross
npm/big.js@5.2.2 None 0 63.9 kB mikemcl
npm/boolbase@1.0.0 None 0 1.33 kB feedic
npm/bowser@2.11.0 None 0 217 kB lancedikson
npm/braces@3.0.2 None 0 49.2 kB doowb
npm/buffer@5.7.1 None 0 82.5 kB feross
npm/busboy@1.6.0 None 0 124 kB mscdex
npm/callsites@3.1.0 None 0 6.33 kB sindresorhus
npm/caniuse-lite@1.0.30001616 None 0 2.05 MB caniuse-lite
npm/caseless@0.12.0 None 0 14.3 kB mikeal
npm/chardet@0.7.0 filesystem 0 74.8 kB runk
npm/chokidar@3.5.3 environment, filesystem 0 90.1 kB paulmillr
npm/chownr@2.0.0 filesystem 0 5.75 kB isaacs
npm/clean-stack@2.2.0 None 0 5.51 kB sindresorhus
npm/cli-cursor@3.1.0 None 0 4.37 kB sindresorhus
npm/clone@1.0.4 None 0 11.1 kB pvorb
npm/combined-stream@1.0.8 None 0 11.5 kB alexindigo
npm/concat-map@0.0.1 None 0 4.86 kB substack
npm/convert-source-map@1.9.0 filesystem 0 11.4 kB thlorenz
npm/core-util-is@1.0.3 None 0 4.98 kB isaacs
npm/create-require@1.1.1 filesystem, unsafe 0 6.25 kB pi0
npm/css-what@6.1.0 None 0 66 kB feedic
npm/d3-color@3.1.0 None 0 61.2 kB mbostock
npm/d3-format@3.1.0 None 0 57.8 kB mbostock
npm/d3-interpolate@3.0.1 None 0 69.7 kB mbostock
npm/d3-path@1.0.9 None 0 20.2 kB mbostock
npm/d3-scale@4.0.2 None 0 174 kB mbostock
npm/d3-time@3.1.0 None 0 64.5 kB mbostock
npm/dashdash@1.14.1 environment, filesystem 0 80.6 kB trentm
npm/deep-extend@0.6.0 None 0 9.19 kB unclechu
npm/deep-is@0.1.4 None 0 8.11 kB thlorenz
npm/deepmerge@4.3.1 None 0 31.2 kB tehshrike
npm/defaults@1.0.4 None 0 3.84 kB sindresorhus
npm/define-properties@1.2.1 None 0 12.9 kB ljharb
npm/delayed-stream@1.0.0 None 0 8.02 kB apechimp
npm/diff-sequences@29.6.3 None 0 46 kB simenb
npm/doctrine@3.0.0 None 0 106 kB eslint
npm/domelementtype@2.3.0 None 0 11.4 kB feedic
npm/eastasianwidth@0.2.0 None 0 13.6 kB komagata
npm/ecc-jsbn@0.1.2 None 0 27.8 kB aduh95
npm/encoding@0.1.13 None +1 356 kB andris
npm/end-of-stream@1.4.4 None 0 6.23 kB mafintosh
npm/entities@4.5.0 None 0 413 kB feedic
npm/error-ex@1.3.2 None 0 9.04 kB qix
npm/es-to-primitive@1.2.1 None 0 40.4 kB ljharb
npm/escape-string-regexp@1.0.5 None 0 2.69 kB jbnicolai
npm/eslint-config-prettier@8.6.0 None 0 18.2 kB lydell
npm/eslint-utils@3.0.0 None +1 383 kB mysticatea
npm/eslint-visitor-keys@3.4.3 None 0 32.3 kB eslintbot
npm/esprima@4.0.1 None 0 314 kB ariya
npm/esquery@1.5.0 None 0 1 MB michaelficarra
npm/esrecurse@4.3.0 None 0 13.5 kB michaelficarra
npm/estraverse@5.3.0 None 0 37.1 kB michaelficarra
npm/esutils@2.0.3 None 0 50.6 kB michaelficarra
npm/event-target-shim@5.0.1 None 0 189 kB mysticatea
npm/eventemitter3@5.0.1 None 0 73.4 kB lpinca
npm/events@3.3.0 None 0 82.8 kB goto-bus-stop
npm/extend@3.0.2 None 0 23.5 kB ljharb
npm/extsprintf@1.3.0 None 0 22.8 kB dap
npm/fast-copy@3.0.1 None 0 198 kB planttheidea
npm/fast-json-stable-stringify@2.1.0 None 0 17 kB esp
npm/fast-levenshtein@2.0.6 None 0 9.44 kB hiddentao
npm/fast-safe-stringify@2.1.1 None 0 39.7 kB matteo.collina
npm/filelist@1.0.4 filesystem 0 18.6 kB mde
npm/fill-range@7.0.1 None 0 16.4 kB jonschlinkert
npm/flatted@3.3.1 None 0 40.3 kB webreflection
npm/for-each@0.3.3 None 0 13 kB ljharb
npm/foreground-child@3.1.1 shell 0 60.4 kB isaacs
npm/forever-agent@0.6.1 network 0 14 kB simov
npm/form-data@4.0.0 filesystem, network 0 43.4 kB niftylettuce
npm/fs-constants@1.0.0 filesystem 0 2.22 kB mafintosh
npm/fs.realpath@1.0.0 environment, filesystem 0 13.4 kB isaacs
npm/fsevents@2.3.3 None 0 173 kB pipobscure
npm/function-bind@1.1.2 None 0 31.4 kB ljharb
npm/functions-have-names@1.2.3 None 0 16.7 kB ljharb
npm/gensync@1.0.0-beta.2 None 0 28.9 kB loganfsmyth
npm/get-package-type@0.1.0 filesystem 0 6.01 kB coreyfarrell
npm/getpass@0.1.7 filesystem 0 5.67 kB arekinath
npm/globals@11.12.0 None 0 39.8 kB sindresorhus
npm/gopd@1.0.1 None 0 7.7 kB ljharb
npm/graphemer@1.4.0 None 0 812 kB mattpauldavies
npm/har-schema@2.0.0 None 0 15.1 kB ahmadnassri
npm/har-validator@5.1.5 Transitive: eval +2 957 kB ahmadnassri
npm/has-bigints@1.0.2 None 0 12.8 kB ljharb
npm/has-flag@3.0.0 None 0 3.13 kB sindresorhus
npm/has-symbols@1.0.3 None 0 20.6 kB ljharb
npm/help-me@5.0.0 filesystem 0 14.6 kB matteo.collina
npm/highlight.js@10.7.3 None 0 1.71 MB highlightjs_bot
npm/http-cache-semantics@4.1.1 None 0 35.9 kB kornel
npm/http-signature@1.2.0 network 0 48.4 kB arekinath
npm/humanize-ms@1.2.1 None 0 3.66 kB dead_horse
npm/iconv-lite@0.4.24 None 0 336 kB ashtuchkin
npm/ieee754@1.2.1 None 0 6.8 kB feross
npm/imurmurhash@0.1.4 None 0 11.9 kB jensyt
npm/indent-string@4.0.0 None 0 4.4 kB sindresorhus
npm/inflight@1.0.6 None 0 3.76 kB isaacs
npm/internmap@2.0.3 None 0 10.5 kB mbostock
npm/is-arguments@1.1.1 None 0 28.8 kB ljharb
npm/is-arrayish@0.2.1 None 0 4.05 kB qix
npm/is-bigint@1.0.4 None 0 14.8 kB ljharb
npm/is-binary-path@2.1.0 None 0 3.08 kB sindresorhus
npm/is-boolean-object@1.1.2 None 0 22.1 kB ljharb
npm/is-callable@1.2.7 None 0 28.9 kB ljharb
npm/is-core-module@2.13.1 None 0 30.2 kB ljharb
npm/is-date-object@1.0.5 None 0 20.8 kB ljharb
npm/is-docker@2.2.1 filesystem 0 3.01 kB sindresorhus
npm/is-extglob@2.1.1 None 0 6.22 kB jonschlinkert
npm/is-generator-function@1.0.10 eval 0 31.9 kB ljharb
npm/is-interactive@1.0.0 None 0 4.62 kB sindresorhus
npm/is-number-object@1.0.7 None 0 22.2 kB ljharb
npm/is-number@7.0.0 None 0 9.62 kB jonschlinkert
npm/is-path-inside@3.0.3 None 0 4.12 kB sindresorhus
npm/is-plain-obj@1.1.0 None 0 2.62 kB sindresorhus
npm/is-promise@2.2.2 None 0 2.75 kB forbeslindesay
npm/is-regex@1.1.4 None 0 30.1 kB ljharb
npm/is-string@1.0.7 None 0 19.1 kB ljharb
npm/is-symbol@1.0.4 None 0 22 kB ljharb
npm/is-typedarray@1.0.0 None 0 4.41 kB hughsk
npm/is-weakref@1.0.2 None 0 12.1 kB ljharb
npm/is-wsl@2.2.0 environment, filesystem 0 3.76 kB sindresorhus
npm/isarray@1.0.0 None 0 3.89 kB juliangruber
npm/isstream@0.1.2 None 0 13.3 kB rvagg
npm/jackspeak@2.3.6 environment 0 253 kB isaacs
npm/joycon@3.1.1 environment, filesystem 0 14 kB egoist
npm/js-tokens@4.0.0 None 0 15.1 kB lydell
npm/jsbn@0.1.1 None 0 45.8 kB andyperlitch
npm/jsesc@2.5.2 None 0 32 kB mathias
npm/json-parse-better-errors@1.0.2 None 0 6.7 kB zkat
npm/json-schema@0.4.0 None 0 26.1 kB kriszyp
npm/json-stable-stringify-without-jsonify@1.0.1 None 0 14.2 kB samn
npm/json5@2.2.3 None 0 235 kB jordanbtucker
npm/jsprim@1.4.2 None 0 31.2 kB bahamat
npm/kleur@3.0.3 None 0 9.89 kB lukeed
npm/levn@0.4.1 None 0 24.9 kB gkz
npm/lodash-es@4.17.21 eval 0 636 kB bnjmnt4n
npm/lodash.debounce@4.0.8 None 0 14 kB jdalton
npm/lodash.defaults@4.2.0 None 0 21.1 kB jdalton
npm/lodash.isequal@4.5.0 None 0 52.7 kB jdalton
npm/long@5.2.3 None 0 119 kB dcode
npm/make-error@1.3.6 None 0 12.4 kB julien-f
npm/memorystream@0.3.1 None 0 23.2 kB jsbizon
npm/mime-db@1.52.0 None 0 206 kB dougwilson
npm/mime-types@2.1.35 None 0 18.3 kB dougwilson
npm/min-indent@1.0.1 None 0 2.97 kB thejameskyle
npm/minimalistic-assert@1.0.1 None 0 1.55 kB cwmma
npm/minizlib@2.1.2 None 0 17.3 kB isaacs
npm/mkdirp@1.0.4 environment, filesystem 0 19.1 kB isaacs
npm/ms@2.1.2 None 0 6.84 kB styfle
npm/mz@2.7.0 filesystem, network, shell 0 9.77 kB jongleberry
npm/nanoid@3.3.7 None 0 24.4 kB ai
npm/natural-compare@1.4.0 None 0 5.65 kB megawac
npm/nice-try@1.0.5 None 0 3.75 kB electerious
npm/node-forge@1.3.1 None 0 1.66 MB davidlehn
npm/node-releases@2.0.14 None 0 34 kB chicoxyzzy
npm/normalize-path@3.0.0 None 0 9.22 kB jonschlinkert
npm/nth-check@2.1.1 None 0 42.6 kB feedic
npm/oauth-sign@0.9.0 None 0 13.8 kB simov
npm/object-assign@4.1.1 None 0 5.49 kB sindresorhus
npm/object-inspect@1.13.1 None 0 97.2 kB ljharb
npm/object-keys@1.1.1 None 0 26.5 kB ljharb
npm/on-exit-leak-free@2.1.2 None 0 9.25 kB matteo.collina
npm/optionator@0.9.4 None 0 50.2 kB gkz
npm/os-tmpdir@1.0.2 None 0 3.06 kB sindresorhus
npm/p-try@2.2.0 None 0 4.37 kB sindresorhus
npm/path-is-absolute@1.0.1 None 0 3.62 kB sindresorhus
npm/path-parse@1.0.7 None 0 4.51 kB jbgutierrez
npm/performance-now@2.1.0 None 0 11.3 kB meryn
npm/picocolors@1.0.0 environment 0 5.66 kB alexeyraspopov
npm/pidtree@0.6.0 shell 0 23.1 kB simonepri
npm/pluralize@8.0.0 None 0 17.7 kB blakeembrey
npm/postcss@8.4.31 environment, filesystem 0 197 kB ai
npm/prelude-ls@1.2.1 None 0 36.7 kB gkz
npm/prettier@2.8.8 environment, filesystem, unsafe 0 11.2 MB prettier-bot
npm/process-nextick-args@2.0.1 None 0 3.17 kB cwmma
npm/process@0.11.10 None 0 15.3 kB cwmma
npm/proxy-from-env@1.1.0 environment 0 29.5 kB rob-w
npm/psl@1.9.0 None 0 461 kB lupomontero
npm/qs@6.5.3 None 0 126 kB ljharb
npm/queue-microtask@1.2.3 None 0 8.37 kB feross
npm/quick-format-unescaped@4.0.4 None 0 12.8 kB davidmarkclements
npm/randombytes@2.1.0 None 0 6.36 kB cwmma
npm/readdirp@3.6.0 filesystem 0 20.5 kB paulmillr
npm/regenerate@1.4.2 None 0 49.2 kB mathias
npm/regexpp@3.2.0 None 0 302 kB mysticatea
npm/regexpu-core@5.3.2 None 0 53.8 kB google-wombot
npm/regjsparser@0.9.1 None +1 93.8 kB jviereck
npm/request@2.88.2 environment, filesystem, network +2 363 kB mikeal
npm/require-main-filename@2.0.0 None 0 3.93 kB bcoe
npm/requires-port@1.0.0 None 0 8.56 kB 3rdeden
npm/resolve-pkg-maps@1.0.0 None 0 15 kB hirokiosame
npm/reusify@1.0.4 None 0 9.44 kB matteo.collina
npm/run-parallel@1.2.0 None 0 6.56 kB feross
npm/safe-buffer@5.2.1 None 0 32.1 kB feross
npm/safe-stable-stringify@2.4.3 None 0 30.1 kB bridgear
npm/safer-buffer@2.1.2 None 0 42.3 kB chalker
npm/set-blocking@2.0.0 None 0 4.22 kB bcoe
npm/setimmediate@1.0.5 None 0 8.56 kB domenic
npm/shebang-regex@3.0.0 None 0 2.83 kB sindresorhus
npm/sisteransi@1.0.5 None 0 6.79 kB terkelg
npm/slice-ansi@5.0.0 None +1 11.6 kB sindresorhus
npm/source-map-js@1.2.0 None 0 140 kB 7rulnik
npm/source-map@0.6.1 None 0 805 kB tromey
npm/spdx-expression-parse@3.0.1 None 0 11.8 kB kemitchell
npm/sprintf-js@1.0.3 None 0 34.8 kB alexei
npm/stream-browserify@3.0.0 None 0 11.6 kB goto-bus-stop
npm/streamsearch@1.1.0 None 0 16.6 kB mscdex
npm/string_decoder@1.3.0 None 0 14.4 kB matteo.collina
npm/strip-indent@3.0.0 None 0 3.31 kB sindresorhus
npm/strip-json-comments@3.1.1 None 0 6.96 kB sindresorhus
npm/supports-preserve-symlinks-flag@1.0.0 None 0 9.18 kB ljharb
npm/tapable@2.2.1 None 0 46.9 kB sokra
npm/text-table@0.2.0 None 0 11 kB substack
npm/thenify-all@1.6.0 None 0 6.59 kB dead_horse
npm/thenify@3.3.1 None 0 7.92 kB dead_horse
npm/to-fast-properties@2.0.0 None 0 3.5 kB sindresorhus
npm/to-regex-range@5.0.1 None 0 22.9 kB jonschlinkert
npm/tough-cookie@2.5.0 network 0 86.6 kB jstash
npm/tr46@0.0.3 None 0 268 kB sebmaster
npm/tree-kill@1.2.2 shell 0 7.82 kB wmhilton
npm/tsutils@3.21.0 None +1 416 kB ajaff
npm/tunnel-agent@0.6.0 environment, network 0 16.7 kB mikeal
npm/tweetnacl@0.14.5 None 0 174 kB dchest
npm/type-check@0.4.0 None 0 21.2 kB gkz
npm/type-detect@4.0.8 None 0 42.1 kB chaijs
npm/unbox-primitive@1.0.2 None 0 14.9 kB ljharb
npm/unicode-canonical-property-names-ecmascript@2.0.0 None 0 5.01 kB google-wombot
npm/unicode-match-property-ecmascript@2.0.0 None 0 5.05 kB google-wombot
npm/unicode-match-property-value-ecmascript@2.1.0 None 0 25.7 kB google-wombot
npm/unicode-property-aliases-ecmascript@2.1.0 None 0 5.98 kB google-wombot
npm/util-deprecate@1.0.2 None 0 5.48 kB tootallnate
npm/util@0.12.5 environment 0 33.7 kB goto-bus-stop
npm/verror@1.10.0 None +1 59 kB dap
npm/webidl-conversions@3.0.1 None 0 12.4 kB sebmaster
npm/whatwg-url@5.0.0 None 0 49.9 kB domenic
npm/which-boxed-primitive@1.0.2 None 0 15 kB ljharb
npm/word-wrap@1.2.5 None 0 11.8 kB jonschlinkert
npm/wordwrap@1.0.0 None 0 36.8 kB substack
npm/wrappy@1.0.2 None 0 2.96 kB zkat
npm/xtend@4.0.2 None 0 6.46 kB raynos
npm/yallist@4.0.0 None 0 14.8 kB isaacs
npm/yocto-queue@1.0.0 None 0 6.41 kB sindresorhus

🚮 Removed packages: npm/@babel/runtime@7.24.5, npm/@commitlint/cli@19.3.0, npm/@commitlint/config-conventional@19.2.2, npm/@commitlint/config-validator@19.0.3, npm/@commitlint/ensure@19.0.3, npm/@commitlint/execute-rule@19.0.0, npm/@commitlint/format@19.3.0, npm/@commitlint/is-ignored@19.2.2, npm/@commitlint/lint@19.2.2, npm/@commitlint/load@19.2.0, npm/@commitlint/message@19.0.0, npm/@commitlint/parse@19.0.3, npm/@commitlint/read@19.2.1, npm/@commitlint/resolve-extends@19.1.0, npm/@commitlint/rules@19.0.3, npm/@commitlint/to-lines@19.0.0, npm/@commitlint/top-level@19.0.0, npm/@commitlint/types@19.0.3, npm/@hutson/parse-repository-url@3.0.2, npm/@lerna/create@8.1.3, npm/@npmcli/node-gyp@3.0.0, npm/@npmcli/promise-spawn@7.0.2, npm/@npmcli/run-script@7.0.2, npm/@nrwl/devkit@19.0.2, npm/@nx/devkit@19.0.2, npm/@octokit/auth-token@3.0.4, npm/@octokit/core@4.2.4, npm/@octokit/endpoint@7.0.6, npm/@octokit/graphql@5.0.6, npm/@octokit/openapi-types@18.1.1, npm/@octokit/plugin-enterprise-rest@6.0.1, npm/@octokit/plugin-paginate-rest@6.1.2, npm/@octokit/plugin-request-log@1.0.4, npm/@octokit/plugin-rest-endpoint-methods@7.2.3, npm/@octokit/request-error@3.0.3, npm/@octokit/request@6.2.8, npm/@octokit/rest@19.0.11, npm/@octokit/tsconfig@1.0.2, npm/@octokit/types@9.3.2, npm/@socialgouv/sre-seal@1.14.5, npm/@socialgouv/sre-secrets@1.14.5, npm/@types/conventional-commits-parser@5.0.0, npm/@types/minimist@1.2.5, npm/@types/node@20.12.11, npm/@types/normalize-package-data@2.4.4, npm/add-stream@1.0.0, npm/ajv@8.13.0, npm/ansi-styles@4.3.0, npm/array-ify@1.0.0, npm/before-after-hook@2.2.3, npm/byte-size@8.1.1, npm/ci-info@3.9.0, npm/cliui@7.0.4, npm/clone-deep@4.0.1, npm/cmd-shim@6.0.1, npm/color-convert@2.0.1, npm/columnify@1.6.0, npm/compare-func@2.0.0, npm/concat-stream@2.0.0, npm/conventional-changelog-angular@7.0.0, npm/conventional-changelog-conventionalcommits@7.0.2, npm/conventional-changelog-core@5.0.1, npm/conventional-changelog-preset-loader@3.0.0, npm/conventional-changelog-writer@6.0.1, npm/conventional-commits-filter@3.0.0, npm/conventional-commits-parser@5.0.0, npm/conventional-recommended-bump@7.0.1, npm/cosmiconfig-typescript-loader@5.0.0, npm/cosmiconfig@9.0.0, npm/dargs@8.1.0, npm/dateformat@3.0.3, npm/dedent@0.7.0, npm/deprecation@2.3.1, npm/dot-prop@5.3.0, npm/ejs@3.1.10, npm/envinfo@7.8.1, npm/escalade@3.1.2, npm/eslint-config-prettier@9.1.0, npm/execa@8.0.1, npm/fast-glob@3.3.2, npm/find-up@7.0.0, npm/fs-extra@11.2.0, npm/get-pkg-repo@4.2.1, npm/get-port@5.1.1, npm/git-raw-commits@4.0.0, npm/git-remote-origin-url@2.0.0, npm/git-semver-tags@5.0.1, npm/git-up@7.0.0, npm/git-url-parse@13.1.0, npm/gitconfiglocal@1.0.0, npm/global-directory@4.0.1, npm/globby@11.1.0, npm/handlebars@4.7.8, npm/has-unicode@2.0.1, npm/husky@9.0.11, npm/ignore@5.3.1, npm/import-local@3.1.0, npm/import-meta-resolve@4.1.0, npm/ini@4.1.1, npm/init-package-json@5.0.0, npm/inquirer@8.2.6, npm/is-plain-object@5.0.0, npm/is-ssh@1.4.0, npm/is-text-path@2.0.0, npm/isexe@3.1.1, npm/jake@10.9.1, npm/jest-diff@29.7.0, npm/jsonfile@6.1.0, npm/lerna@8.1.3, npm/libnpmaccess@7.0.2, npm/libnpmpublish@7.3.0, npm/lint-staged@15.2.2, npm/load-json-file@6.2.0, npm/locate-path@7.2.0, npm/lodash.ismatch@4.4.0, npm/lodash.isplainobject@4.0.6, npm/lodash.mergewith@4.6.2, npm/lodash.uniq@4.5.0, npm/make-dir@4.0.0, npm/meow@12.1.1, npm/minimatch@3.0.5, npm/minimist@1.2.8, npm/modify-values@1.0.1, npm/multimatch@5.0.0, npm/node-gyp@10.1.0, npm/node-talisman@1.29.11, npm/normalize-package-data@3.0.3, npm/npm-package-arg@8.1.1, npm/npm-packlist@5.1.1, npm/npm-registry-fetch@14.0.5, npm/npmlog@6.0.2, npm/nx@19.0.2, npm/onetime@5.1.2, npm/ora@5.4.1, npm/p-locate@4.1.0, npm/p-map-series@2.1.0, npm/p-pipe@3.1.0, npm/p-queue@6.6.2, npm/p-reduce@2.1.0, npm/p-waterfall@2.1.1, npm/pacote@17.0.7, npm/parse-json@5.2.0, npm/parse-url@8.1.0, npm/path-exists@5.0.0, npm/pify@5.0.0, npm/pipe-args@1.3.0, npm/prettier@3.2.5, npm/read-cmd-shim@4.0.0, npm/read-package-json-fast@3.0.2, npm/read-package-json@6.0.4, npm/read-pkg-up@3.0.0, npm/read-pkg@3.0.0, npm/resolve@1.22.8, npm/rimraf@4.4.1, npm/rimraf@5.0.7, npm/shallow-clone@3.0.1, npm/shebang-command@2.0.0, npm/split@1.0.1, npm/ssri@9.0.1, npm/string-width@4.2.3, npm/strong-log-transformer@2.1.0, npm/supports-color@7.2.0, npm/tar@6.2.1, npm/temp-dir@1.0.0, npm/text-extensions@2.4.0, npm/through2@2.0.5, npm/tmp@0.2.3, npm/type-fest@0.18.1, npm/undici-types@5.26.5, npm/unicorn-magic@0.1.0, npm/universal-user-agent@6.0.1, npm/upath@2.0.1, npm/validate-npm-package-name@5.0.0, npm/which@2.0.2, npm/wrap-ansi@7.0.0, npm/write-file-atomic@5.0.1, npm/write-pkg@4.0.0, npm/yargs@17.7.2, npm/zone.js@0.14.5

View full report↗︎

Copy link

socket-security bot commented May 11, 2024

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report↗︎

@codecov-commenter
Copy link

codecov-commenter commented May 11, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 66.90%. Comparing base (e1176e4) to head (51c5777).

❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff            @@
##           master    #3319    +/-   ##
========================================
  Coverage   66.90%   66.90%            
========================================
  Files         899      899            
  Lines       14933    14933            
  Branches     2145     2169    +24     
========================================
  Hits         9991     9991            
+ Misses       4894     4763   -131     
- Partials       48      179   +131     

see 57 files with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update e1176e4...51c5777. Read the comment docs.

Copy link

sonarcloud bot commented May 14, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

@pYassine pYassine closed this May 15, 2024
Copy link
Contributor Author

renovate bot commented May 15, 2024

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 23.x releases. But if you manually upgrade to 23.x then Renovate will re-enable minor and patch updates automatically.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate renovate bot deleted the renovate/intl-tel-input-23.x branch May 15, 2024 15:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants