8000 Releases · vittominacori/eth-token-recover · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Releases: vittominacori/eth-token-recover

v6.7.0

02 May 16:46
ab33fea
Compare
Choose a tag to compare

What's Changed

  • chore: update dependencies
  • chore(deps): bump base-x from 3.0.10 to 3.0.11 by @dependabot in #45

Full Changelog: v6.6.0...v6.7.0

v6.6.0

09 Apr 17:12
2349b2f
Compare
Choose a tag to compare

What's Changed

  • chore: update openzeppelin contracts to 5.3.0
  • chore(deps): bump axios from 1.7.9 to 1.8.2 by @dependabot in #44

Full Changelog: v6.5.0...v6.6.0

v6.5.0

09 Jan 16:01
Compare
Choose a tag to compare

What's Changed

  • update open-zeppelin to 5.2.0
  • update node and dependencies

Full Changelog: v6.4.0...v6.5.0

v6.4.0

18 Oct 09:01
Compare
Choose a tag to compare

What's Changed

  • updated OpenZeppelin to v5.1
  • updated solc to v0.8.28

Full Changelog: v6.3.0...v6.4.0

v6.3.0

27 Mar 17:00
Compare
Choose a tag to compare

Update dependencies and solc.

Full Changelog: v6.2.0...v6.3.0

v6.2.0

01 Mar 15:40
Compare
Choose a tag to compare

What's Changed

  • update node to v20 and solc to v0.8.24
  • chore: update solidity-coverage
  • chore(deps-dev): bump undici from 5.28.2 to 5.28.3 by @dependabot in #24
  • chore(deps-dev): bump ip from 1.1.8 to 1.1.9 by @dependabot in #25
  • chore(deps): bump @openzeppelin/contracts from 5.0.1 to 5.0.2 by @dependabot in #26

Full Changelog: v6.1.3...v6.2.0

v6.1.3

18 Jan 14:15
Compare
Choose a tag to compare

Update dependencies and linter config.

What's Changed

  • chore(deps-dev): bump follow-redirects from 1.15.3 to 1.15.4 by @dependabot in #23

Full Changelog: v6.1.2...v6.1.3

v6.1.2

08 Dec 18:57
Compare
Choose a tag to compare

Update dependencies

Full Changelog: v6.1.1...v6.1.2

v6.1.1

14 Nov 14:09
Compare
Choose a tag to compare
  • Update solidity to 0.8.23
  • Update dependencies

Full Changelog: v6.1.0...v6.1.1

v6.1.0

27 Oct 12:49
Compare
Choose a tag to compare

Adds a backward compatible (legacy) version is available in the legacy folder.

TokenRecoverLegacy contract will:

  • implicitly set the deployer as contract owner
  • send recovered tokens to owner instead of providing an explicit receiver

To use TokenRecoverLegacy, a contract inheriting from TokenRecover needs to be updated in the following way

pragma solidity ^0.8.20;

-import {TokenRecover} from "eth-token-recover/contracts/TokenRecover.sol";
+import {TokenRecoverLegacy} from "eth-token-recover/contracts/legacy/TokenRecoverLegacy.sol";

-contract MyContract is TokenRecover {    
+contract MyContract is TokenRecoverLegacy {    
    // your stuff
}

DISCLAIMER
TokenRecoverLegacy is a legacy version of TokenRecover that works as v4.x and earlier and MAY be removed in future releases.

We highly recommend to keep the code updated to use newer versions of the recover.

0