aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-07-02 18:55:22 +0800
committerGitHub <noreply@github.com>2018-07-02 18:55:22 +0800
commit85b9d3927a46748583a78e84c87559933954aebc (patch)
treebe4387a934cdefff0f603f14f6966e1a4c140f8e /Changelog.md
parenta5608b31a759031377ec91300ad7a470d48bb1d2 (diff)
parent7763d21cc6181204b1454437b051ac56d3e89339 (diff)
downloaddexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.tar.gz
dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.tar.zst
dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.zip
Merge pull request #4224 from ethereum/revert_wrong_calldata
[BREAKING] Revert if calldata has wrong size
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 b1f742bf..24ca5feb 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -8,6 +8,7 @@ How to update your code:
Breaking Changes:
* ABI Encoder: Properly pad data from calldata (``msg.data`` and external function parameters). Use ``abi.encodePacked`` for unpadded encoding.
* Code Generator: Signed right shift uses proper arithmetic shift, i.e. rounding towards negative infinity. Warning: this may silently change the semantics of existing code!
+ * Code Generator: Revert at runtime if calldata is too short or points out of bounds. This is done inside the ``ABI decoder`` and therefore also applies to ``abi.decode()``.
* Commandline interface: Remove obsolete ``--formal`` option.
* Commandline interface: Rename the ``--julia`` option to ``--yul``.
* Commandline interface: Require ``-`` if standard input is used as source.