Skip to content

Releases: SeaQL/sea-streamer

0.3.2

05 Sep 17:54
Compare
Choose a tag to compare
  • sea-streamer-file Improvements over read and write throughput
  • sea-streamer-file-reader A node.js library for decoding sea-streamer files
  • sea-streamer-redis Improvements over write throughput

0.3.0

11 Jul 15:01
Compare
Choose a tag to compare
  • Introducing sea-streamer-file: the File Backend
  • Added File, OpenOptions, AsyncReadExt etc to sea-streamer-runtime
  • Added AsyncMutex to sea-streamer-runtime
  • Added OwnedMessage to sea-streamer-types
  • Added TIMESTAMP_FORMAT and SEA_STREAMER_INTERNAL to sea-streamer-types
  • Implemented serde::Serialize for MessageHeader

Breaking changes

  • Removed const SEA_STREAMER_INTERNAL from sea-streamer-redis
  • StreamUrl now requires an ending slash to avoid ambiguity, StreamerUri remains unchanged
assert!("redis://localhost/a,b".parse::<StreamUrl>().is_ok());
assert!("redis://localhost/".parse::<StreamUrl>().is_ok());
assert!("redis://localhost".parse::<StreamUrl>().is_err()); // previously this was OK
assert!("redis://localhost".parse::<StreamerUri>().is_ok());

0.2.1

07 May 12:18
Compare
Choose a tag to compare
  • Added a MKSTREAM option when creating Redis consumer groups (RedisConsumerOptions::set_mkstream) #4
  • Added SaslOptions and KafkaConnectOptions::set_sasl_options for using Kafka with SASL authentication #8

Full Changelog: 0.2.0...0.2.1

0.2.0

25 Mar 13:50
Compare
Choose a tag to compare

Introducing sea-streamer-redis.

0.1.0

25 Mar 13:14
Compare
Choose a tag to compare

Initial release.