Releases: richard-viney/lightstreamer
Releases · richard-viney/lightstreamer
v0.17
v0.16
- Updated supported Ruby version range to 2.5 - 2.7.
- Updated dependency versions.
v0.15
- Updated supported Ruby version range to 2.4 - 2.6.
- Switched to
cc-test-reporter
now that thecodeclimate-test-reporter
gem has been deprecated.
Version 0.14
- Increased required Ruby version to >= 2.2.2
- Updated to
codeclimate-test-reporter
1.0
Version 0.13
- Fixed documentation warnings found by Inch CI
Version 0.12
- Added
Lightstreamer::Session#remove_subscriptions
- Removed
Lightstreamer::Subscription#session
, subscriptions now hold a weak reference to their session in order to prevent a circular reference
Version 0.11
- Added
Lightstreamer::Session#stop_subscriptions
for stopping multiple subscriptions in one request - Renamed
Lightstreamer::Session#bulk_subscription_start
toLightstreamer::Session#start_subscriptions
- Added support for combining all subscription actions via
Lightstreamer::Session#perform_subscription_actions
which allows subscription start, unsilence and stop requests to be easily bundled together - Fixed
Lightstreamer::Subscription#id
only being callable on the main thread
Version 0.10
- Added support for shared start options when doing a bulk subscription start
Version 0.9
- Replaced the
Lightstreamer::Session#error
attribute with a newLightstreamer::Session#on_error
callback to enable more efficient error handling and notification - Fixed issues with
Lightstreamer::Session#bulk_subscription_start
Version 0.8
- Added support for Lightstreamer's
COMMAND
andRAW
subscription modes - Added support for Lightstreamer's polling mode and switching an active session between streaming and polling
Lightstreamer::Subscription#item_data
now returnsnil
if the requested item has never had any data set- Renamed
Lightstreamer::Subscription#adapter
toLightstreamer::Subscription#data_adapter
and the--adapter
command-line option to--data-adapter
- The
--mode
command-line option is now required because the default value ofmerge
has been removed