aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-08-01 19:48:46 +0800
committerGitHub <noreply@github.com>2018-08-01 19:48:46 +0800
commit8d05770e59dd4c383cdcd5f67d2a455be3b09ae1 (patch)
tree15f4f10aece4dbece921211b044787c74d7de1fc /Changelog.md
parentef269bf40d3c6fc044c27654473353c556402b77 (diff)
parentcb200cf7e11d3a61b0780d22eb9c8baf6eb35aac (diff)
downloaddexon-solidity-8d05770e59dd4c383cdcd5f67d2a455be3b09ae1.tar
dexon-solidity-8d05770e59dd4c383cdcd5f67d2a455be3b09ae1.tar.gz
dexon-solidity-8d05770e59dd4c383cdcd5f67d2a455be3b09ae1.tar.bz2
dexon-solidity-8d05770e59dd4c383cdcd5f67d2a455be3b09ae1.tar.lz
dexon-solidity-8d05770e59dd4c383cdcd5f67d2a455be3b09ae1.tar.xz
dexon-solidity-8d05770e59dd4c383cdcd5f67d2a455be3b09ae1.tar.zst
dexon-solidity-8d05770e59dd4c383cdcd5f67d2a455be3b09ae1.zip
Merge pull request #4631 from ethereum/cp-cycle-detection-recursion-guard
Guard CycleDetector against recursion exhaustion.
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md
index bcd55955..6bab91ee 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -46,6 +46,7 @@ Breaking Changes:
* Type Checker: Disallow specifying base constructor arguments multiple times in the same inheritance hierarchy. This was already the case in the experimental 0.5.0 mode.
* Type Checker: Disallow calling constructor with wrong argument count. This was already the case in the experimental 0.5.0 mode.
* Type Checker: Disallow uninitialized storage variables. This was already the case in the experimental 0.5.0 mode.
+ * Type Checker: Detecting cyclic dependencies in variables and structs is limited in recursion to 256.
* Type Checker: Only accept a single ``bytes`` type for ``.call()`` (and family), ``keccak256()``, ``sha256()`` and ``ripemd160()``.
* Type Checker: Fallback function must be external. This was already the case in the experimental 0.5.0 mode.
* Type Checker: Interface functions must be declared external. This was already the case in the experimental 0.5.0 mode.