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

Pin exact dependency versions #1217

Merged
merged 5 commits into from
Dec 18, 2023
Merged
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
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
"docs:generate": "typedoc"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.4",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"commitlint": "^17.0.3",
"eslint": "^8.20.0",
"husky": "^7.0.4",
"rimraf": "^3.0.2",
"turbo": "^1.4.5",
"typedoc": "^0.25.3",
"typescript": "^4.9.4"
"@changesets/changelog-github": "0.4.6",
"@changesets/cli": "2.24.4",
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@typescript-eslint/eslint-plugin": "5.31.0",
"@typescript-eslint/parser": "5.31.0",
"commitlint": "17.0.3",
"eslint": "8.20.0",
"husky": "7.0.4",
"rimraf": "3.0.2",
"turbo": "1.4.5",
"typedoc": "0.25.3",
"typescript": "4.9.4"
}
}
20 changes: 10 additions & 10 deletions packages/accounts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,22 @@
"@near-js/transactions": "workspace:*",
"@near-js/types": "workspace:*",
"@near-js/utils": "workspace:*",
"ajv": "^8.11.2",
"ajv-formats": "^2.1.1",
"ajv": "8.11.2",
"ajv-formats": "2.1.1",
"bn.js": "5.2.1",
"borsh": "1.0.0",
"depd": "^2.0.0",
"lru_map": "^0.4.1",
"depd": "2.0.0",
"lru_map": "0.4.1",
"near-abi": "0.1.1"
},
"devDependencies": {
"@near-js/keystores": "workspace:*",
"@types/node": "^18.11.18",
"bs58": "^4.0.0",
"jest": "^26.0.1",
"near-hello": "^0.5.1",
"ts-jest": "^26.5.6",
"typescript": "^4.9.4"
"@types/node": "18.11.18",
"bs58": "4.0.0",
"jest": "26.0.1",
"near-hello": "0.5.1",
"ts-jest": "26.5.6",
"typescript": "4.9.4"
},
"files": [
"lib"
Expand Down
14 changes: 7 additions & 7 deletions packages/biometric-ed25519/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@
"author": "Pagoda",
"license": "ISC",
"dependencies": {
"@aws-crypto/sha256-js": "^4.0.0",
"@hexagon/base64": "^1.1.26",
"@aws-crypto/sha256-js": "4.0.0",
"@hexagon/base64": "1.1.26",
"@near-js/crypto": "workspace:*",
"@near-js/utils": "workspace:*",
"asn1-parser": "^1.1.8",
"asn1-parser": "1.1.8",
"bn.js": "5.2.1",
"borsh": "1.0.0",
"buffer": "^6.0.3",
"elliptic": "^6.5.4",
"buffer": "6.0.3",
"elliptic": "6.5.4",

Choose a reason for hiding this comment

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

why is elliptic used here in ed25519 context? elliptic's implementation of the curve is buggy and produces invalid outputs, which means in blockchain context "someone will lose money"

"fido2-lib": "3.4.1"
},
"devDependencies": {
"@aws-sdk/types": "^3.329.0",
"@types/node": "^18.7.14"
"@aws-sdk/types": "3.329.0",
"@types/node": "18.11.18"
}
}
4 changes: 2 additions & 2 deletions packages/cookbook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"@near-js/signers": "workspace:*",
"@near-js/transactions": "workspace:*",
"bn.js": "5.2.1",
"chalk": "^4.1.1",
"homedir": "^0.6.0",
"chalk": "4.1.1",
"homedir": "0.6.0",
"near-api-js": "workspace:*"
}
}
8 changes: 4 additions & 4 deletions packages/crypto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
"@noble/curves": "1.2.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"jest": "^26.0.1",
"ts-jest": "^26.5.6",
"typescript": "^4.9.4"
"@types/node": "18.11.18",
"jest": "26.0.1",
"ts-jest": "26.5.6",
"typescript": "4.9.4"
},
"files": [
"lib"
Expand Down
4 changes: 2 additions & 2 deletions packages/iframe-rpc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"author": "Pagoda",
"license": "ISC",
"dependencies": {
"events": "^3.3.0"
"events": "3.3.0"
},
"devDependencies": {
"@types/node": "^18.16.1"
"@types/node": "18.11.18"
}
}
6 changes: 3 additions & 3 deletions packages/keystores-browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"@near-js/keystores": "workspace:*"
},
"devDependencies": {
"jest": "^26.0.1",
"ts-jest": "^26.5.6",
"typescript": "^4.9.4"
"jest": "26.0.1",
"ts-jest": "26.5.6",
"typescript": "4.9.4"
},
"files": [
"lib"
Expand Down
8 changes: 4 additions & 4 deletions packages/keystores-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
"@near-js/keystores": "workspace:*"
},
"devDependencies": {
"@types/node": "^18.11.18",
"jest": "^26.0.1",
"ts-jest": "^26.5.6",
"typescript": "^4.9.4"
"@types/node": "18.11.18",
"jest": "26.0.1",
"ts-jest": "26.5.6",
"typescript": "4.9.4"
},
"files": [
"lib"
Expand Down
8 changes: 4 additions & 4 deletions packages/keystores/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
"@near-js/types": "workspace:*"
},
"devDependencies": {
"@types/node": "^18.11.18",
"jest": "^26.0.1",
"ts-jest": "^26.5.6",
"typescript": "^4.9.4"
"@types/node": "18.11.18",
"jest": "26.0.1",
"ts-jest": "26.5.6",
"typescript": "4.9.4"
},
"files": [
"lib"
Expand Down
46 changes: 23 additions & 23 deletions packages/near-api-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,35 +22,35 @@
"@near-js/types": "workspace:*",
"@near-js/utils": "workspace:*",
"@near-js/wallet-account": "workspace:*",
"ajv": "^8.11.2",
"ajv-formats": "^2.1.1",
"ajv": "8.11.2",
"ajv-formats": "2.1.1",
"bn.js": "5.2.1",
"borsh": "1.0.0",
"depd": "^2.0.0",
"error-polyfill": "^0.1.3",
"http-errors": "^1.7.2",
"depd": "2.0.0",
"error-polyfill": "0.1.3",
"http-errors": "1.7.2",
"near-abi": "0.1.1",
"node-fetch": "^2.6.1",
"node-fetch": "2.6.7",
"@noble/curves": "1.2.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/http-errors": "^1.6.1",
"@types/node": "^18.11.18",
"browserify": "^16.2.3",
"bs58": "^4.0.0",
"bundlewatch": "^0.3.1",
"concurrently": "^7.3.0",
"danger": "^11.1.1",
"danger-plugin-yarn": "^1.3.2",
"in-publish": "^2.0.0",
"jest": "^26.0.1",
"localstorage-memory": "^1.0.3",
"near-hello": "^0.5.1",
"rimraf": "^3.0.0",
"semver": "^7.1.1",
"ts-jest": "^26.5.6",
"uglifyify": "^5.0.1"
"@types/bn.js": "5.1.0",
"@types/http-errors": "1.6.1",
"@types/node": "18.11.18",
"browserify": "16.2.3",
"bs58": "4.0.0",
"bundlewatch": "0.3.1",
"concurrently": "7.3.0",
"danger": "11.1.1",
"danger-plugin-yarn": "1.3.2",
"in-publish": "2.0.0",
"jest": "26.0.1",
"localstorage-memory": "1.0.3",
"near-hello": "0.5.1",
"rimraf": "3.0.2",
"semver": "7.1.1",
"ts-jest": "26.5.6",
"uglifyify": "5.0.1"
},
"keywords": [],
"license": "(MIT AND Apache-2.0)",
Expand Down
12 changes: 6 additions & 6 deletions packages/providers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
"@near-js/utils": "workspace:*",
"bn.js": "5.2.1",
"borsh": "1.0.0",
"http-errors": "^1.7.2"
"http-errors": "1.7.2"
},
"devDependencies": {
"@types/node": "^18.11.18",
"jest": "^26.0.1",
"ts-jest": "^26.5.6",
"typescript": "^4.9.4"
"@types/node": "18.11.18",
"jest": "26.0.1",
"ts-jest": "26.5.6",
"typescript": "4.9.4"
},
"optionalDependencies": {
"node-fetch": "^2.6.1"
"node-fetch": "2.6.7"
},
"files": [
"lib"
Expand Down
10 changes: 5 additions & 5 deletions packages/signers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"dependencies": {
"@near-js/crypto": "workspace:*",
"@near-js/keystores": "workspace:*",
"js-sha256": "^0.9.0"
"js-sha256": "0.9.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"jest": "^26.0.1",
"ts-jest": "^26.5.6",
"typescript": "^4.9.4"
"@types/node": "18.11.18",
"jest": "26.0.1",
"ts-jest": "26.5.6",
"typescript": "4.9.4"
},
"files": [
"lib"
Expand Down
10 changes: 5 additions & 5 deletions packages/transactions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
"@near-js/utils": "workspace:*",
"bn.js": "5.2.1",
"borsh": "1.0.0",
"js-sha256": "^0.9.0"
"js-sha256": "0.9.0"
},
"devDependencies": {
"@near-js/keystores": "workspace:*",
"@types/node": "^18.11.18",
"jest": "^26.0.1",
"ts-jest": "^26.5.6",
"typescript": "^4.9.4"
"@types/node": "18.11.18",
"jest": "26.0.1",
"ts-jest": "26.5.6",
"typescript": "4.9.4"
},
"files": [
"lib"
Expand Down
8 changes: 4 additions & 4 deletions packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"bn.js": "5.2.1"
},
"devDependencies": {
"@types/node": "^18.11.18",
"jest": "^26.0.1",
"ts-jest": "^26.5.6",
"typescript": "^4.9.4"
"@types/node": "18.11.18",
"jest": "26.0.1",
"ts-jest": "26.5.6",
"typescript": "4.9.4"
},
"files": [
"lib"
Expand Down
14 changes: 7 additions & 7 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
"dependencies": {
"@near-js/types": "workspace:*",
"bn.js": "5.2.1",
"bs58": "^4.0.0",
"depd": "^2.0.0",
"mustache": "^4.0.0"
"bs58": "4.0.0",
"depd": "2.0.0",
"mustache": "4.0.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"jest": "^26.0.1",
"ts-jest": "^26.5.6",
"typescript": "^4.9.4"
"@types/node": "18.11.18",
"jest": "26.0.1",
"ts-jest": "26.5.6",
"typescript": "4.9.4"
},
"files": [
"lib"
Expand Down
10 changes: 5 additions & 5 deletions packages/wallet-account/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"borsh": "1.0.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"jest": "^26.0.1",
"localstorage-memory": "^1.0.3",
"ts-jest": "^26.5.6",
"typescript": "^4.9.4"
"@types/node": "18.11.18",
"jest": "26.0.1",
"localstorage-memory": "1.0.3",
"ts-jest": "26.5.6",
"typescript": "4.9.4"
},
"files": [
"lib"
Expand Down
Loading
Loading