Skip to content

Commit

Permalink
chore: version packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 21, 2023
1 parent 2adaaa7 commit 9e3d5af
Show file tree
Hide file tree
Showing 28 changed files with 98 additions and 194 deletions.
6 changes: 0 additions & 6 deletions onchain/rollups/.changeset/clean-spies-deny.md

This file was deleted.

8 changes: 0 additions & 8 deletions onchain/rollups/.changeset/cool-suits-lick.md

This file was deleted.

6 changes: 0 additions & 6 deletions onchain/rollups/.changeset/dull-clouds-smash.md

This file was deleted.

6 changes: 0 additions & 6 deletions onchain/rollups/.changeset/early-lies-hide.md

This file was deleted.

7 changes: 0 additions & 7 deletions onchain/rollups/.changeset/giant-gorillas-flash.md

This file was deleted.

6 changes: 0 additions & 6 deletions onchain/rollups/.changeset/gorgeous-onions-count.md

This file was deleted.

7 changes: 0 additions & 7 deletions onchain/rollups/.changeset/grumpy-cooks-watch.md

This file was deleted.

8 changes: 0 additions & 8 deletions onchain/rollups/.changeset/khaki-ladybugs-begin.md

This file was deleted.

5 changes: 0 additions & 5 deletions onchain/rollups/.changeset/lemon-eels-walk.md

This file was deleted.

7 changes: 0 additions & 7 deletions onchain/rollups/.changeset/lucky-kings-switch.md

This file was deleted.

7 changes: 0 additions & 7 deletions onchain/rollups/.changeset/mean-cars-applaud.md

This file was deleted.

6 changes: 0 additions & 6 deletions onchain/rollups/.changeset/nervous-hairs-flow.md

This file was deleted.

7 changes: 0 additions & 7 deletions onchain/rollups/.changeset/odd-sloths-tie.md

This file was deleted.

7 changes: 0 additions & 7 deletions onchain/rollups/.changeset/plenty-feet-help.md

This file was deleted.

10 changes: 0 additions & 10 deletions onchain/rollups/.changeset/proud-news-invent.md

This file was deleted.

7 changes: 0 additions & 7 deletions onchain/rollups/.changeset/quick-dodos-accept.md

This file was deleted.

5 changes: 0 additions & 5 deletions onchain/rollups/.changeset/quick-months-type.md

This file was deleted.

6 changes: 0 additions & 6 deletions onchain/rollups/.changeset/rotten-yaks-help.md

This file was deleted.

6 changes: 0 additions & 6 deletions onchain/rollups/.changeset/sharp-actors-brake.md

This file was deleted.

8 changes: 0 additions & 8 deletions onchain/rollups/.changeset/short-bears-flash.md

This file was deleted.

7 changes: 0 additions & 7 deletions onchain/rollups/.changeset/small-eyes-notice.md

This file was deleted.

10 changes: 0 additions & 10 deletions onchain/rollups/.changeset/sweet-pianos-exist.md

This file was deleted.

16 changes: 0 additions & 16 deletions onchain/rollups/.changeset/three-pigs-flow.md

This file was deleted.

7 changes: 0 additions & 7 deletions onchain/rollups/.changeset/tough-shoes-taste.md

This file was deleted.

10 changes: 0 additions & 10 deletions onchain/rollups/.changeset/tricky-cobras-draw.md

This file was deleted.

8 changes: 0 additions & 8 deletions onchain/rollups/.changeset/twelve-dragons-lie.md

This file was deleted.

97 changes: 97 additions & 0 deletions onchain/rollups/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,102 @@
# @cartesi/rollups

## 2.0.0

### Major Changes

