diff options
author | Leonardo Alt <leo@ethereum.org> | 2018-08-15 23:10:02 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-09-07 00:28:16 +0800 |
commit | 409b20f204df74b24d77d9d88ea0fc9436c58d61 (patch) | |
tree | d379b1563b5b328b70d63706213f58430b6b9c5e /docs | |
parent | 13c8bb1c8920b6ea507688e24adb68e3bf0aed9f (diff) | |
download | dexon-solidity-409b20f204df74b24d77d9d88ea0fc9436c58d61.tar.gz dexon-solidity-409b20f204df74b24d77d9d88ea0fc9436c58d61.tar.zst dexon-solidity-409b20f204df74b24d77d9d88ea0fc9436c58d61.zip |
Bug list entry
Diffstat (limited to 'docs')
-rw-r--r-- | docs/bugs.json | 8 | ||||
-rw-r--r-- | docs/bugs_by_version.json | 26 |
2 files changed, 28 insertions, 6 deletions
diff --git a/docs/bugs.json b/docs/bugs.json index b464be18..8eae2af3 100644 --- a/docs/bugs.json +++ b/docs/bugs.json @@ -1,4 +1,12 @@ [ + { + "name": "EventStructWrongData", + "summary": "Using structs in events logged wrong data.", + "description": "If a struct is used in an event, the address of the struct is logged instead of the actual data.", + "introduced": "0.4.17", + "fixed": "0.5.0", + "severity": "very low" + }, { "name": "OneOfTwoConstructorsSkipped", "summary": "If a contract has both a new-style constructor (using the constructor keyword) and an old-style constructor (a function with the same name as the contract) at the same time, one of them will be ignored.", diff --git a/docs/bugs_by_version.json b/docs/bugs_by_version.json index 2fe1d226..00531b9e 100644 --- a/docs/bugs_by_version.json +++ b/docs/bugs_by_version.json @@ -389,16 +389,21 @@ }, "0.4.17": { "bugs": [ + "EventStructWrongData", "ZeroFunctionSelector" ], "released": "2017-09-21" }, "0.4.18": { - "bugs": [], + "bugs": [ + "EventStructWrongData" + ], "released": "2017-10-18" }, "0.4.19": { - "bugs": [], + "bugs": [ + "EventStructWrongData" + ], "released": "2017-11-30" }, "0.4.2": { @@ -415,25 +420,34 @@ "released": "2016-09-17" }, "0.4.20": { - "bugs": [], + "bugs": [ + "EventStructWrongData" + ], "released": "2018-02-14" }, "0.4.21": { - "bugs": [], + "bugs": [ + "EventStructWrongData" + ], "released": "2018-03-07" }, "0.4.22": { "bugs": [ + "EventStructWrongData", "OneOfTwoConstructorsSkipped" ], "released": "2018-04-16" }, "0.4.23": { - "bugs": [], + "bugs": [ + "EventStructWrongData" + ], "released": "2018-04-19" }, "0.4.24": { - "bugs": [], + "bugs": [ + "EventStructWrongData" + ], "released": "2018-05-16" }, "0.4.3": { |