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: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0] - 2024-05-31

### Fixed

- When applying blocks, use the `supercharge_coinbase` value from the block which was being ignored before.
- Incorrect stream being used for RPC responses.
- Allow multiple nodes running on the same host to connect to each other.
- Invalid `delta_block_chain_proof` in block producer.
- Various p2p layer fixes.

### Added

- Support for PubSub in the p2p layer.
- Block producer dashboard, and simulator-based demo.
- Support for parsing `daemon.json` files with custom genesis ledgers.
- Chain ID computation (was hardcoded before).
- Multiple RPC and p2p tests.
- More limits to p2p messages, connections, and parsing.

### Removed

- Support for v1 messages in p2p layer.

## [0.4.0] - 2024-04-30

Expand Down
44 changes: 22 additions & 22 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.4.0"
version = "0.5.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.4.0"
version = "0.5.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.4.0"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
4 changes: 1 addition & 3 deletions docker-compose.local.producers.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
services:
local-producer-cluster:
container_name: local-producer-cluster
build:
context: .
dockerfile: Dockerfile
image: openmina/openmina:0.5.0
entrypoint: ["openmina-node-testing", "scenarios-generate", "--name", "simulation-small-forever-real-time"]
ports:
- 11010:11010
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.4.0"
version = "0.5.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.4.0"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
authors = [ "Alexander Koptelov <alexandre.koptelov@gmail.com>" ]
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.4.0"
version = "0.5.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.4.0"
version = "0.5.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.4.0"
version = "0.5.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.4.0"
version = "0.5.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.4.0"
version = "0.5.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.4.0"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"

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

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

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion producer-dashboard/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmina-producer-dashboard"
version = "0.3.0"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"

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

Expand Down
2 changes: 1 addition & 1 deletion tools/bootstrap-sandbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmina-bootstrap-sandbox"
version = "0.4.0"
version = "0.5.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tools/gossipsub-sandbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmina-gossipsub-sandbox"
version = "0.1.0"
version = "0.5.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tools/hash-tool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hash-tool"
version = "0.4.0"
version = "0.5.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tools/ledger-tool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ledger-tool"
version = "0.4.0"
version = "0.5.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tools/salsa-simple/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "salsa-simple"
version = "0.4.0"
version = "0.5.0"
edition = "2021"

[dev-dependencies]
Expand Down
Loading