Skip to content
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

Bump vyper from 0.3.3 to 0.3.10 #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Oct 24, 2023

Bumps vyper from 0.3.3 to 0.3.10.

Release notes

Sourced from vyper's releases.

v0.3.10 ("Black Adder")

v0.3.10 is a performance focused release that additionally ships numerous bugfixes. It adds a codesize optimization mode (#3493), adds new vyper-specific #pragma directives (#3493), uses Cancun’s MCOPY opcode for some compiler generated code (#3483), and generates selector tables which now feature O(1) performance (#3496).

Breaking changes

  • add runtime code layout to initcode (#3584)
  • drop evm versions through istanbul (#3470)
  • remove vyper signature from runtime (#3471)
  • only allow valid identifiers to be nonreentrant keys (#3605)

Non-breaking changes and improvements

Notable fixes

  • fix ecrecover() behavior when signature is invalid (GHSA-f5x6-7qgp-jhf3, #3586)
  • fix: order of evaluation for some builtins (#3583, #3587)
  • fix: memory allocation in certain builtins using msize (#3610)
  • fix: _abi_decode() input validation in certain complex expressions (#3626)
  • fix: pycryptodome for arm builds (#3485)
  • let params of internal functions be mutable (#3473)
  • typechecking of folded builtins in (#3490)
  • update tload/tstore opcodes per latest 1153 EIP spec (#3484)
  • fix: raw_call type when max_outsize=0 is set (#3572)
  • fix: implements check for indexed event arguments (#3570)
  • fix: type-checking for _abi_decode() arguments (#3626)

Other docs updates, chores and fixes

  • relax restrictions on internal function signatures (#3573)
  • note on security advisory in release notes for versions 0.2.15, 0.2.16, and 0.3.0 (#3553)
  • fix: yanked version in release notes (#3545)
  • update release notes on yanked versions (#3547)
  • improve error message for conflicting methods IDs (#3491)
  • document epsilon builtin (#3552)
  • relax version pragma parsing (#3511)
  • fix: issue with finding installed packages in editable mode (#3510)
  • add note on security advisory for ecrecover in docs (#3539)
  • add asm option to cli help (#3585)
  • add message to error map for repeat range check (#3542)
  • fix: public constant arrays (#3536)

New Contributors

Full Changelog: vyperlang/vyper@v0.3.9...v0.3.10

v0.3.10rc5

What's Changed

... (truncated)

Changelog

Sourced from vyper's changelog.

v0.3.10 ("Black Adder")


Date released: 2023-10-04

v0.3.10 is a performance focused release that additionally ships numerous bugfixes. It adds a codesize optimization mode ([#3493](https://github.com/vyperlang/vyper/issues/3493) <https://github.com/vyperlang/vyper/pull/3493>), adds new vyper-specific #pragma directives ([#3493](https://github.com/vyperlang/vyper/issues/3493) <https://github.com/vyperlang/vyper/pull/3493>), uses Cancun's MCOPY opcode for some compiler generated code ([#3483](https://github.com/vyperlang/vyper/issues/3483) <https://github.com/vyperlang/vyper/pull/3483>), and generates selector tables which now feature O(1) performance ([#3496](https://github.com/vyperlang/vyper/issues/3496) <https://github.com/vyperlang/vyper/pull/3496>).

Breaking changes:

  • add runtime code layout to initcode ([#3584](https://github.com/vyperlang/vyper/issues/3584) <https://github.com/vyperlang/vyper/pull/3584>_)
  • drop evm versions through istanbul ([#3470](https://github.com/vyperlang/vyper/issues/3470) <https://github.com/vyperlang/vyper/pull/3470>_)
  • remove vyper signature from runtime ([#3471](https://github.com/vyperlang/vyper/issues/3471) <https://github.com/vyperlang/vyper/pull/3471>_)
  • only allow valid identifiers to be nonreentrant keys ([#3605](https://github.com/vyperlang/vyper/issues/3605) <https://github.com/vyperlang/vyper/pull/3605>_)

Non-breaking changes and improvements:

  • O(1) selector tables ([#3496](https://github.com/vyperlang/vyper/issues/3496) <https://github.com/vyperlang/vyper/pull/3496>_)
  • implement bound= in ranges ([#3537](https://github.com/vyperlang/vyper/issues/3537) <https://github.com/vyperlang/vyper/pull/3537>, [#3551](https://github.com/vyperlang/vyper/issues/3551) <https://github.com/vyperlang/vyper/pull/3551>)
  • add optimization mode to vyper compiler ([#3493](https://github.com/vyperlang/vyper/issues/3493) <https://github.com/vyperlang/vyper/pull/3493>_)
  • improve batch copy performance ([#3483](https://github.com/vyperlang/vyper/issues/3483) <https://github.com/vyperlang/vyper/pull/3483>, [#3499](https://github.com/vyperlang/vyper/issues/3499) <https://github.com/vyperlang/vyper/pull/3499>, [#3525](https://github.com/vyperlang/vyper/issues/3525) <https://github.com/vyperlang/vyper/pull/3525>_)

Notable fixes:

  • fix ecrecover() behavior when signature is invalid (GHSA-f5x6-7qgp-jhf3 <https://github.com/vyperlang/vyper/security/advisories/GHSA-f5x6-7qgp-jhf3>, [#3586](https://github.com/vyperlang/vyper/issues/3586) <https://github.com/vyperlang/vyper/pull/3586>)
  • fix: order of evaluation for some builtins ([#3583](https://github.com/vyperlang/vyper/issues/3583) <https://github.com/vyperlang/vyper/pull/3583>, [#3587](https://github.com/vyperlang/vyper/issues/3587) <https://github.com/vyperlang/vyper/pull/3587>)
  • fix: memory allocation in certain builtins using msize ([#3610](https://github.com/vyperlang/vyper/issues/3610) <https://github.com/vyperlang/vyper/pull/3610>_)
  • fix: _abi_decode() input validation in certain complex expressions ([#3626](https://github.com/vyperlang/vyper/issues/3626) <https://github.com/vyperlang/vyper/pull/3626>_)
  • fix: pycryptodome for arm builds ([#3485](https://github.com/vyperlang/vyper/issues/3485) <https://github.com/vyperlang/vyper/pull/3485>_)
  • let params of internal functions be mutable ([#3473](https://github.com/vyperlang/vyper/issues/3473) <https://github.com/vyperlang/vyper/pull/3473>_)
  • typechecking of folded builtins in ([#3490](https://github.com/vyperlang/vyper/issues/3490) <https://github.com/vyperlang/vyper/pull/3490>_)
  • update tload/tstore opcodes per latest 1153 EIP spec ([#3484](https://github.com/vyperlang/vyper/issues/3484) <https://github.com/vyperlang/vyper/pull/3484>_)
  • fix: raw_call type when max_outsize=0 is set ([#3572](https://github.com/vyperlang/vyper/issues/3572) <https://github.com/vyperlang/vyper/pull/3572>_)
  • fix: implements check for indexed event arguments ([#3570](https://github.com/vyperlang/vyper/issues/3570) <https://github.com/vyperlang/vyper/pull/3570>_)
  • fix: type-checking for _abi_decode() arguments ([#3626](https://github.com/vyperlang/vyper/issues/3626) <https://github.com/vyperlang/vyper/pull/3623>_)

Other docs updates, chores and fixes:

  • relax restrictions on internal function signatures ([#3573](https://github.com/vyperlang/vyper/issues/3573) <https://github.com/vyperlang/vyper/pull/3573>_)
  • note on security advisory in release notes for versions 0.2.15, 0.2.16, and 0.3.0 ([#3553](https://github.com/vyperlang/vyper/issues/3553) <https://github.com/vyperlang/vyper/pull/3553>_)
  • fix: yanked version in release notes ([#3545](https://github.com/vyperlang/vyper/issues/3545) <https://github.com/vyperlang/vyper/pull/3545>_)
  • update release notes on yanked versions ([#3547](https://github.com/vyperlang/vyper/issues/3547) <https://github.com/vyperlang/vyper/pull/3547>_)
  • improve error message for conflicting methods IDs ([#3491](https://github.com/vyperlang/vyper/issues/3491) <https://github.com/vyperlang/vyper/pull/3491>_)
  • document epsilon builtin ([#3552](https://github.com/vyperlang/vyper/issues/3552) <https://github.com/vyperlang/vyper/pull/3552>_)
  • relax version pragma parsing ([#3511](https://github.com/vyperlang/vyper/issues/3511) <https://github.com/vyperlang/vyper/pull/3511>_)
  • fix: issue with finding installed packages in editable mode ([#3510](https://github.com/vyperlang/vyper/issues/3510) <https://github.com/vyperlang/vyper/pull/3510>_)

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [vyper](https://github.com/vyperlang/vyper) from 0.3.3 to 0.3.10.
- [Release notes](https://github.com/vyperlang/vyper/releases)
- [Changelog](https://github.com/vyperlang/vyper/blob/master/docs/release-notes.rst)
- [Commits](vyperlang/vyper@v0.3.3...v0.3.10)

---
updated-dependencies:
- dependency-name: vyper
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants