LayerXcom / verified-vyper-contracts

FVyper: A collection of useful Vyper contracts developed with formal methods
Apache License 2.0
55 stars 15 forks source link

Bump vyper from 0.1.0b7 to 0.2.11 in /tests #87

Closed dependabot[bot] closed 3 years ago

dependabot[bot] commented 3 years ago

Bumps vyper from 0.1.0b7 to 0.2.11.

Release notes

Sourced from vyper's releases.

Vyper 0.2.11

This is a patch release to fix a memory corruption bug that was introduced in v0.2.9 (#2321) with excessive memory deallocation when releasing internal variables

Vyper 0.2.10

This is a quick patch release to fix incorrect generated ABIs that was introduced in v0.2.9 (#2311) where storage variable getters were incorrectly marked as nonpayable instead of view

Vyper 0.2.9

No release notes provided.

Vyper 0.2.8

No release notes provided.

Vyper 0.2.7

This is a quick patch release to fix a runtime error introduced in v0.2.6 (#2188) that could allow for memory corruption under certain conditions.

Vyper 0.2.6

No release notes provided.

Vyper 0.2.5

No release notes provided.

Vyper 0.2.4

No release notes provided.

Vyper 0.2.3

Non-breaking changes and improvements:

  • Show contract names in raised exceptions (#2103)
  • Adjust function offsets to not include decorators (#2102)
  • Raise certain exception types immediately during module-scoped type checking (#2101)

Fixes:

  • Pop for loop values from stack prior to returning (#2110)
  • Type checking non-literal array index values (#2108)
  • Meaningful output during for loop type checking (#2096)

Vyper 0.2.2

Fixed

  • Do not fold exponentiation to a negative power (#2089)
  • Add repr for mappings (#2090)
  • Literals are only validated once (#2093)

Version 0.2.1

See release notes: https://vyper.readthedocs.io/en/stable/release-notes.html#v0-2-1

NOTE: v0.2.0 had a conflict in PyPI, but is identical to v0.2.1

Version 0.2.0

... (truncated)

Changelog

Sourced from vyper's changelog.

v0.2.11


Date released: 27-02-2021

This is a quick patch release to fix a memory corruption bug that was introduced in v0.2.9 ([#2321](https://github.com/vyperlang/vyper/issues/2321) <https://github.com/vyperlang/vyper/pull/2321>_) with excessive memory deallocation when releasing internal variables

v0.2.10


THIS RELEASE HAS BEEN PULLED

Date released: 17-02-2021

This is a quick patch release to fix incorrect generated ABIs that was introduced in v0.2.9 ([#2311](https://github.com/vyperlang/vyper/issues/2311) <https://github.com/vyperlang/vyper/pull/2311>_) where storage variable getters were incorrectly marked as nonpayable instead of view

v0.2.9


THIS RELEASE HAS BEEN PULLED

Date released: 16-02-2021

Non-breaking changes and improvements:

  • Add license to wheel, Anaconda support ([#2265](https://github.com/vyperlang/vyper/issues/2265) <https://github.com/vyperlang/vyper/pull/2265>_)
  • Consider events during type-check with implements: ([#2283](https://github.com/vyperlang/vyper/issues/2283) <https://github.com/vyperlang/vyper/pull/2283>_)
  • Refactor ABI generation ([#2284](https://github.com/vyperlang/vyper/issues/2284) <https://github.com/vyperlang/vyper/pull/2284>_)
  • Remove redundant checks in parser/signatures ([#2288](https://github.com/vyperlang/vyper/issues/2288) <https://github.com/vyperlang/vyper/pull/2288>_)
  • Streamling ABI-encoding logic for tuple return types ([#2302](https://github.com/vyperlang/vyper/issues/2302) <https://github.com/vyperlang/vyper/pull/2302>_)
  • Optimize function ordering within bytecode ([#2303](https://github.com/vyperlang/vyper/issues/2303) <https://github.com/vyperlang/vyper/pull/2303>_)
  • Assembly-level optimizations ([#2304](https://github.com/vyperlang/vyper/issues/2304) <https://github.com/vyperlang/vyper/pull/2304>_)
  • Optimize nonpayable assertion ([#2307](https://github.com/vyperlang/vyper/issues/2307) <https://github.com/vyperlang/vyper/pull/2307>_)
  • Optimize re-entrancy locks ([#2308](https://github.com/vyperlang/vyper/issues/2308) <https://github.com/vyperlang/vyper/pull/2308>_)

Fixes:

  • Change forwarder proxy bytecode to ERC-1167 ([#2281](https://github.com/vyperlang/vyper/issues/2281) <https://github.com/vyperlang/vyper/pull/2281>_)
  • Reserved keywords check update ([#2286](https://github.com/vyperlang/vyper/issues/2286) <https://github.com/vyperlang/vyper/pull/2286>_)
  • Incorrect type-check error in literal lists ([#2309](https://github.com/vyperlang/vyper/issues/2309) <https://github.com/vyperlang/vyper/pull/2309>_)

Tons of Refactoring work courtesy of (@iamdefinitelyahuman <https://github.com/iamdefinitelyahuman>_)!

v0.2.8


Date released: 04-12-2020

Non-breaking changes and improvements:

  • AST updates to provide preliminary support for Python 3.9 ([#2225](https://github.com/vyperlang/vyper/issues/2225) <https://github.com/vyperlang/vyper/pull/2225>_)
  • Support for the not in comparator ([#2232](https://github.com/vyperlang/vyper/issues/2232) <https://github.com/vyperlang/vyper/pull/2232>_)
  • Lift restriction on calldata variables shadowing storage variables ([#2226](https://github.com/vyperlang/vyper/issues/2226) <https://github.com/vyperlang/vyper/pull/2226>_)
  • Optimize shift bytecode when 2nd arg is a literal ([#2201](https://github.com/vyperlang/vyper/issues/2201) <https://github.com/vyperlang/vyper/pull/2201>_)

... (truncated)

Commits
  • 5db35ef chore: bumpversion 0.2.10 -> 0.2.11
  • 58fa9a4 Merge pull request #2327 from vyperlang/release/0.2.11
  • a9e5d03 chore: add release notes for v0.2.11
  • e00c0f6 Merge pull request #2321 from iamdefinitelyahuman/fix-mem-dealloc
  • cc39ca6 test: add test case for correct memory deallocation
  • ca2dc81 fix: correctly return size for new types
  • 418c85b Merge pull request #2312 from vyperlang/releases/v0.2.10
  • 1275270 Update release notes for v0.2.10
  • a0ae1cb chore: bumpversion to v0.2.10
  • 2ea0a0f Merge pull request #2311 from iamdefinitelyahuman/fix-public-getters
  • Additional commits viewable in compare view


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 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/LayerXcom/verified-vyper-contracts/network/alerts).
dependabot[bot] commented 3 years ago

Superseded by #88.