Skip to content

Releases: OpenZeppelin/openzeppelin-upgrades

@openzeppelin/[email protected]

06 Feb 20:25
Compare
Choose a tag to compare
  • Support Defender deployments using EOA or Safe. (#967)

@openzeppelin/[email protected]

30 Jan 22:17
Compare
Choose a tag to compare
  • Add support for OP Sepolia to manifest file names. (#963)
  • Add support for Base networks to manifest file names. (#965)
  • Fix error when renaming network file and using a separate filesystem. (#964)

@openzeppelin/[email protected]

16 Jan 15:01
Compare
Choose a tag to compare
  • CLI: Improve checks for build info file settings. (#958)

@openzeppelin/[email protected]

09 Jan 18:12
Compare
Choose a tag to compare
  • Support proxy verification on Snowtrace. (#954)

@openzeppelin/[email protected]

21 Dec 01:08
Compare
Choose a tag to compare
  • Fix manifest error when connecting to an Anvil dev network. (#950)

@openzeppelin/[email protected]

21 Dec 00:44
Compare
Choose a tag to compare
  • Update dependency on undici. (#948)
  • Update Defender SDK, support txOverrides option with Defender. (#951)

@openzeppelin/[email protected]

21 Dec 00:43
Compare
Choose a tag to compare
  • Update Defender SDK, support txOverrides option with Defender. (#951)

@openzeppelin/[email protected]

14 Dec 19:09
Compare
Choose a tag to compare
  • CLI: Fix ambiguous name error when passing in fully qualified contract names. (#944)

@openzeppelin/[email protected]

11 Dec 14:53
Compare
Choose a tag to compare
  • Support deploying proxies from OpenZeppelin Contracts 5.0. (#919)
  • Fix address clash when redeploying implementation. (#939)

@openzeppelin/[email protected]

11 Dec 14:54
Compare
Choose a tag to compare

This is a major version of the Hardhat Upgrades plugin that contains breaking changes. Please review the changes below.

This version deploys proxy contracts from OpenZeppelin Contracts 5.0, and no longer supports deploying proxy contracts from OpenZeppelin Contracts 4.x. However, it still supports importing and/or managing existing proxies that were deployed from previous versions.

If you are using Hardhat Verify, this plugin now requires Hardhat Verify 2.0.0 or higher.

Summary

  • Deploy proxies from OpenZeppelin Contracts 5.0. (#919)
  • Support initialOwner option when deploying a transparent proxy or beacon. If not set, the externally owned account used during deployment will be the default owner for the transparent proxy's admin or the beacon, respectively.
  • Update optional peer dependency on @nomicfoundation/hardhat-verify to v2.0.0 or higher. (#937)
    • Note: Fully verifying proxies is only supported with Etherscan at the moment. The Hardhat Upgrades plugin does not currently assist with Sourcify verification for proxies.

Breaking changes

  • deployProxy, deployBeacon, deployBeaconProxy: Deploys proxy contracts from OpenZeppelin Contracts 5.0.
  • deployProxy:
    • Deploying a transparent proxy automatically causes a new proxy admin contract to be deployed along with the proxy.
    • New transparent proxy deployments no longer use an existing proxy admin, even if one was previously recorded in the network file.
    • New proxy admins are no longer recorded in the network file.
  • deployProxyAdmin: Removed, since proxy admins are deployed automatically by transparent proxies.
  • admin.changeProxyAdmin: Not supported with admins or proxies from OpenZeppelin Contracts 5.0. Only supported for previously deployed admins and proxies from OpenZeppelin Contracts 4.x or below.
  • admin.transferProxyAdminOwnership: This function no longer uses the proxy admin from the network file. It now requires a proxyAddress argument to be passed in.
  • @nomicfoundation/hardhat-verify v1.x and @nomicfoundation/hardhat-toolbox v3.x are no longer supported with this plugin. If you are using these packages, update them to @nomicfoundation/hardhat-verify v2.x and @nomicfoundation/hardhat-toolbox v4.x.