diff --git a/CHANGELOG.md b/CHANGELOG.md index af0651c9..397329e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +## 0.0.14 (2024-12-27) + +### 🚀 Features + +- Updated crates and npm packages (#341) +- Add historical data with S3 and Webserver + +### 🐛 Fixes + +- Resolve block publication race conditions and synchronization issues (#329) +- Fixed telemetry envs and port (#330) +- Mainnet DNS value for NATS (#339) +- Rollback NATS_URL for Publisher (#343) +- Fix last published logic to honor retention policy (#344) +- Simplify and test BlocksStream for old and new blocks (#346) +- Rollback fuel-core to v0.40.0 +- Allow healthcheck while awaiting relayer node sync (#347) +- Update cargo.lock +- Using fuel-core from branch release/v0.40.2 +- Solving publisher slowness (#352) +- Adjust DeliverPolicy to receive from WebSocket +- S3 payload and encoding (#366) + ## 0.0.13 (2024-11-28) ### 🚀 Features diff --git a/Cargo.toml b/Cargo.toml index 94da1905..7c90d5f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ homepage = "https://fuel.network/" license = "Apache-2.0" repository = "https://github.com/fuellabs/data-systems" rust-version = "1.81.0" -version = "0.0.13" +version = "0.0.14" [workspace.dependencies] actix-cors = "0.7" @@ -64,15 +64,15 @@ tracing-actix-web = "0.7" thiserror = "2.0" fuel-streams = { version = "0.0.13", path = "crates/fuel-streams" } -fuel-data-parser = { version = "0.0.13", path = "crates/fuel-data-parser" } -fuel-streams-core = { version = "0.0.13", path = "crates/fuel-streams-core" } -fuel-streams-macros = { version = "0.0.13", path = "crates/fuel-streams-macros" } -fuel-streams-nats = { version = "0.0.13", path = "crates/fuel-streams-nats" } -fuel-streams-storage = { version = "0.0.13", path = "crates/fuel-streams-storage" } -fuel-streams-executors = { version = "0.0.13", path = "crates/fuel-streams-executors" } -subject-derive = { version = "0.0.13", path = "crates/fuel-streams-macros/subject-derive" } -sv-publisher = { version = "0.0.13", path = "crates/sv-publisher" } -sv-webserver = { version = "0.0.13", path = "crates/sv-webserver" } +fuel-data-parser = { version = "0.0.14", path = "crates/fuel-data-parser" } +fuel-streams-core = { version = "0.0.14", path = "crates/fuel-streams-core" } +fuel-streams-macros = { version = "0.0.14", path = "crates/fuel-streams-macros" } +fuel-streams-nats = { version = "0.0.14", path = "crates/fuel-streams-nats" } +fuel-streams-storage = { version = "0.0.14", path = "crates/fuel-streams-storage" } +fuel-streams-executors = { version = "0.0.14", path = "crates/fuel-streams-executors" } +subject-derive = { version = "0.0.14", path = "crates/fuel-streams-macros/subject-derive" } +sv-publisher = { version = "0.0.14", path = "crates/sv-publisher" } +sv-webserver = { version = "0.0.14", path = "crates/sv-webserver" } # Workspace projects [workspace.metadata.cargo-machete] diff --git a/crates/fuel-streams/Cargo.toml b/crates/fuel-streams/Cargo.toml index fb8e79a8..fd521203 100644 --- a/crates/fuel-streams/Cargo.toml +++ b/crates/fuel-streams/Cargo.toml @@ -8,7 +8,7 @@ homepage = "https://fuel.network/" license = "Apache-2.0" repository = "https://github.com/fuellabs/data-systems" rust-version = "1.81.0" -version = "0.0.13" +version = "0.0.14" [dependencies] displaydoc = { workspace = true } diff --git a/examples/Cargo.toml b/examples/Cargo.toml index e6465fd8..fa721465 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-streams-examples" -version = "0.0.13" +version = "0.0.14" publish = false edition = "2021"