Skip to content

Releases: streamingfast/substreams-sink-database-changes

v0.2.0

06 Dec 17:54
Compare
Choose a tag to compare

Changelog

  • BREAKING Updated substreams dependency to 0.5.0.

Commits

  • a6d4c15 Fixed typo and update readme a bit
  • 71fe5ed Merge pull request #1 from jotto/develop
  • b6285cf Preparing for next release
  • f200aeb Regenerate Cargo.lock with new substreams 0.5.0
  • b4ef3e7 Update substreams to 0.5.0
  • d27ba14 Updated changelog for upcoming release

v0.1.2

26 Nov 20:47
Compare
Choose a tag to compare

Changelog

  • Added support for substreams::Hex type which converts to string in hexadecimal form.

Commits

  • 47f88e2 Added support for substreams::Hex type which converts to string in hexadecimal form.
  • 4c390e8 Prepare for 0.1.2 release

v0.1.1

26 Nov 19:29
Compare
Choose a tag to compare

Changelog

  • Added support for prost::Timestamp type.

  • Made AsString public so you can implement on your own custom types.

Commits

  • c1d5a25 Made AsString public some users of the crate can implement it on their own types
  • 6f4337c Preparing release 0.1.1

v0.1.0

26 Nov 19:21
Compare
Choose a tag to compare

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 because Into<String> usage and ToString 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

Commits

  • e0ec80b Added more release instructions notes
  • db0056a Cleaned up substreams-database-change
  • b62a898 Initial commit
  • 0175e5b Refactored to reduce code amount and add more types coverage
  • 9226777 adding spkg file
  • a34865d adding substreams databases models proto
  • f4076cd updating readme