Skip to content

Commit

Permalink
chore: release notes 3.4.0 (#873)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksuss committed Nov 28, 2023
1 parent 9d10373 commit 31f4e86
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 12 deletions.
45 changes: 36 additions & 9 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.4.0] 2023-11-28

### Additions

- Added a possibility to pass initialize arguments in json format to the `new` transaction by [@aleksuss]. ([#871])
- The `SubmitResult` was made available for `ft_on_transfer` transactions in the standalone engine by [@birchmd]. ([#869])
- The order of producing the exit precompile and XCC promises has been changed to sequential by [@birchmd]. ([#868])

### Changes

- Removed the code hidden behind the feature that isn't used anymore by [@joshuajbouw]. ([#870])
- The logic of unwrapping wNEAR has been changed to the Bridge's native by [@birchmd]. ([#867])
- Bumped the `near-workspaces` to 0.9 by [@aleksuss]. ([#862])

### Fixes

- Add a method for upgrading XCC router contract by [@birchmd]. ([#866])
- Fixed a potential panic in the `ExitToNear` precompile by [@guidovranken]. ([#865])
- Fixed a behaviour when the `ft_transfer` could occur before the `near_withdraw` by [@birchmd]. ([#864])
- Fixed correctness of reproducing the NEAR runtime random value in the standalone engine by [@birchmd]. ([#863])

[#862]: https://github.com/aurora-is-near/aurora-engine/pull/862
[#863]: https://github.com/aurora-is-near/aurora-engine/pull/863
[#864]: https://github.com/aurora-is-near/aurora-engine/pull/864
[#865]: https://github.com/aurora-is-near/aurora-engine/pull/865
[#866]: https://github.com/aurora-is-near/aurora-engine/pull/866
[#867]: https://github.com/aurora-is-near/aurora-engine/pull/867
[#868]: https://github.com/aurora-is-near/aurora-engine/pull/868
[#869]: https://github.com/aurora-is-near/aurora-engine/pull/869
[#870]: https://github.com/aurora-is-near/aurora-engine/pull/870
[#871]: https://github.com/aurora-is-near/aurora-engine/pull/871

## [3.3.1] 2023-10-26

### Fixes

- The smart contract owner whose account id is not the same as the contract account id can set ERC-20 metadata
by [@aleksuss] ([#858]).
by [@aleksuss]. ([#858])

[#858]: https://github.com/aurora-is-near/aurora-engine/pull/858

Expand All @@ -33,18 +65,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changes

- Changed structure `SetEthConnectorContractAccountArgs` for setting eth connector account. It was extended with
additional field: `withdraw_serialize_type` for defining serialization type for withdraw arguments by [@aleksuss]. ([#834])

additional field: `withdraw_serialize_type` for defining serialization type for withdraw arguments by [@aleksuss]. ([#834])
- Updated rocksdb up to 0.21.0 by [@aleksuss]. ([#840])

### Additions

- Added a possibility of mirroring deployed ERC-20 contracts in the main Aurora contract in Silo mode by [@aleksuss]. ([#845])

- Allow to initialize hashchain directly with the `new` method by [@birchmd]. ([#846])

- Added a silo logic which allows to set fixed gas costs per transaction by [@aleksuss]. ([#746])

- Added a new type of transaction which allows to add full access key into account of the smart contract by [@aleksuss]. ([#847])

[#746]: https://github.com/aurora-is-near/aurora-engine/pull/746
Expand All @@ -59,9 +87,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Additions

- Added the possibility to use native NEAR instead of wNEAR on Aurora by [@karim-en]. ([#750])

- Added hashchain integration by [@birchmd]. ([#831])

- Added functions for setting and getting metadata of ERC-20 contracts deployed with `deploy_erc20_token` transaction
by [@aleksuss]. ([#837])

Expand Down Expand Up @@ -547,7 +573,8 @@ struct SubmitResult {

## [1.0.0] - 2021-05-12

[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/3.3.1...develop
[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/3.4.0...develop
[3.4.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.3.1...3.4.0
[3.3.1]: https://github.com/aurora-is-near/aurora-engine/compare/3.3.0...3.3.1
[3.3.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.2.0...3.3.0
[3.2.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.1.0...3.2.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.1
3.4.0
2 changes: 1 addition & 1 deletion engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aurora-engine"
version = "3.3.1"
version = "3.4.0"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand Down

0 comments on commit 31f4e86

Please sign in to comment.