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

feat: bump hardhat version and prepare new commons contracts release #113

Merged
merged 5 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions contracts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [UPCOMING]

## v1.4.0-alpha.6

### Added

- `Executor` contract, simple executor that loops through the actions and executes them.
- `RuledCondition` abstract contract that allows to create conditional permissions using rules.
- `currentTargetConfig` configuration to the `Plugin` it allows the plugins to execute through the Dao or the configured target.
- Included in the `IProposal` interface the functions `createProposal` `hasSucceeded` and `customProposalParamsABI`.
- `MetadataExtension` and `MetadataExtensionUpgradeable` abstract contracts that allows metadata setup at plugin level.

### Changed

- Use [OpenZepplin v4.9.6](https://github.com/OpenZeppelin/openzeppelin-contracts/releases/tag/v4.9.6).
- Updated hardhat configuration to use the `commons-config` networks.
- Proposals ids are no longer incremental with `proposalCount`, it will now be the resulting hash of proposal information and other important data.

### Deprecated

- `proposalCount` is deprecated, use instead`_createProposalId` function to get the proposal id.

## v1.4.0

Expand Down
4 changes: 2 additions & 2 deletions contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@aragon/osx-commons-contracts",
"license": "AGPL-3.0-or-later",
"description": "The Aragon OSx contracts package containing common utilities",
"version": "1.4.0-alpha.5",
"version": "v1.4.0-alpha.6",
"author": {
"name": "aragon",
"url": "https://github.com/aragon"
Expand Down Expand Up @@ -33,7 +33,7 @@
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"ethers": "5.7.2",
"hardhat": "^2.13.1",
"hardhat": "^2.22.15",
"hardhat-deploy": "^0.11.26",
"hardhat-gas-reporter": "^1.0.9",
"mocha": "^10.1.0",
Expand Down
Loading
Loading