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

release 0.5.1

+8 -1
+7
CHANGELOG.md
··· 1 + ## [0.5.1] - 2025-05-18 2 + 3 + - added support for the new `#sync` message type 4 + - added `#unknown?` helper in `Skyfall::Firehose::Message` and `Skyfall::Jetstream::Message`, which returns true if the message type is `UnknownMessage` 5 + - added `:bsky_verification` and `:bsky_actor_status` lexicon type and shortcode 6 + - added one missing require 7 + 1 8 ## [0.5.0] - 2024-11-15 2 9 3 10 Jetstream support! You can now connect to [Jetstream](https://github.com/bluesky-social/jetstream) sources using `Skyfall::Jetstream` (see readme).
+1 -1
lib/skyfall/version.rb
··· 1 1 # frozen_string_literal: true 2 2 3 3 module Skyfall 4 - VERSION = "0.5.0" 4 + VERSION = "0.5.1" 5 5 end