Skip to content

Releases: magicbell/magicbell-ruby

v2.2.1

09 Mar 20:40
Compare
Choose a tag to compare

Fixed

  • Address deprecation of OpenSSL::Digest::Digest (@daveallie in #21)

v2.2.0

27 Oct 21:18
Compare
Choose a tag to compare

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_id method to MagicBell::Client

v2.1.1

04 Oct 16:00
Compare
Choose a tag to compare
  • Fix error handling, thanks to @darrencauthon for the fix
  • Bump ruby version to 2.7.4

v2.1.0

06 Jul 12:32
Compare
Choose a tag to compare
  • [Added] Allow to create instances of the MagicBell::Client with a custom configuration.
  • Several improvements to the documentation

v2.0.0

06 Jul 14:08
16bdb80
Compare
Choose a tag to compare

This version removes the BCC functionality, as this feature is deprecated.

  • [Breaking change] The ring_the_magicbell method was removed
  • [Breaking change] The bcc_email method was removed
  • The MAGICBELL_BCC_EMAIL environment variable is not used anymore

v1.0.2

18 Feb 10:12
Compare
Choose a tag to compare

Adds the ability to create notifications for recipients identified by their external_id, which is their ID in your database.