aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-07-12 19:14:02 +0800
committerGitHub <noreply@github.com>2018-07-12 19:14:02 +0800
commitfa8102880f87c5a2806d59f959fd3e8a62dd4dc9 (patch)
treee6e76488612e182389fc02fcb9e57f4b112a248d /Changelog.md
parent576f3ef18c47c13b92e5b604d19f99018b0300b0 (diff)
parent38026d311443f5f0f8fb23a928839136b56c97bd (diff)
downloaddexon-solidity-fa8102880f87c5a2806d59f959fd3e8a62dd4dc9.tar.gz
dexon-solidity-fa8102880f87c5a2806d59f959fd3e8a62dd4dc9.tar.zst
dexon-solidity-fa8102880f87c5a2806d59f959fd3e8a62dd4dc9.zip
Merge pull request #4428 from ethereum/enforce_staticcall_view
[BREAKING] Enforce STATICCALL for view and pure
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 98d725ee..b621f624 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -10,6 +10,7 @@ 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()``.
+ * Code Generator: Use ``STATICCALL`` for ``pure`` and ``view`` functions. This was already the case in the experimental 0.5.0 mode.
* Commandline interface: Remove obsolete ``--formal`` option.
* Commandline interface: Rename the ``--julia`` option to ``--yul``.
* Commandline interface: Require ``-`` if standard input is used as source.