Skip to content

Commit

Permalink
Changelogs, lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ericglau committed Oct 10, 2023
1 parent 41290a2 commit 081b195
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
6 changes: 5 additions & 1 deletion packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## Unreleased

- Fix Hardhat compile error with older versions of Solidity. ([#892](https://github.com/OpenZeppelin/openzeppelin-upgrades/pull/892))

## 1.30.0 (2023-09-27)

- Support new upgrade interface in OpenZeppelin Contracts 5.0. ([883](https://github.com/OpenZeppelin/openzeppelin-upgrades/pull/883))
- Support new upgrade interface in OpenZeppelin Contracts 5.0. ([#883](https://github.com/OpenZeppelin/openzeppelin-upgrades/pull/883))
- Add validations for namespaced storage layout. ([#876](https://github.com/OpenZeppelin/openzeppelin-upgrades/pull/876))
- Deprecate low-level API. Use [CLI or high-level API](https://docs.openzeppelin.com/upgrades-plugins/1.x/api-core) instead.

Expand Down
4 changes: 4 additions & 0 deletions packages/plugin-hardhat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased

- Fix Hardhat compile error with older versions of Solidity. ([#892](https://github.com/OpenZeppelin/openzeppelin-upgrades/pull/892))

## 2.3.1 (2023-09-28)

- Check for non-zero admin address when importing transparent proxy. ([#887](https://github.com/OpenZeppelin/openzeppelin-upgrades/pull/887))
Expand Down
4 changes: 3 additions & 1 deletion packages/plugin-hardhat/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ subtask(TASK_COMPILE_SOLIDITY, async (args: { force: boolean }, hre, runSuper) =
});

subtask(TASK_COMPILE_SOLIDITY_COMPILE, async (args: RunCompilerArgs, hre, runSuper) => {
const { isNamespaceSupported, validate, solcInputOutputDecoder, makeNamespacedInput } = await import('@openzeppelin/upgrades-core');
const { isNamespaceSupported, validate, solcInputOutputDecoder, makeNamespacedInput } = await import(
'@openzeppelin/upgrades-core'
);
const { writeValidations } = await import('./utils/validations');

// TODO: patch input
Expand Down

0 comments on commit 081b195

Please sign in to comment.