-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Sort and copyedit changelog. #8933
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Changelog.md
Outdated
* Disallow index range accesses for arrays with dynamically encoded base types. | ||
* Code Generator: Fixed that string literals containing backslash characters could cause incorrect code to be generated when passed directly to function calls or encoding functions when ABIEncoderV2 is active. | ||
* Disallow index range (array slice) accesses for arrays with dynamically encoded base types. | ||
* Fixed that string literals containing backslash characters could cause incorrect code to be generated when passed directly to function calls or encoding functions when ABIEncoderV2 is active. | ||
|
||
|
||
Language Features: | ||
* Implemented ``type(X).min`` and ``type(X).max`` for every integer type ``X`` that returns the smallest and largest value representable by the type. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Implemented ``type(X).min`` and ``type(X).max`` for every integer type ``X`` that returns the smallest and largest value representable by the type. | |
* Implemented ``type(T).min`` and ``type(T).max`` for every integer type ``T`` that returns the smallest and largest value representable by the type. |
Changelog.md
Outdated
|
||
|
||
Language Features: | ||
* Implemented ``type(X).min`` and ``type(X).max`` for every integer type ``X`` that returns the smallest and largest value representable by the type. | ||
|
||
|
||
Compiler Features: | ||
* Commandline Interface: Don't ignore `--yul-optimizations` in assembly mode. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why remove this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow, I just overlooked that!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
merge problem I think
Changelog.md
Outdated
* Disallow index range (array slice) accesses for arrays with dynamically encoded base types. | ||
* Fixed that string literals containing backslash characters could cause incorrect code to be generated when passed directly to function calls or encoding functions when ABIEncoderV2 is active. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Disallow index range (array slice) accesses for arrays with dynamically encoded base types. | |
* Fixed that string literals containing backslash characters could cause incorrect code to be generated when passed directly to function calls or encoding functions when ABIEncoderV2 is active. | |
* Disallow array slices stemming from index range accesses to arrays with dynamically encoded base types. | |
* String literals containing backslash characters can no longer cause incorrect code to be generated when passed directly to function calls or encoding functions when ABIEncoderV2 is active. |
Maybe, if we're changing them anyways :-)?
Or for the first one:
* Disallow array slices of arrays with dynamically encoded base types.
No description provided.