aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorChristian Parpart <christian@parpart.family>2018-07-31 22:18:00 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-08-01 19:02:59 +0800
commit38f9667e090492d0581a5f1a14a48504242ca28e (patch)
tree27c2b3a9e4c77512331054a53c863a94efa3b58e /Changelog.md
parentef269bf40d3c6fc044c27654473353c556402b77 (diff)
downloaddexon-solidity-38f9667e090492d0581a5f1a14a48504242ca28e.tar.gz
dexon-solidity-38f9667e090492d0581a5f1a14a48504242ca28e.tar.zst
dexon-solidity-38f9667e090492d0581a5f1a14a48504242ca28e.zip
Guard CycleDetector against recursion exhaustion.
fixes #3935.
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.