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

release 0.4.0

+5 -3
+4 -2
CHANGELOG.md
··· 1 - ## [Unreleased] 1 + ## [0.4.0] - 2024-09-23 2 2 3 - - added heartbeat timer 3 + - (re)added a "hearbeat" feature (removed earlier in 0.2.0) to fix the occasional issue when the websocket stops receiving data, but doesn't disconnect (not enabled by default, turn it on by setting `check_heartbeat` to true) 4 + - added a way to set the user agent sent when connecting using the `user_agent` field (default is `"Skyfall/#{version}"`) 5 + - added `app.bsky.feed.postgate` record type 4 6 5 7 ## [0.3.1] - 2024-06-28 6 8
+1 -1
lib/skyfall/version.rb
··· 1 1 # frozen_string_literal: true 2 2 3 3 module Skyfall 4 - VERSION = "0.3.1" 4 + VERSION = "0.4.0" 5 5 end