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

Release v2.9.2 #786

Merged
merged 13 commits into from
Jun 23, 2023
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
4 changes: 2 additions & 2 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
/engine-sdk/ @aleksuss
/engine-standalone-storage/ @RomanHodulak
/engine-standalone-tracing/ @RomanHodulak
/engine-test-doubles/ @hskang9
/engine-tests/ @hskang9
/engine-test-doubles/ @joshuajbouw
/engine-tests/ @joshuajbouw
/engine-transactions/ @aleksuss
2 changes: 0 additions & 2 deletions .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ jobs:
- run: cargo make build-contracts
- name: Run Contract cargo clippy
run: cargo make clippy
- name: Run cargo clippy
run: cargo clippy
udeps:
name: Udeps
runs-on: [self-hosted, heavy]
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,29 @@ jobs:
run: |
cache-util save cargo_git cargo_registry yarn_cache
cache-util msave aurora-engine-target@generic@${{ hashFiles('**/Cargo.lock') }}:target

test_modexp:
name: Test modexp suite (mainnet, testnet)
runs-on: [ self-hosted, heavy ]
steps:
- name: Potential broken submodules fix
run: |
git checkout -f $(git -c user.name=x -c user.email=x@x commit-tree $(git hash-object -t tree /dev/null) < /dev/null) || :
- name: Clone the repository
uses: actions/checkout@v3
- name: Restore cache
run: |
cache-util restore cargo_git cargo_registry yarn_cache
cache-util restore aurora-engine-target@generic@${{ hashFiles('**/Cargo.lock') }}:target
- name: Test mainnet bench-modexp
run: cargo make --profile mainnet bench-modexp
- name: Test testnet bench-modexp
run: cargo make --profile testnet bench-modexp
- name: Save cache
run: |
cache-util save cargo_git cargo_registry yarn_cache
cache-util msave aurora-engine-target@generic@${{ hashFiles('**/Cargo.lock') }}:target

env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
11 changes: 10 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.9.2] 2023-06-22

### Fixes

- Use ibig implemenation of modexp by [@birchmd]. ([#778])

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

## [2.9.1] 2023-05-11

### Changes
Expand Down Expand Up @@ -413,7 +421,8 @@ struct SubmitResult {

## [1.0.0] - 2021-05-12

[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/2.9.1...develop
[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/2.9.2...develop
[2.9.2]: https://github.com/aurora-is-near/aurora-engine/compare/2.9.1...2.9.2
[2.9.1]: https://github.com/aurora-is-near/aurora-engine/compare/2.9.0...2.9.1
[2.9.0]: https://github.com/aurora-is-near/aurora-engine/compare/2.8.0...2.9.0
[2.8.0]: https://github.com/aurora-is-near/aurora-engine/compare/2.7.0...2.8.0
Expand Down
Loading