Skip to content

Commit 6f40647

Browse files
committed
remove unused field and bump version --prep for release
1 parent ebb5043 commit 6f40647

4 files changed

Lines changed: 12 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,18 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## 0.6.3
7+
## 0.6.4
88

99
- Updated foundational store protobuf definitions:
1010
- `GetResponse`: Renamed `response` field to `code`, added `block_reached` field (tag 3)
1111
- `GetAllResponse`: Added `block_reached` field
12+
- `GetAllRequest`: Removed `omit_deleted` field
13+
- `GetRequest`: Removed `omit_deleted` field
14+
15+
## 0.6.3
16+
17+
> [!WARNING]
18+
> This release has been removed and should not be used. Please use a different version.
1219
1320
## 0.6.2
1421

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
members = ["substreams-macro", "substreams"]
33

44
[workspace.package]
5-
version = "0.6.3"
5+
version = "0.6.4"
66
description = "Substreams SDK - A streaming data engine for The Graph - by StreamingFast"
77
edition = "2018"
88
homepage = "https://substreams.streamingfast.io/"
@@ -14,7 +14,7 @@ categories = ["api-bindings", "external-ffi-bindings", "wasm"]
1414
rust-version = "1.60"
1515

1616
[workspace.dependencies]
17-
substreams-macro = { version = "0.6.3", path = "./substreams-macro" }
17+
substreams-macro = { version = "0.6.4", path = "./substreams-macro" }
1818

1919
[profile.release]
2020
lto = true

substreams/src/store.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1660,7 +1660,6 @@ impl FoundationalStore {
16601660
let req = pb::sf::substreams::foundational_store::v1::GetRequest {
16611661
block_number: 0,
16621662
block_hash: vec![],
1663-
omit_deleted: true,
16641663
key: key_ref.to_vec(),
16651664
};
16661665

@@ -1695,7 +1694,6 @@ impl FoundationalStore {
16951694
let req = pb::sf::substreams::foundational_store::v1::GetAllRequest {
16961695
block_number: 0,
16971696
block_hash: vec![],
1698-
omit_deleted: true,
16991697
keys: keys.iter().map(|k| k.as_ref().to_vec()).collect(),
17001698
};
17011699

0 commit comments

Comments
 (0)