Skip to content

Commit

Permalink
Added version report CR7 (#9504)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvol authored Apr 28, 2022
1 parent 9acf3d0 commit b5d80c7
Show file tree
Hide file tree
Showing 2 changed files with 175 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,9 @@ jobs:
mkdir -p ~/.ssh
ssh-keyscan github.com >> ~/.ssh/known_hosts
echo "Comparing against $RELEASE_TAG"
# Github has phased out the git protocol so we ensure that we use
# https for all git operations that yarn may perform.
git config --global url."https://github.com".insteadOf git://github.com
yarn --cwd packages/protocol test:generate-old-devchain-and-build -b $RELEASE_TAG -d .tmp/released_chain -l /dev/stdout -g scripts/truffle/releaseGoldExampleConfigs.json
- persist_to_workspace:
root: .
Expand Down
172 changes: 172 additions & 0 deletions packages/protocol/releaseData/versionReports/release7-report.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
{
"oldArtifactsFolder": "/Users/martinvol/celo/celo-monorepo/packages/protocol/build/core-contracts.v6/contracts",
"newArtifactsFolder": "/Users/martinvol/celo/celo-monorepo/packages/protocol/build/celo-core-contracts-v7/contracts",
"exclude": "/.*Test|Mock.*|I[A-Z].*|.*Proxy|MultiSig.*|ReleaseGold|SlasherUtil|UsingPrecompiles/",
"report": {
"contracts": {
"Exchange": {
"changes": {
"storage": [],
"major": [
{
"contract": "Exchange",
"signature": "initialize(address,address,uint256,uint256,uint256,uint256)",
"type": "MethodRemoved"
}
],
"minor": [
{
"contract": "Exchange",
"signature": "initialize(address,string,uint256,uint256,uint256,uint256)",
"type": "MethodAdded"
},
{
"contract": "Exchange",
"signature": "activateStable()",
"type": "MethodAdded"
}
],
"patch": [
{
"contract": "Exchange",
"type": "DeployedBytecode"
}
]
},
"versionDelta": {
"storage": "=",
"major": "+1",
"minor": "0",
"patch": "0"
}
},
"ExchangeBRL": {
"changes": {
"storage": [],
"major": [
{
"contract": "ExchangeBRL",
"signature": "initialize(address,address,uint256,uint256,uint256,uint256)",
"type": "MethodRemoved"
}
],
"minor": [
{
"contract": "ExchangeBRL",
"signature": "initialize(address,string,uint256,uint256,uint256,uint256)",
"type": "MethodAdded"
},
{
"contract": "ExchangeBRL",
"signature": "activateStable()",
"type": "MethodAdded"
}
],
"patch": [
{
"contract": "ExchangeBRL",
"type": "DeployedBytecode"
}
]
},
"versionDelta": {
"storage": "=",
"major": "+1",
"minor": "0",
"patch": "0"
}
},
"ExchangeEUR": {
"changes": {
"storage": [],
"major": [
{
"contract": "ExchangeEUR",
"signature": "initialize(address,address,uint256,uint256,uint256,uint256)",
"type": "MethodRemoved"
}
],
"minor": [
{
"contract": "ExchangeEUR",
"signature": "initialize(address,string,uint256,uint256,uint256,uint256)",
"type": "MethodAdded"
},
{
"contract": "ExchangeEUR",
"signature": "activateStable()",
"type": "MethodAdded"
}
],
"patch": [
{
"contract": "ExchangeEUR",
"type": "DeployedBytecode"
}
]
},
"versionDelta": {
"storage": "=",
"major": "+1",
"minor": "0",
"patch": "0"
}
},
"Accounts": {
"changes": {
"storage": [],
"major": [],
"minor": [
{
"contract": "Accounts",
"signature": "setPaymentDelegation(address,uint256)",
"type": "MethodAdded"
},
{
"contract": "Accounts",
"signature": "getPaymentDelegation(address)",
"type": "MethodAdded"
},
{
"contract": "Accounts",
"signature": "deletePaymentDelegation()",
"type": "MethodAdded"
}
],
"patch": [
{
"contract": "Accounts",
"type": "DeployedBytecode"
}
]
},
"versionDelta": {
"storage": "=",
"major": "=",
"minor": "+1",
"patch": "0"
}
},
"Validators": {
"changes": {
"storage": [],
"major": [],
"minor": [],
"patch": [
{
"contract": "Validators",
"type": "DeployedBytecode"
}
]
},
"versionDelta": {
"storage": "=",
"major": "=",
"minor": "=",
"patch": "+1"
}
}
},
"libraries": {}
}
}

0 comments on commit b5d80c7

Please sign in to comment.