Releases: magicbell/magicbell-ruby
Releases · magicbell/magicbell-ruby
v2.2.1
Fixed
- Address deprecation of
OpenSSL::Digest::Digest(@daveallie in #21)
v2.2.0
We're adding support for fetching notifications when you identify users by their ID.
require 'magicbell'
magicbell = MagicBell::Client.new
user = magicbell.user_with_external_id('XXXXXXXXX')
user.notifications.each do |notification|
puts notification.attribute('title')
end- Added
user_with_external_idmethod toMagicBell::Client
v2.1.1
- Fix error handling, thanks to @darrencauthon for the fix
- Bump ruby version to 2.7.4
v2.1.0
- [Added] Allow to create instances of the
MagicBell::Clientwith a custom configuration. - Several improvements to the documentation
v2.0.0
This version removes the BCC functionality, as this feature is deprecated.
- [Breaking change] The
ring_the_magicbellmethod was removed - [Breaking change] The
bcc_emailmethod was removed - The
MAGICBELL_BCC_EMAILenvironment variable is not used anymore
v1.0.2
Adds the ability to create notifications for recipients identified by their external_id, which is their ID in your database.