Skip to content

Commit

Permalink
ci(release): Preparing v0.0.14 (#365)
Browse files Browse the repository at this point in the history
* fix(repo): S3 payload and encoding (#366)

* refactor(repo): Change from S3 specific to a Storage trait

* refactor(repo): use displaydoc instead of error

* fix(data-parser): adjust encode to support internal messages

* fix(repo): s3 being saved and parsed corretly

* fix(repo): final adjustments

* build(repo): fix lint

* build(repo): fix chart

* build(repo): fix tests

* fix(storage): add retry mechanism

* build(repo): fix lint

* fix(repo): small adjustments

* ci(release): Preparing 0.0.14

* ci(release): Preparing 0.0.14

* build(repo): bump version

---------

Co-authored-by: Pedro Nauck <[email protected]>
Co-authored-by: GitHub <[email protected]>
  • Loading branch information
3 people authored Dec 27, 2024
1 parent ca62826 commit 3dd3c9e
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 28 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 12 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -63,16 +63,17 @@ tracing-subscriber = "0.3"
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-streams = { version = "0.0.14", path = "crates/fuel-streams" }
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-consumer = { version = "0.0.14", path = "crates/sv-consumer" }
sv-webserver = { version = "0.0.14", path = "crates/sv-webserver" }

# Workspace projects
[workspace.metadata.cargo-machete]
Expand Down
2 changes: 1 addition & 1 deletion crates/fuel-streams/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-streams-examples"
version = "0.0.13"
version = "0.0.14"
publish = false
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion scripts/bump-version.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

cargo set-version --workspace "$1"
cargo set-version --locked --workspace "$1"
cargo update --workspace
make fmt

0 comments on commit 3dd3c9e

Please sign in to comment.