Skip to content

Commit 16b836e

Browse files
committed
chore: bumped node, yarn and graphql
1 parent 2fbcf9a commit 16b836e

File tree

18 files changed

+8288
-10251
lines changed

18 files changed

+8288
-10251
lines changed

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -204,3 +204,5 @@ veascan-subgraph-inbox/generated/*
204204
veascan-subgraph-inbox/build/*
205205
validator-subgraph-inbox/generated/*
206206
validator-subgraph-inbox/build/*
207+
208+
cache

Diff for: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

-541
This file was deleted.

Diff for: .yarn/plugins/@yarnpkg/plugin-stage.cjs

-14
This file was deleted.

Diff for: .yarn/plugins/@yarnpkg/plugin-version.cjs

-550
This file was deleted.

Diff for: .yarn/releases/yarn-3.3.1.cjs

-823
This file was deleted.

Diff for: .yarnrc.yml

+5-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
nodeLinker: node-modules
1+
compressionLevel: mixed
2+
3+
enableGlobalCache: false
24

3-
plugins:
4-
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs
5-
spec: "@yarnpkg/plugin-version"
6-
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
7-
spec: "@yarnpkg/plugin-interactive-tools"
8-
- path: .yarn/plugins/@yarnpkg/plugin-stage.cjs
9-
spec: "@yarnpkg/plugin-stage"
5+
enableTelemetry: 0
106

11-
yarnPath: .yarn/releases/yarn-3.3.1.cjs
7+
nodeLinker: node-modules

Diff for: contracts/package.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"solidity",
1919
"smart contracts"
2020
],
21-
"packageManager": "yarn@3.3.1",
21+
"packageManager": "yarn@4.2.2",
2222
"engines": {
23-
"node": ">=16.0.0"
23+
"node": ">=18.0.0"
2424
},
2525
"volta": {
26-
"node": "16.20.0",
27-
"yarn": "3.3.1"
26+
"node": "18.20.3",
27+
"yarn": "4.2.2"
2828
},
2929
"publishConfig": {
3030
"access": "public",
@@ -100,8 +100,5 @@
100100
"ts-node": "^10.9.1",
101101
"typechain": "^8.1.1",
102102
"typescript": "^4.9.5"
103-
},
104-
"dependencies": {
105-
"@openzeppelin/contracts": "^5.0.2"
106103
}
107104
}

Diff for: package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
"veascan-subgraph-inbox",
2525
"veascan-subgraph-outbox"
2626
],
27-
"packageManager": "yarn@3.3.1",
27+
"packageManager": "yarn@4.2.2",
2828
"volta": {
29-
"node": "16.20.0",
30-
"yarn": "3.3.1"
29+
"node": "18.20.3",
30+
"yarn": "4.2.2"
3131
},
3232
"devDependencies": {
3333
"@commitlint/cli": "^17.6.1",

Diff for: relayer-cli/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@kleros/vea-relayer-cli",
33
"license": "MIT",
4-
"packageManager": "yarn@3.3.1",
4+
"packageManager": "yarn@4.2.2",
55
"engines": {
6-
"node": ">=16.0.0"
6+
"node": ">=18.0.0"
77
},
88
"volta": {
9-
"node": "16.20.0",
10-
"yarn": "3.3.1"
9+
"node": "18.20.3",
10+
"yarn": "4.2.2"
1111
},
1212
"scripts": {
1313
"start-devnet-relayer": "npx ts-node ./src/devnetRelayExample.ts"
@@ -18,7 +18,7 @@
1818
"dotenv": "^16.0.3",
1919
"pm2": "^5.2.2",
2020
"typescript": "^4.9.5",
21-
"web3": "^1.8.2",
21+
"web3": "^1.10.4",
2222
"web3-batched-send": "^1.0.3"
2323
}
2424
}

Diff for: relayer-subgraph-inbox/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
generated
2+
build
3+
contracts

Diff for: relayer-subgraph-inbox/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@kleros/vea-relayer-subgraph-inbox",
33
"license": "MIT",
4-
"packageManager": "yarn@3.3.1",
4+
"packageManager": "yarn@4.2.2",
55
"engines": {
6-
"node": ">=16.0.0"
6+
"node": ">=18.0.0"
77
},
88
"volta": {
9-
"node": "16.20.0",
10-
"yarn": "3.3.1"
9+
"node": "18.20.3",
10+
"yarn": "4.2.2"
1111
},
1212
"scripts": {
1313
"codegen": "graph codegen",
@@ -19,10 +19,10 @@
1919
"test": "graph test"
2020
},
2121
"dependencies": {
22-
"@graphprotocol/graph-ts": "^0.29.3"
22+
"@graphprotocol/graph-ts": "^0.35.1"
2323
},
2424
"devDependencies": {
25-
"@graphprotocol/graph-cli": "^0.44.0",
25+
"@graphprotocol/graph-cli": "^0.73.0",
2626
"concat-stream": "^2.0.0",
2727
"gluegun": "^5.1.2",
2828
"matchstick-as": "0.5.2"

Diff for: validator-cli/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@kleros/vea-validator-cli",
33
"license": "MIT",
4-
"packageManager": "yarn@3.3.1",
4+
"packageManager": "yarn@4.2.2",
55
"engines": {
6-
"node": ">=16.0.0"
6+
"node": ">=18.0.0"
77
},
88
"volta": {
9-
"node": "16.20.0",
10-
"yarn": "3.3.1"
9+
"node": "18.20.3",
10+
"yarn": "4.2.2"
1111
},
1212
"scripts": {
1313
"start": "npx ts-node ./src/ArbToEth/watcher.ts",
@@ -22,7 +22,7 @@
2222
"dotenv": "^16.0.3",
2323
"pm2": "^5.2.2",
2424
"typescript": "^4.9.5",
25-
"web3": "^1.10.0",
25+
"web3": "^1.10.4",
2626
"web3-batched-send": "^1.0.3"
2727
}
2828
}

Diff for: veascan-subgraph-inbox/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
generated
2+
build
3+
contracts

Diff for: veascan-subgraph-inbox/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@kleros/veascan-subgraph-inbox",
33
"license": "MIT",
4-
"packageManager": "yarn@3.3.1",
4+
"packageManager": "yarn@4.2.2",
55
"engines": {
6-
"node": ">=16.0.0"
6+
"node": ">=18.0.0"
77
},
88
"volta": {
9-
"node": "16.20.0",
10-
"yarn": "3.3.1"
9+
"node": "18.20.3",
10+
"yarn": "4.2.2"
1111
},
1212
"scripts": {
1313
"codegen": "graph codegen",
@@ -18,9 +18,9 @@
1818
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 kleros/veascan-inbox"
1919
},
2020
"dependencies": {
21-
"@graphprotocol/graph-ts": "^0.29.3"
21+
"@graphprotocol/graph-ts": "^0.35.1"
2222
},
2323
"devDependencies": {
24-
"@graphprotocol/graph-cli": "^0.44.0"
24+
"@graphprotocol/graph-cli": "^0.73.0"
2525
}
2626
}

Diff for: veascan-subgraph-outbox/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
generated
2+
build
3+
contracts

Diff for: veascan-subgraph-outbox/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@kleros/veascan-subgraph-outbox",
33
"license": "MIT",
4-
"packageManager": "yarn@3.3.1",
4+
"packageManager": "yarn@4.2.2",
55
"engines": {
6-
"node": ">=16.0.0"
6+
"node": ">=18.0.0"
77
},
88
"volta": {
9-
"node": "16.19.0",
10-
"yarn": "3.3.1"
9+
"node": "18.20.3",
10+
"yarn": "4.2.2"
1111
},
1212
"scripts": {
1313
"update:sepolia": "./scripts/update.sh sepolia sepolia ArbToEthDevnet",
@@ -22,10 +22,10 @@
2222
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 kleros/veascan-outbox"
2323
},
2424
"dependencies": {
25-
"@graphprotocol/graph-ts": "^0.29.3"
25+
"@graphprotocol/graph-ts": "^0.35.1"
2626
},
2727
"devDependencies": {
2828
"@goldskycom/cli": "^1.6.0",
29-
"@graphprotocol/graph-cli": "^0.44.0"
29+
"@graphprotocol/graph-cli": "^0.73.0"
3030
}
3131
}

Diff for: veascan-web/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
},
1414
"homepage": "https://github.com/kleros/vea#readme",
1515
"license": "MIT",
16-
"packageManager": "yarn@3.3.1",
16+
"packageManager": "yarn@4.2.2",
1717
"volta": {
18-
"node": "16.20.0",
19-
"yarn": "3.3.1"
18+
"node": "18.20.3",
19+
"yarn": "4.2.2"
2020
},
2121
"alias": {
2222
"~": "./",
@@ -40,9 +40,9 @@
4040
"codegen": "graphql-codegen --config codegen.ts"
4141
},
4242
"devDependencies": {
43-
"@graphprotocol/client-cli": "^2.2.20",
43+
"@graphprotocol/client-cli": "^2.2.22",
4444
"@graphql-codegen/cli": "^3.3.1",
45-
"@graphql-codegen/client-preset": "^3.0.0",
45+
"@graphql-codegen/client-preset": "^3.0.1",
4646
"@graphql-codegen/typescript": "^2.8.8",
4747
"@graphql-codegen/typescript-operations": "^2.5.13",
4848
"@parcel/transformer-svg-react": "^2.8.3",
@@ -67,16 +67,16 @@
6767
"typescript": "^4.9.5"
6868
},
6969
"dependencies": {
70-
"@kleros/ui-components-library": "^2.4.0",
70+
"@kleros/ui-components-library": "^2.12.0",
7171
"@kleros/vea-contracts": "workspace:^",
7272
"@sentry/react": "^7.37.2",
7373
"@sentry/tracing": "^7.37.2",
7474
"@wagmi/chains": "^1.8.0",
7575
"@wagmi/core": "^2.10.2",
7676
"core-js": "^3.30.1",
7777
"ethers": "^5.7.2",
78-
"graphql": "^16.6.0",
79-
"graphql-request": "^6.0.0",
78+
"graphql": "^16.8.1",
79+
"graphql-request": "^6.1.0",
8080
"react": "^18.2.0",
8181
"react-dom": "^18.2.0",
8282
"react-is": "^18.2.0",

0 commit comments

Comments
 (0)