aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-06-27 20:37:45 +0800
committerGitHub <noreply@github.com>2017-06-27 20:37:45 +0800
commite715dd0b7e382b71abf50c974f943423048d138e (patch)
treeb39a53434983fe7a89051697872b646101d725fe /Changelog.md
parentec15df2aa76c4df532126ec34761b268a1e78b2d (diff)
parentbc31d4969ccdea8804f573bcf5104c154df9aff6 (diff)
downloaddexon-solidity-e715dd0b7e382b71abf50c974f943423048d138e.tar
dexon-solidity-e715dd0b7e382b71abf50c974f943423048d138e.tar.gz
dexon-solidity-e715dd0b7e382b71abf50c974f943423048d138e.tar.bz2
dexon-solidity-e715dd0b7e382b71abf50c974f943423048d138e.tar.lz
dexon-solidity-e715dd0b7e382b71abf50c974f943423048d138e.tar.xz
dexon-solidity-e715dd0b7e382b71abf50c974f943423048d138e.tar.zst
dexon-solidity-e715dd0b7e382b71abf50c974f943423048d138e.zip
Merge branch 'develop' into utf8-strict-parser
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md
index 5f4ec10b..3d8701ca 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -11,6 +11,7 @@ Features:
* Inline Assembly: introduce ``keccak256`` as an opcode. ``sha3`` is still a valid alias.
* Inline Assembly: ``for`` and ``switch`` statements.
* Inline Assembly: function definitions and function calls.
+ * Type Checker: Warn about copies in storage that might overwrite unexpectedly.
* Code Generator: Added the Whiskers template system.
* Remove obsolete Why3 output.
* Type Checker: Enforce strict UTF-8 validation.
@@ -19,6 +20,8 @@ Bugfixes:
* Code generator: Use ``REVERT`` instead of ``INVALID`` for generated input validation routines.
* Type Checker: Fix address literals not being treated as compile-time constants.
* Type Checker: Disallow invoking the same modifier multiple times.
+ * Type Checker: Make UTF8-validation a bit more sloppy to include more valid sequences.
+ * Type Checker: Disallow comparisons between mapping and non-internal function types.
* Type Checker: Do not treat strings that look like addresses as addresses.
* Type Checker: Support valid, but incorrectly rejected UTF-8 sequences.
* Fixed crash concerning non-callable types.