Skip to content

Commit 159b137

Browse files
authored
Merge pull request #8 from kleros/security/CVE-2021-3918
fix(CVE-2021-3918): upgraded json-schema
2 parents 209e2cb + 7d7fd22 commit 159b137

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
1-
## 0.1.0 (2021-12-17)
1+
## 0.1.0 (2021-12-28)
22

33
- refactor: add arbitrator data index getter ([47a1623](https://github.com/kleros/kleros-v2/commit/47a1623))
44
- refactor: add evidence contracts ([09a34f3](https://github.com/kleros/kleros-v2/commit/09a34f3))
55
- refactor: add interfaces + capped math ([e25b21f](https://github.com/kleros/kleros-v2/commit/e25b21f))
66
- refactor: add simple evidence home contract ([1b82f62](https://github.com/kleros/kleros-v2/commit/1b82f62))
77
- refactor: fix contract name ([6eb744a](https://github.com/kleros/kleros-v2/commit/6eb744a))
88
- refactor: remove foreign evidence interface ([ff8c50c](https://github.com/kleros/kleros-v2/commit/ff8c50c))
9+
- refactor(bridge): use ArbRetryableTx#getSubmissionPrice ([61bc2f3](https://github.com/kleros/kleros-v2/commit/61bc2f3))
910
- refactor(sdk): rename ([3241d10](https://github.com/kleros/kleros-v2/commit/3241d10))
10-
- test: add evidence contract tests ([590d800](https://github.com/kleros/kleros-v2/commit/590d800))
11-
- test: added a test for IncrementalNG ([65a996b](https://github.com/kleros/kleros-v2/commit/65a996b))
12-
- test(EvidenceModule): add test file ([9f00f98](https://github.com/kleros/kleros-v2/commit/9f00f98))
11+
- chore: .gitignore ([0ed4d74](https://github.com/kleros/kleros-v2/commit/0ed4d74))
12+
- chore: .gitignore and removal of unnecessary yarn cache as we are using "zero installs" ([a6cfdd0](https://github.com/kleros/kleros-v2/commit/a6cfdd0))
1313
- chore: added GitHub code scanning ([4a70475](https://github.com/kleros/kleros-v2/commit/4a70475))
1414
- chore: added the hardhat config for layer 2 networks, added hardhat-deploy and mocha ([a12ea0e](https://github.com/kleros/kleros-v2/commit/a12ea0e))
1515
- chore: gitignore typechain ([b50f777](https://github.com/kleros/kleros-v2/commit/b50f777))
1616
- chore(typechain): clean generated files ([775ddd0](https://github.com/kleros/kleros-v2/commit/775ddd0))
17+
- test: add evidence contract tests ([590d800](https://github.com/kleros/kleros-v2/commit/590d800))
18+
- test: added a test for IncrementalNG ([65a996b](https://github.com/kleros/kleros-v2/commit/65a996b))
19+
- test(EvidenceModule): add test file ([9f00f98](https://github.com/kleros/kleros-v2/commit/9f00f98))
1720
- fix: according to evidence standard + comments ([5c95828](https://github.com/kleros/kleros-v2/commit/5c95828))
1821
- fix: unused code ([26b5dc3](https://github.com/kleros/kleros-v2/commit/26b5dc3))
1922
- fix(Arbitrator): memory to calldata ([4770b1f](https://github.com/kleros/kleros-v2/commit/4770b1f))
@@ -22,6 +25,8 @@
2225
- fix(IArbitrator): change name to arbitration cost ([0ba4f29](https://github.com/kleros/kleros-v2/commit/0ba4f29))
2326
- fix(IArbitrator): interface simplification ([e81fb8b](https://github.com/kleros/kleros-v2/commit/e81fb8b))
2427
- fix(IArbitrator): replaced appealCost with fundingStatus ([f189dd9](https://github.com/kleros/kleros-v2/commit/f189dd9))
28+
- feat: add arbitrum L1 bridge and dependencies ([b412772](https://github.com/kleros/kleros-v2/commit/b412772))
29+
- feat: add arbitrum L2 bridge ([457b060](https://github.com/kleros/kleros-v2/commit/457b060))
2530
- feat: modern toolchain setup and simple RNG smart contracts ([17f6a76](https://github.com/kleros/kleros-v2/commit/17f6a76))
2631
- feat(Arbitration): standard update ([ed930de](https://github.com/kleros/kleros-v2/commit/ed930de))
2732
- docs: initial commit ([23356e7](https://github.com/kleros/kleros-v2/commit/23356e7))

contracts/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
"hardhat-deploy": "^0.9.6",
3737
"hardhat-deploy-ethers": "^0.3.0-beta.11",
3838
"hardhat-gas-reporter": "^1.0.4",
39+
"json-schema": "^0.4.0",
3940
"mocha": "^9.1.3",
4041
"solhint": "^3.3.6",
4142
"solidity-coverage": "^0.7.17",

yarn.lock

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1011,6 +1011,7 @@ __metadata:
10111011
hardhat-deploy: ^0.9.6
10121012
hardhat-deploy-ethers: ^0.3.0-beta.11
10131013
hardhat-gas-reporter: ^1.0.4
1014+
json-schema: ^0.4.0
10141015
mocha: ^9.1.3
10151016
solhint: ^3.3.6
10161017
solidity-coverage: ^0.7.17
@@ -8923,6 +8924,13 @@ __metadata:
89238924
languageName: node
89248925
linkType: hard
89258926

8927+
"json-schema@npm:^0.4.0":
8928+
version: 0.4.0
8929+
resolution: "json-schema@npm:0.4.0"
8930+
checksum: 66389434c3469e698da0df2e7ac5a3281bcff75e797a5c127db7c5b56270e01ae13d9afa3c03344f76e32e81678337a8c912bdbb75101c62e487dc3778461d72
8931+
languageName: node
8932+
linkType: hard
8933+
89268934
"json-stable-stringify-without-jsonify@npm:^1.0.1":
89278935
version: 1.0.1
89288936
resolution: "json-stable-stringify-without-jsonify@npm:1.0.1"

0 commit comments

Comments
 (0)