Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,29 +47,29 @@
"test:watch": "node --test --watch"
},
"dependencies": {
"lodash": "^4.17.21"
"lodash": "^4.17.23"
},
"devDependencies": {
"@fastify/pre-commit": "^2.2.0",
"@fastify/pre-commit": "^2.2.1",
"@uphold/github-changelog-generator": "^4.0.2",
"abavalidator": "^2.0.2",
"bignumber.js": "^9.3.0",
"bignumber.js": "^9.3.1",
Copy link

Copilot AI Feb 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The update of bignumber.js to version 9.3.1 conflicts with the peerDependencies constraint which specifies ">=7 || <=9.3.0" (line 77) and the optionalPeerDependencies constraint ">=7 <=9.3.0" (line 141). The devDependency is being updated to ^9.3.1, which is outside the acceptable peer dependency range. This means that consumers of this package would see peer dependency warnings if they use bignumber.js 9.3.1 or higher.

Either update the peerDependencies constraints to allow 9.3.1 (e.g., ">=7 <=9.3.1" or ">=7 <9.4.0"), or keep bignumber.js at 9.3.0 if there's a specific reason for the upper bound constraint.

Suggested change
"bignumber.js": "^9.3.1",
"bignumber.js": "^9.3.0",

Copilot uses AI. Check for mistakes.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe we can consider bumping this to next major release (10.0.2), to avoid updating to a 8 months old version in a separate pr (we're using BigNumber.DEBUG that has been removed https://github.com/MikeMcl/bignumber.js/blob/main/CHANGELOG.md)

"cpf": "^2.0.1",
"creditcard": "^0.1.3",
"curp": "^1.3.1",
"eslint": "~9.28.0",
"eslint-config-uphold": "^6.5.2",
"google-libphonenumber": "^3.2.41",
"eslint": "~9.39.2",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe we should consider updating it to latest major as well (10.0.3) in a separate pr?

"eslint-config-uphold": "^6.9.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"eslint-config-uphold": "^6.9.0",
"eslint-config-uphold": "^6.12.0",

"google-libphonenumber": "^3.2.43",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"google-libphonenumber": "^3.2.43",
"google-libphonenumber": "^3.2.44",

"iban": "0.0.6",
"isoc": "0.0.1",
"moment": "^2.30.1",
"prettier": "^3.5.3",
"release-it": "^19.2.3",
"prettier": "^3.8.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"prettier": "^3.8.0",
"prettier": "^3.8.1",

"release-it": "^19.2.4",
"tin-validator": "^1.1.0",
"uk-modulus-checking": "0.0.3",
"urijs": "^1.17.1",
"validate-rfc": "^2.0.3",
"validator": "^13.15.15",
"validator": "^13.15.26",
"validator.js": "^2.0.0"
},
"peerDependencies": {
Expand Down
Loading