- 9c586026: Changed the behavior of the `executeVoucher` function from the `CartesiDApp` contract to propagate any errors raised by the message call.
This should allow users and developers to know the reason as to why a given voucher failed to execute.
Front-ends should propagate the error message to the user to improve the UX.
Smart contracts that call this function should either try to handle the error or propagate it.
- cc3ae5c1: Removed `AuthorityHistoryPairFactory` and `IAuthorityHistoryPairFactory`.
These contracts will no longer be necessary, given the refactor in the `Authority` contract.
- 2a84457c: Bumped Solidity to `0.8.20`.
This change was made to work with `@openzeppelin/[email protected]`.
- 87cb24b1: Removed support to Goerli testnets (L1 and L2s).
Goerli has been deprecated by the Ethereum Foundation in 2023.
The EF advises users of Goerli to migrate their applications to Sepolia, which we support.
- 69bee531: Removed `HistoryFactory` and `IHistoryFactory`.
These contracts will no longer be necessary, given the refactor in the `Authority` contract.
- 87f7b716: Moved the definition of the `OutputValidityProof` structure to its own file.
This change was made to avoid coupling this structure with the `LibOutputValidation` library.
Contracts that imported this structure from `contracts/library/LibOutputValidation.sol` must now import it from `contracts/common/OutputValidityProof.sol`.
- 705230f8: Changed `VoucherExecuted` event to have `inputIndex` and `outputIndexWithinInput` as parameters instead of `voucherPosition`.
This change was made due to an internal change that involved transitioning from the homebrew `Bitmask` library to OpenZeppelin's `BitMaps` library.
It is now easier for the off-chain to reason about `VoucherExecuted` events, since they don't have to decode `voucherPosition` into `inputIndex` and `outputIndexWithinInput` anymore.
Off-chain components that listened to `VoucherExecuted` must now listen to the new event instead.
- 76234f7c: Bumped `@openzeppelin/contracts` to `5.0.0`. See the list of [breaking changes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases/tag/v5.0.0).
- 94712486: Removed the boolean return value from the functions `executeVoucher` and `validateNotice` of the `ICartesiDApp` interface.
This change was made because these functions would never return `false`.
Contracts and EOAs that called these functions now shouldn't expect a boolean return value.
- f5f37169: Moved the definition of the `Proof` structure to its own file.
This change was made to avoid coupling this structure with the `ICartesiDApp` interface.
Contracts that imported this structure from `contracts/dapp/ICartesiDApp.sol` must now import it from `contracts/common/Proof.sol`.
- 96c0241c: Removed `History`.
This contract will no longer be necessary, given the refactor in the `Authority` contract.
- e0caa166: Removed `EtherTransferFailed()` error from `EtherPortal`.
We're now using OpenZeppelin's `Address` library for the Ether portal, which already raises `FailedInnerCall()` in case of failure.
Callers should now expect `FailedInnerCall()` instead of `EtherTransferFailed()` for failed Ether transfers.
- d0634784: Removed the boolean `success` flag from ERC-20 deposit inputs.
This change was made because this flag would always be `true`, giving no extra information to the DApp back-end.
Consumers of this input should be aware of the new encoding.
- 40a0d07c: Added a `getInputBox` function to the `ICartesiDApp` interface.
Added an `IInputBox` parameter to the functions and events of the `ICartesiDAppFactory` interface, and to the constructor of the `CartesiDApp` contract.
This change was made to allow the node to discover the `IInputBox` contract to listen `InputAdded` events from, just by calling the function from the `ICartesiDApp` interface.
Likewise, users can now know which `IInputBox` contract they should add inputs to, directly or indirectly, in order to communicate with a given DApp.
Users of `ICartesiDAppFactory` should now pass an extra `IInputBox` parameter on deployment.
Off-chain components should now listen to the new `ApplicationCreated` event.
- 28777dc3: Implemented EIP-165 for CartesiDApp contract.
Also updated `ICartesiDApp` to include `IERC721Receiver`, `IERC1155Receiver` (which inherits from `IERC165`).
We made the `ICartesiDApp` interface inherit from `ERC165` so that it would be possible to detect contracts that do not support such interface.
- f50ec333: Bumped Solidity compiler version to 0.8.23.
- e2bc71cc: Removed `AuthorityWithdrawalFailed` error from the `Authority` contract.
This error was removed because it would only be raised by the `withdrawERC20Tokens` function, which was removed.
- 90d5ccc3: Implemented EIP-165 for input relays.
This is because `CartesiDApp` can return an array of input relays. EIP-165 helps to tell which interfaces the relay implements.
- e2bc71cc: Removed the `withdrawERC20Tokens` function from `Authority` contract.
This function was removed due to the lack of usage, and because implementing a similar function for `Quorum` would not be possible with `@openzeppelin/[email protected]`.
Users should not transfer ERC-20 tokens to `Authority` contracts, as it now no longer defines an entry point for withdrawing them, leaving them stuck there forever.
Users should not try to call this function, as it is no longer present in the contract.
- c2829bcc: Removed the `IHistory` interface.
This interface fell out of use with the new `IConsensus` interface and `AbstractConsensus` contract.
Components that used to interact with this interface should now consider interacting with the `IConsensus` interface instead.
- 91fc6f91: The `CartesiDApp` contract was renamed as `Application`.
The `ICartesiDApp` contract was renamed as `IApplication`.
The `CartesiDAppFactory` contract was renamed as `ApplicationFactory`.
The `DAppAddressRelay` contract was renamed as `ApplicationAddressRelay`.
The `encodeDAppAddressRelay` function from the former `DAppAddressRelay` contract was renamed as `encodeApplicationAddressRelay`.
The `OnlyDApp` error from the former `CartesiDApp` contract was renamed as `OnlyApplication`.
- 3baed5f7: Refactored the `IConsensus` interface for better interaction with the Cartesi Rollups node.
Added `InputIndexOutOfRange` error to `ICartesiDApp` interface to improve UX of voucher execution.
Updated the `AbstractConsensus` contract to partially implement the new `IConsensus` interface.
Updated the `Authority` contract to implement the new `IConsensus` interface.
Updated the `CartesiDApp` contract to call `getEpochHash` instead of `getClaim`, and to not call `join`.
Replaced the `bytes context` field from the `Proof` structure with an `InputRange inputRange` field.
Removed the `getHistory`, `setHistory` and `migrateHistoryToConsensus` functions and `NewHistory` event from the `Authority` contract.
Contracts that implemented the old `IConsensus` interface and wish to implement the new one must be adapted.
Contracts that implement the new `IConsensus` interface are not backwards compatible with old `CartesiDApp` contracts, since they expect the consensus to expose a `join` function.
Components that would call the `getClaim` function must now call the `getEpochHash` function while passing an input range instead of a "context" blob.
Components that would call the `join` function should not call it anymore, as it is no longer declared in the new interface.
Components that would listen to the `ApplicationJoined` event should not listen to it anymore, as it is no longer declared in the new interface.
- 00a5b143: Changed the ERC-20 portal to revert whenever `transferFrom` returns `false`.
This change was made to prevent DApp back-end developers from accepting failed transfers by not checking the `success` flag of ERC-20 deposit inputs.
We used OpenZeppelin's `SafeERC20` to deliver an even safer and user-friendly experience through the ERC-20 portal.
- 1da601ad: Added a `getInputRelays` function to the `ICartesiDApp` interface.
Added `inputRelays` parameter to the functions and events of the `ICartesiDAppFactory` interface, and to the constructor of the `CartesiDApp` contract.
This change was made to allow the node to discover the input relay contracts that the DApp back-end may expect inputs from, just by calling the `getInputRelays` function from the `ICartesiDApp` interface.
Likewise, users can now know which input relay contracts they should add inputs through, in order to communicate with a given DApp.
Users of `ICartesiDAppFactory` should now pass an extra `inputRelays` array parameter on deployment.
Off-chain components should now listen to the new `ApplicationCreated` event.
- e0caa166: Changed the type of the `dapp` parameter of the `depositEther` function from `address` to `address payable`.
This change was made because we're now using OpenZeppelin's `Address` library internally to do the Ether transfer.
It also makes sense for this address to be payable since we are transfering Ether to it.
Callers should cast their addresses as `payable` to call this function now.

### Minor Changes

- e6110bc6: Added `InputRange` structure.
This definition is used by the new `IConsensus` interface and `Proof` structure.

## 1.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion onchain/rollups/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cartesi/rollups",
"version": "1.2.0",
"version": "2.0.0",
"scripts": {
"build": "run-s compile export",
"clean:ignored": "rimraf artifacts cache coverage deployments/localhost dist generated-src src/types/*",
Expand Down

0 comments on commit 9e3d5af

Please sign in to comment.