bugsnag/bugsnag-ruby

Breadcrumb meta_data validation fails while using ActionMailer

Closed this issue · 2 comments

Describe the bug

Breadcrumb meta_data validation fails while using ActionMailer:
Breadcrumb ActionMail delivered meta_data date:DateTime has been dropped for having an invalid data type

The email is delivered successfully btw if I catch this exception like this:

begin
  CompanyInvoiceMailer.report(email, report).deliver_now
rescue => exception
  exception.message
end

Environment

  • Bugsnag version: 6.13.0
  • Ruby version: 2.7.4
  • Bundle version: 2.1.4
  • Integration framework version:
    • Rails: 6.0.2.2

Is this something similar with this issue? #539

Hi @Studenich, the validation on breadcrumb metadata types was removed in v6.19.0 so updating your bugsnag version should allow you to attach DateTime values to your breadcrumbs

The latest release is v6.26.0

@imjoehaines Thanks a lot, it definately has helped me!