Skip to content

Commit 44ba150

Browse files
authored
Merge pull request #1016 from openmina/develop
Merge `develop` into `main`
2 parents 36f7627 + 4fbdad4 commit 44ba150

File tree

226 files changed

+5056
-7483
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

226 files changed

+5056
-7483
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
rustup default nightly
192192
rustup component add rustfmt rust-src
193193
rustup target add wasm32-unknown-unknown
194-
cargo install -f wasm-bindgen-cli --version 0.2.95
194+
cargo install -f wasm-bindgen-cli --version 0.2.99
195195
196196
- name: Setup Rust Cache
197197
uses: Swatinem/rust-cache@v2
@@ -280,7 +280,7 @@ jobs:
280280
needs: [ build-tests, build-tests-webrtc ]
281281
runs-on: ubuntu-20.04
282282
container:
283-
image: minaprotocol/mina-daemon:3.0.0-dc6bf78-focal-devnet
283+
image: gcr.io/o1labs-192920/mina-daemon:3.0.4-alpha1-889607b-bullseye-devnet
284284
options: --volume debugger_data:/tmp/db
285285
env:
286286
BPF_ALIAS: /coda/0.0.1/29936104443aaf264a7f0192ac64b1c7173198c1ed404c1bcff5e562e05eb7f6-0.0.0.0
@@ -362,7 +362,7 @@ jobs:
362362
- build-tests-webrtc
363363
runs-on: ubuntu-20.04
364364
container:
365-
image: minaprotocol/mina-daemon:3.0.0-dc6bf78-focal-devnet
365+
image: gcr.io/o1labs-192920/mina-daemon:3.0.4-alpha1-889607b-bullseye-devnet
366366
options: --volume debugger_data:/tmp/db
367367
env:
368368
# to allow local addrs discovery
@@ -442,7 +442,7 @@ jobs:
442442
- build-tests-webrtc
443443
runs-on: ubuntu-20.04
444444
container:
445-
image: minaprotocol/mina-daemon:3.0.0-dc6bf78-focal-devnet
445+
image: gcr.io/o1labs-192920/mina-daemon:3.0.4-alpha1-889607b-bullseye-devnet
446446
env:
447447
# to allow local addrs discovery
448448
OPENMINA_DISCOVERY_FILTER_ADDR: false

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/target
22
/node/testing/res/
33
.DS_Store
4+
*.profraw

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.13.0] - 2025-01-06
11+
12+
### Fixed
13+
14+
- **Mempool**: Inside the transaction and snark pool reducers, only broadcast locally injected transactions and producer snarks. Libp2p layer takes care of diffs received from gossip already.
15+
- **P2P**: Don't forget the initial peers list.
16+
- WebRTC connection leaks.
17+
- zkApp transaction proofs are now verified on a separate thread.
18+
- Sometimes produced blocks were broadcasted too early.
19+
- `OneOrTwo::zip` never panics now, on failure it returns an error.
20+
21+
### Changed
22+
23+
- On native, use jemalloc as the default allocator.
24+
- Allocations reduced considerably by using stack-allocated bignums in the VRF evaluator.
25+
- The same thread is now reused to verify all block proofs.
26+
- `RUST_BACKTRACE` is always set to `full` now.
27+
1028
## [0.12.0] - 2024-12-04
1129

1230
### Fixed
@@ -330,7 +348,8 @@ First public release.
330348
- Alpha version of the node which can connect and syncup to the berkeleynet network, and keep applying new blocks to maintain consensus state and ledger up to date.
331349
- Web-based frontend for the node.
332350

333-
[Unreleased]: https://github.com/openmina/openmina/compare/v0.12.0...develop
351+
[Unreleased]: https://github.com/openmina/openmina/compare/v0.13.0...develop
352+
[0.13.0]: https://github.com/openmina/openmina/compare/v0.12.0...v0.13.0
334353
[0.12.0]: https://github.com/openmina/openmina/compare/v0.11.0...v0.12.0
335354
[0.11.0]: https://github.com/openmina/openmina/compare/v0.10.3...v0.11.0
336355
[0.10.3]: https://github.com/openmina/openmina/compare/v0.10.0...v0.10.3

0 commit comments

Comments
 (0)