A Ruby gem for streaming data from the Bluesky/ATProto firehose

release 0.3.1

+7 -4
+6 -3
CHANGELOG.md
··· 1 1 ## [Unreleased] 2 2 3 3 - added heartbeat timer 4 - - fixed param validation on `Stream` initialization 5 - - reverted the change with adding Ruby stdlib dependencies explicitly to the gemspec, since this causes more problems than it's worth - only `base64` is left there, since it's the one now required to be listed 6 - - added `chat.bsky.actor.declaration` record type 4 + 5 + ## [0.3.1] - 2024-06-28 6 + 7 + - added `app.bsky.graph.starterpack` and `chat.bsky.actor.declaration` record types 7 8 - added `#account` event type (`AccountMessage`) 8 9 - added `handle` field to `IdentityMessage` 10 + - fixed param validation on `Stream` initialization 11 + - reverted the change that added Ruby stdlib dependencies explicitly to the gemspec, since this causes more problems than it's worth - only `base64` is left there, since it's the one now required to be listed 9 12 10 13 ## [0.3.0] - 2024-03-21 11 14
+1 -1
lib/skyfall/version.rb
··· 1 1 # frozen_string_literal: true 2 2 3 3 module Skyfall 4 - VERSION = "0.3.0" 4 + VERSION = "0.3.1" 5 5 end