Skip to content

Commit df38460

Browse files
authored
Merge pull request #1651 from o1-labs/hotfix/v0.18.1
Release v0.18.1 - Fix Docker Compose frontend black screen
2 parents 3a52658 + f657d57 commit df38460

File tree

31 files changed

+40
-31
lines changed

31 files changed

+40
-31
lines changed

CHANGELOG.md

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

88
## Unreleased
99

10+
## [0.18.1] - 2025-11-20
11+
12+
### Fixed
13+
14+
- **Docker Compose**: Fix frontend black screen issue by changing environment
15+
from `compose` to `local` and exposing port 3000 for rust node HTTP API (hotfix `v0.18.1`)
16+
1017
## [0.18.0] - 2025-11-04
1118

1219
### OCaml node
@@ -680,7 +687,8 @@ First public release.
680687
- 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.
681688
- Web-based frontend for the node.
682689

683-
[Unreleased]: https://github.com/openmina/openmina/compare/v0.18.0...develop
690+
[Unreleased]: https://github.com/openmina/openmina/compare/v0.18.1...develop
691+
[0.18.1]: https://github.com/openmina/openmina/compare/v0.18.0...v0.18.1
684692
[0.18.0]: https://github.com/openmina/openmina/compare/v0.17.0...v0.18.0
685693
[0.17.0]: https://github.com/openmina/openmina/compare/v0.16.0...v0.17.0
686694
[0.16.0]: https://github.com/openmina/openmina/compare/v0.15.0...v0.16.0

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.18.0"
3+
version = "0.18.1"
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.18.0"
3+
version = "0.18.1"
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 = "mina-core"
3-
version = "0.18.0"
3+
version = "0.18.1"
44
edition = "2021"
55
license = "Apache-2.0"
66

docker-compose.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ services:
1212
volumes:
1313
- ./mina-workdir:/root/.mina:rw
1414
ports:
15+
- "3000:3000"
1516
- "${MINA_LIBP2P_PORT:-8302}:${MINA_LIBP2P_PORT:-8302}"
1617
environment:
1718
MINA_LIBP2P_EXTERNAL_IP: "${MINA_LIBP2P_EXTERNAL_IP:-}"
@@ -20,6 +21,6 @@ services:
2021
frontend:
2122
image: o1labs/mina-rust-frontend:${MINA_FRONTEND_TAG:-latest}
2223
environment:
23-
MINA_FRONTEND_ENVIRONMENT: compose
24+
MINA_FRONTEND_ENVIRONMENT: local
2425
ports:
2526
- "8070:80"

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 = "mina-fuzzer"
3-
version = "0.18.0"
3+
version = "0.18.1"
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.18.0"
3+
version = "0.18.1"
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 = "mina-macros"
3-
version = "0.18.0"
3+
version = "0.18.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
authors = ["Alexander Koptelov <[email protected]>"]

mina-p2p-messages/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-p2p-messages"
3-
version = "0.18.0"
3+
version = "0.18.1"
44
edition = "2021"
55
license = "Apache-2.0"
66

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.18.0"
3+
version = "0.18.1"
44
edition = "2021"
55
license = "Apache-2.0"
66

0 commit comments

Comments
 (0)