Skip to content
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
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.0] - 2024-10-31

### Added

- *Webnode*: Peer discovery and p2p based signaling (so that webnodes can find each other).
- *Webnode*: Connection authentication.
- Support for specifying external IPs.

### Fixed

- *Ledger*: Fixed a regression introduced in v0.10.0 that caused the ZKApp precondition checks ordering to not match the OCaml implementation's exactly, which resulted in block application failures.
- *Ledger*: Corrected handling of custom tokens in the block application logic.
- *P2P*: Reduced excessive outgoing traffic.
- *P2P*: Yamux fixes and improvements (backpressure).
- *Webnode*: Staging ledger sync timeout.

## [0.10.3] - 2024-10-16

### Added
Expand Down Expand Up @@ -289,7 +305,8 @@ First public release.
- 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.
- Web-based frontend for the node.

[Unreleased]: https://github.com/openmina/openmina/compare/v0.10.3...develop
[Unreleased]: https://github.com/openmina/openmina/compare/v0.11.0...develop
[0.11.0]: https://github.com/openmina/openmina/releases/tag/v0.10.3...v0.11.0
[0.10.3]: https://github.com/openmina/openmina/releases/tag/v0.10.0...v0.10.3
[0.10.0]: https://github.com/openmina/openmina/releases/tag/v0.9.0...v0.10.0
[0.9.0]: https://github.com/openmina/openmina/releases/tag/v0.8.14...v0.9.0
Expand Down
52 changes: 26 additions & 26 deletions 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 cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cli"
version = "0.10.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion cli/replay_dynamic_effects/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "replay_dynamic_effects"
version = "0.10.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmina-core"
version = "0.10.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.local.producers.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
local-producer-cluster:
container_name: local-producer-cluster
image: openmina/openmina:0.10.3
image: openmina/openmina:0.11.0
environment:
- RUST_BACKTRACE=1
entrypoint: ["openmina-node-testing", "scenarios-generate", "--name", "simulation-small-forever-real-time"]
Expand All @@ -12,7 +12,7 @@ services:

frontend:
container_name: frontend
image: openmina/frontend:0.10.3
image: openmina/frontend:0.11.0
environment:
OPENMINA_FRONTEND_ENVIRONMENT: block-producers
ports:
Expand Down
2 changes: 1 addition & 1 deletion fuzzer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmina-fuzzer"
version = "0.10.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion ledger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mina-tree"
version = "0.10.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmina-macros"
version = "0.10.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
authors = [ "Alexander Koptelov <[email protected]>" ]
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "node"
version = "0.10.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion node/account/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmina-node-account"
version = "0.10.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion node/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmina-node-common"
version = "0.10.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion node/invariants/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmina-node-invariants"
version = "0.10.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion node/native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmina-node-native"
version = "0.10.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion node/testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmina-node-testing"
version = "0.10.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion node/web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmina-node-web"
version = "0.10.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion p2p/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "p2p"
version = "0.10.3"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
Loading
Loading