Skip to content

Commit 2e73514

Browse files
authored
Merge pull request #1122 from openmina/prepare-release/v0.15.0
Prepare Release v0.15.0
2 parents 50e7856 + 289a248 commit 2e73514

File tree

33 files changed

+92
-63
lines changed

33 files changed

+92
-63
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.15.0] - 2025-03-13
11+
12+
### Added
13+
14+
- Restored support for snark workers.
15+
- **Archive**: Support for storing blocks to AWS, GCP and filesystem.
16+
- **Tooling**: WebRTC traffic sniffer.
17+
- **GraphQL**:
18+
- `sendPayment` mutation.
19+
- `sendDelegation` mutation.
20+
- `pooledUserCommands` query.
21+
- `pooledZkappCommands` query.
22+
- Various other partially implemented queries expanded to ensure compatibility with the OCaml node.
23+
24+
25+
### Changed
26+
27+
- **P2P**: Wait until full validation is complete before broadcasting transactions and completed works.
28+
- **Transition frontier**: Perform cheap consensus operation first, and then the more expensive proof verification.
29+
- **Transaction pool**: Unified libp2p and webrtc logic for the initial phase of handling transactions received from gossip network. As a result, processing of transactions received during bootstrap is delayed until the initial sync is complete.
30+
- **Transaction pool**: Suspend processing during block production.
31+
32+
### Fixed
33+
34+
- **Transition frontier**: Rare race condition in the case of forks during block production that could result in dropping staged ledgers too early.
35+
- **Webnode**: Replaced tokio channels which had a race condition that could crash the thread on WASM.
36+
- **Transaction pool**: Verify zkApp proofs in a dedicated thread to avoid blocking the state machine.
37+
1038
## [0.14.0] - 2025-01-31
1139

1240
### Changed
@@ -366,7 +394,8 @@ First public release.
366394
- 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.
367395
- Web-based frontend for the node.
368396

369-
[Unreleased]: https://github.com/openmina/openmina/compare/v0.14.0...develop
397+
[Unreleased]: https://github.com/openmina/openmina/compare/v0.15.0...develop
398+
[0.15.0]: https://github.com/openmina/openmina/compare/v0.14.0...v0.15.0
370399
[0.14.0]: https://github.com/openmina/openmina/compare/v0.13.0...v0.14.0
371400
[0.13.0]: https://github.com/openmina/openmina/compare/v0.12.0...v0.13.0
372401
[0.12.0]: https://github.com/openmina/openmina/compare/v0.11.0...v0.12.0

Cargo.lock

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cli"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
edition = "2021"
55
license = "Apache-2.0"
66

cli/replay_dynamic_effects/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "replay_dynamic_effects"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
edition = "2021"
55
license = "Apache-2.0"
66

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openmina-core"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
edition = "2021"
55
license = "Apache-2.0"
66

docker-compose.local.producers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
local-producer-cluster:
33
container_name: local-producer-cluster
4-
image: openmina/openmina:0.14.0
4+
image: openmina/openmina:0.15.0
55
environment:
66
- RUST_BACKTRACE=1
77
entrypoint: ["openmina-node-testing", "scenarios-generate", "--name", "simulation-small-forever-real-time"]
@@ -12,7 +12,7 @@ services:
1212

1313
frontend:
1414
container_name: frontend
15-
image: openmina/frontend:0.14.0
15+
image: openmina/frontend:0.15.0
1616
environment:
1717
OPENMINA_FRONTEND_ENVIRONMENT: block-producers
1818
ports:

fuzzer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openmina-fuzzer"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
edition = "2021"
55
license = "Apache-2.0"
66

ledger/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mina-tree"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
edition = "2021"
55
license = "Apache-2.0"
66

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openmina-macros"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
authors = [ "Alexander Koptelov <[email protected]>" ]

node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "node"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
edition = "2021"
55
license = "Apache-2.0"
66

0 commit comments

Comments
 (0)