Releases: streamingfast/substreams-sink-database-changes
Releases · streamingfast/substreams-sink-database-changes
v0.2.0
Changelog
- BREAKING Updated
substreams
dependency to0.5.0
.
Commits
v0.1.2
v0.1.1
v0.1.0
Changelog
-
Added support for
u8
,u16
,u32
,u64
,i8
,i16
,i32
,i64
types. -
Added possibility to record a
change
using(new: AsString, old: AsString)
to simulate a value update. -
Added possibility to record a
change
using(old: AsString, new: Option<Into<Typed>>)
to simulate a value deletion. -
Added possibility to record a
change
using(old: Option<AsString>, new: AsString)
to simulate a value creation. -
Refactored to allow delta to be taken from any
AsString
which makes it much easier to extend when there is missing types. -
Introduced our own
AsString
type becauseInto<String>
usage andToString
usage lead to Rust compiler errors on our desired change typings. -
Refactored to reduce amount of
clone
perform. -
Added
database.proto
containing proto message definitions