Skip to content

Commit

Permalink
release: v2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuajbouw authored and birchmd committed Apr 5, 2023
1 parent 7d5f134 commit dbd963c
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 16 deletions.
27 changes: 15 additions & 12 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
Aleksey Kladov <aleksey.kladov@gmail.com>
Andrew Bednoff <andrew.bednoff@aurora.dev>
Arto Bendiken <arto@aurora.dev>
Evgeny Kuzyakov <h3r0k1ll3r@gmail.com>
Evgeny Ukhanov <evgeny@aurora.dev>
Frank Braun <frank@aurora.dev>
Illia Polosukhin <ilblackdragon@gmail.com>
Joshua J. Bouw <joshua@aurora.dev>
Kirill Abramov <kirill@aurora.dev>
Marcelo Fornet <marcelo@aurora.dev>
Michael Birch <michael.birch@aurora.dev>
Roman Hodulak <roman@aurora.dev>
Ahmed Ali <ahmed.ali@aurora.dev>
Aleksey Kladov <aleksey.kladov@gmail.com>
Andrew Bednoff <andrew.bednoff@aurora.dev>
Arto Bendiken <arto@aurora.dev>
Evgeny Kuzyakov <h3r0k1ll3r@gmail.com>
Evgeny Ukhanov <evgeny@aurora.dev>
Frank Braun <frank@aurora.dev>
Hyungsuk Kang <hyungsuk.kang@aurora.dev>
Illia Polosukhin <ilblackdragon@gmail.com>
Joshua J. Bouw <joshua@aurora.dev>
Kirill Abramov <kirill@aurora.dev>
Marcelo Fornet <marcelo@aurora.dev>
Michael Birch <michael.birch@aurora.dev>
Oleksandr Anyshchenko <oleksandr.anyshchenko@aurora.dev>
Roman Hodulak <roman@aurora.dev>
57 changes: 56 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,59 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- New variant of submit function `submit_with_args` which accepts additional arguments along with the transaction.
## [2.9.0] 2023-04-05

- Fixed nonce incorrectly being incremented on an out of fund failure by [@joshuajbouw]. ([#671])
- Replaced `rjson` with `serde_json` by [@alexsuss]. ([#677])
- Fixed a check in promise results before executing cross contract calls (XCC) callbacks by [@birchmd]. ([#693])
- Enabled XCC for mainnet release by [@birchmd]. ([#694])
- Added `set_owner` contract method which sets the owner of the contract by [@hskang9]. ([#690])
- Changed owner intended contract methods to now require owner or the contract itself by [@hskang9]. ([#676])
- Fixed a reachable panic in `receive_erc20_tokens` by [@0x3bfc]. ([#709])
- Fixed a lack of minimum size checks when instantiating a new `EthGas` object by [@lempire123]. ([#722])
- Fixed a lack of division by 0 checks in `EthGas::Div()` by [@lempire123]. ([#718])
- New variant of submit function `submit_with_args` which accepts additional arguments along with the transaction such as the max gas price a user is ready to pay by [@alexsuss]. ([#696])
- Fixed the validation of the return of `exports:storage_remove` by [@0x3bfc]. ([#712])
- Fixed missing account validations of NEAR account IDs by [@0x3bfc]. ([#703])
- Fixed a reachable panic in the `exitToNear` and `exitToEthereum` precompiles if the input amount is greater than 1^128 when cast from a `U256` to `u128` by [@0x3bfc]. ([#681])
- Fixed a reachable panic in `modExp` due to arithmetic overflow by [@0x3bfc]. ([#688])
- Fixed the ability attaching values to Aurora specific precompiles, this no longer is possible, by [@0x3bfc]. ([#714])
- Fixed a return error if an ecrecover signature length is not exactly 65 by [@0x3bfc]. ([#717])
- Fixed size checks on input array passed to `exitToNear` and `exitToEthereum` precompiles by [@0x3bfc]. ([#684])
- Fixed missing gas costs in `exitToNear` and `exitToEthereum` precompiles by [@lempire123]. ([#687])
- Fixed a reachable panic due to out of memory in the `modExp` precompile by [@0x3bfc]. ([#689])
- Fixed an assurance that the `sender_id` has a balance greater than the amount in `ft_transfer_call` by [@0x3bfc]. ([#708])
- Fixed returning `0x` when a length cannot be cast as `usize` instead of returning an error in the `modExp` precompile by [@birchmd]. ([#737])
- Added the ability to create and fund XCC sub-accounts from external NEAR accounts by [@birchmd]. ([#735])
- Miscellaneous minor fixes by [@0x3bfc]. ([#738])

[#671]: https://github.com/aurora-is-near/aurora-engine/pull/671
[#677]: https://github.com/aurora-is-near/aurora-engine/pull/677
[#693]: https://github.com/aurora-is-near/aurora-engine/pull/693
[#694]: https://github.com/aurora-is-near/aurora-engine/pull/694
[#690]: https://github.com/aurora-is-near/aurora-engine/pull/690
[#676]: https://github.com/aurora-is-near/aurora-engine/pull/676
[#709]: https://github.com/aurora-is-near/aurora-engine/pull/709
[#722]: https://github.com/aurora-is-near/aurora-engine/pull/722
[#718]: https://github.com/aurora-is-near/aurora-engine/pull/718
[#696]: https://github.com/aurora-is-near/aurora-engine/pull/696
[#712]: https://github.com/aurora-is-near/aurora-engine/pull/712
[#703]: https://github.com/aurora-is-near/aurora-engine/pull/703
[#681]: https://github.com/aurora-is-near/aurora-engine/pull/681
[#688]: https://github.com/aurora-is-near/aurora-engine/pull/688
[#714]: https://github.com/aurora-is-near/aurora-engine/pull/714
[#717]: https://github.com/aurora-is-near/aurora-engine/pull/717
[#684]: https://github.com/aurora-is-near/aurora-engine/pull/684
[#687]: https://github.com/aurora-is-near/aurora-engine/pull/687
[#689]: https://github.com/aurora-is-near/aurora-engine/pull/689
[#708]: https://github.com/aurora-is-near/aurora-engine/pull/708
[#737]: https://github.com/aurora-is-near/aurora-engine/pull/737
[#735]: https://github.com/aurora-is-near/aurora-engine/pull/735
[#738]: https://github.com/aurora-is-near/aurora-engine/pull/738

## [2.8.1] 2022-12-07

- Updated SputnikVM to v0.37.2 by [@birchmd]. ([#645])

## [2.8.1] 2022-12-07

Expand Down Expand Up @@ -369,8 +421,11 @@ struct SubmitResult {
[1.1.0]: https://github.com/aurora-is-near/aurora-engine/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/aurora-is-near/aurora-engine/tree/1.0.0

[@0x3bfc]: https://github.com/0x3bfc
[@alexsuss]: https://github.com/alexsuss
[@andrcmdr]: https://github.com/andrcmdr
[@birchmd]: https://github.com/birchmd
[@hskang9]: https://github.com/hskang9
[@joshuajbouw]: https://github.com/joshuajbouw
[@mfornet]: https://github.com/mfornet
[@mrLSD]: https://github.com/mrLSD
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 @@
2.8.1
2.9.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 = "2.8.1"
version = "2.9.0"
authors = ["Aurora Labs <hello@aurora.dev>"]
edition = "2021"
description = ""
Expand Down

0 comments on commit dbd963c

Please sign in to comment.