Changelog
April 13, 2026 · View on GitHub
v6.30.0 (13 April 2026)
Enhancements
- Use
ActiveSupport::Notifications.monotonic_subscribefor performance improvement on compatible Rails versions | #856
v6.29.0 (21 January 2026)
Enhancements
- Support for Ruby 4 | #849
Fixes
-
Amend secondary instance URL to bugsnag.smartbear.com | #845
-
Guard against nil URI errors in synchronous delivery | #851
v6.28.0 (8 July 2025)
Enhancements
- Set default endpoints based on API key | #835
v6.27.1 (18 June 2024)
Fixes
v6.27.0 (23 May 2024)
Enhancements
- Include the Warden scope in user metadata | #821 | javierjulio
- Add a block variant of
add_on_error| #824
v6.26.4 (25 March 2024)
Fixes
- Fix Unicode encoding issues when using
Exception#detailed_message(Ruby 3.2+) | #817 - Fix compatibility with Ruby 3.4-dev | #815 | k0kubun
v6.26.3 (24 January 2024)
Fixes
- Handle mailto links in
Cleaner#clean_url| #813
v6.26.2 (17 January 2024)
Fixes
- Fix unhandled
URI::InvalidURIErrorinCleaner#clean_url| #811
v6.26.1 (9 January 2024)
Fixes
- Fix deprecation warning from Sidekiq error handler | #796 | fukayatsu
- Fix Resque integration when failure backend is already
Resque::Failure::Multiple| #803 | sj26 - Redact URLs in automatic Rails breadcrumbs | #806
v6.26.0 (19 July 2023)
Enhancements
- Support Sidekiq v7 | #785 | stevenharman
v6.25.2 (7 February 2023)
Enhancements
- Improve performance of
Bugsnag.notify| #774 | sambostock
v6.25.1 (5 January 2023)
Fixes
- Allow Gem paths to be stripped from file names in stacktraces when they contain a Regexp special character | #764
Enhancements
- Use
Exception#detailed_messageinstead ofException#messagewhen available | #761
v6.25.0 (1 December 2022)
Enhancements
- Add support for feature flags & experiments. For more information, please see https://docs.bugsnag.com/product/features-experiments | #758
v6.24.2 (21 January 2022)
Fixes
- Avoid rescuing from errors in Active Record transaction callbacks in versions of Rails where they will be re-raised | #709 | apalmblad
v6.24.1 (30 November 2021)
Fixes
- Fix metadata not being recorded when using Resque outside of Active Job | #710 | isnotajoke
v6.24.0 (6 October 2021)
Enhancements
- Allow overriding an event's unhandled flag | #698
- Add the ability to store metadata globally | #699
- Add
cookies,bodyandhttpVersionto the automatically captured request data for Rack apps | #700 - Add
Configuration#endpointsfor reading the notify and sessions endpoints andConfiguration#endpoints=for setting them | #701 - Add
Configuration#redacted_keys. This is likemeta_data_filtersbut matches strings with case-insensitive equality, rather than matching based on inclusion | #703 - Allow pausing and resuming sessions, giving more control over the stability score | #704
- Add
Configuration#vendor_pathsto replaceConfiguration#vendor_path| #705
Deprecated
- In the next major release,
paramswill only contain query string parameters. Currently it also contains the request body for form data requests, but this is deprecated in favour of the newbodyproperty - The
Configuration#set_endpointsmethod is now deprecated in favour ofConfiguration#endpoints= - The
Configuration#meta_data_filtersoption is now deprecated in favour ofConfiguration#redacted_keys - The
Configuration#vendor_pathoption is now deprecated in favour ofConfiguration#vendor_paths
v6.23.0 (21 September 2021)
Enhancements
- Sessions will now be delivered every 10 seconds, instead of every 30 seconds | #680
- Log errors that prevent delivery at
ERRORlevel | #681 - Add
on_breadcrumbcallbacks to replacebefore_breadcrumb_callbacks| #686 - Add
contextattribute to configuration, which will be used as the default context for events. Using this option will disable automatic context setting | #687 | #688 - Add
Bugsnag#breadcrumbsgetter to fetch the current list of breadcrumbs | #689 - Add
time(an ISO8601 string in UTC) todevicemetadata | #690 - Add
errorstoReport/Eventcontaining an array ofErrorobjects. TheErrorobject containserror_class,error_message,stacktraceandtype(always "ruby") | #691 - Add
original_errortoReport/Eventcontaining the original Exception instance | #692 - Add
requesttoReport/Eventcontaining HTTP request metadata | #693 - Add
add_metadataandclear_metadatatoReport/Event| #694 - Add
set_usertoReport/Event| #695
Fixes
- Avoid starting session delivery thread when the current release stage is not enabled | #677
Deprecated
before_breadcrumb_callbackshave been deprecated in favour ofon_breadcrumbcallbacks and will be removed in the next major release- For consistency with Bugsnag notifiers for other languages, a number of methods have been deprecated in this release. The old options will be removed in the next major version | #676
- The
notify_release_stagesconfiguration option has been deprecated in favour ofenabled_release_stages - The
auto_capture_sessionsandtrack_sessionsconfiguration options have been deprecated in favour ofauto_track_sessions - The
enabled_automatic_breadcrumb_typesconfiguration option has been deprecated in favour ofenabled_breadcrumb_types - The
Reportclass has been deprecated in favour of theEventclass - The
Report#meta_dataattribute has been deprecated in favour ofEvent#metadata - The
Breadcrumb#meta_dataattribute has been deprecated in favour ofBreadcrumb#metadata - The
Breadcrumb#nameattribute has been deprecated in favour ofBreadcrumb#message - The breadcrumb type constants in the
Bugsnag::Breadcrumbsmodule has been deprecated in favour of the constants available in theBugsnag::BreadcrumbTypemodule For example,Bugsnag::Breadcrumbs::ERROR_BREADCRUMB_TYPEis now available asBugsnag::BreadcrumbType::ERROR
- The
Report#exceptionshas been deprecated in favour of the newerrorspropertyReport#raw_exceptionshas been deprecated in favour of the neworiginal_errorproperty- Accessing request data via
Report#metadatahas been deprecated in favour of using the newrequestproperty. Request data will be moved out of metadata in the next major version - The
Report#add_tabandReport#remove_tabmethods have been deprecated in favour of the newadd_metadataandclear_metadatamethods
v6.22.1 (11 August 2021)
Fixes
- Fix possible
LocalJumpErrorintroduced in v6.22.0 | #675
v6.22.0 (10 August 2021)
Enhancements
-
Add support for tracking exceptions and capturing metadata in Active Job, when not using an existing integration | #670
-
Improve the report context when using Delayed Job or Resque as the Active Job queue adapter | #671
v6.21.0 (23 June 2021)
Enhancements
- Allow a
Methodor any object responding to#callto be used as anon_errorcallback or middleware | #662 | odlp
Fixes
- Deliver when an error is raised in the block argument to
notify| #660 | aki77 - Fix potential
NoMethodErrorinBugsnag::Railtiewhen usingrequire: falsein a Gemfile | #666
v6.20.0 (29 March 2021)
Enhancements
- Classify
ActionDispatch::Http::MimeNegotiation::InvalidTypeas info severity level | #654
Fixes
- Include
connection_idin ActiveRecord breadcrumb metadata on new versons of Rails | #655 - Avoid crash when Mongo 1.12 or earlier is used | #652 | isabanin
6.19.0 (6 January 2021)
Enhancements
-
Exception messages will be truncated if they have a length greater than 3,072 | #636 | joshuapinter
-
Breadcrumb metadata can now contain any type | #648
6.18.0 (27 October 2020)
Enhancements
-
Bugsnag should now report uncaught exceptions inside Bundler's 'friendly errors' | #634
-
Improve the display of breadrumbs in the Bugsnag app by including milliseconds in timestamps | #639
6.17.0 (27 August 2020)
Enhancements
-
Sidekiq now uses
thread_queuedelivery by default | #626 -
Rescue now uses
thread_queuedelivery whenat_exithooks are enabled | #629
6.16.0 (12 August 2020)
Enhancements
-
Set default Delayed Job error context to job class | #499 | Mike Stewart
-
The
BUGSNAG_RELEASE_STAGEenvironment variable can now be used to set the release stage. Previously this was only used in Rails applications | #613 -
Add support for runtime versions to Delayed Job, Mailman and Shoryuken integrations | #620
-
Reduce the size of the bundled gem | #571 | t-richards
-
Move serialization of Reports onto the background thread when using the thread_queue delivery method | #623
Fixes
- The
app_typeconfiguration option should no longer be overwritten by Bugsnag and integrations should set this more consistently | #619
6.15.0 (27 July 2020)
Enhancements
-
Add
on_errorcallbacks to replacebefore_notify_callbacks| #608 -
Improve performance when extracting code from files in stacktraces | #604
-
Reduce memory use when session tracking is disabled | #606
Deprecated
before_notify_callbackshave been deprecated in favour ofon_errorand will be removed in the next major release
6.14.0 (20 July 2020)
Enhancements
-
Add configurable
discard_classesoption to allow filtering errors using either aStringorRegexpmatched against the error's class name | #597 -
The Breadcrumb name limit of 30 characters has been removed | #600
-
Improve performance of payload cleaning | #601
-
Improve performance when processing stacktraces | #602 | #603
-
If a custom object responds to
idmethod, show the id and class in error reports | #531 | manojmj92
Deprecated
- The
ignore_classesconfiguration option has been deprecated in favour ofdiscard_classes.ignore_classeswill be removed in the next major release
6.13.1 (11 May 2020)
Fixes
- Only call custom diagnostic data methods once | #586 | stoivo
- Guard against exceptions in to_s when cleaning objects | #591
6.13.0 (30 Jan 2020)
Enhancements
- Add configurable
vendor_pathto configure which file paths are out of project stacktrace. | #544
Fixes
- Resolve Ruby deprecation warning for keyword parameters | #580
6.12.2 (24 Oct 2019)
Fixes
- Handle change in capitalisation of framework version constant for Que in v1.x | #570 | #572 | tommeier
6.12.1 (05 Sep 2019)
Fixes
- Account for missing
:bindskey insql.active_recordActiveSupport notifications. | #555 | #565 - Remove duplicate attribute declaration warning for
track_sessionsin Configuration. | #510 | pocke
6.12.0 (28 Aug 2019)
Enhancements
-
Add Ruby (and other framework) version strings to report and session payloads (device.runtimeVersions). | 560
-
Allow symbols in breadcrumb meta data. | #563 | directionless
Fixes
-
Use
Module#prependfor Rake integration when on a new enough Ruby version to avoid infinite mutual recursion issues when something else monkey patchesRake::Task. | #556 | #559 -
Handle
nilvalues for thejobblock parameter for the Que error notifier. This occurs under some conditions such as database connection failures. | #545 | #548
6.11.1 (22 Jan 2019)
Fixes
- Fix issue with unnecessary meta_data being logged during breadcrumb validation. | #530
6.11.0 (17 Jan 2019)
Note: this release alters the behaviour of the notifier to track sessions automatically.
Enhancements
-
Added Breadcrumbs. Breadcrumbs allow you to track events that may have led up to an error, such as handled errors, page redirects, or SQL queries. For info on what is tracked and how you can customize the data that breadcrumbs collect, see the Logging breadcrumbs section of our documentation. | #525
-
Bugsnag will now capture automatically created sessions by default. | #523
Deprecated
- The
endpointandsession_endpointconfiguration options are now deprecated but still supported. Theset_endpointsmethod should be used instead. Note that session tracking will be disabled if the notify endpoint is configured but the sessions endpoint is not - this is to avoid inadvertently sending session payloads to the wrong server.
6.10.0 (05 Dec 2018)
Enhancements
-
Add SignalException to our default ignored classes | #479 | Toby Hsieh
-
Include Bugsnag frames, marked out of project | #497
Fixes
- Ensure Sidekiq request data is always attached to notifications | #495
6.9.0 (12 Nov 2018)
Enhancements
-
Ensure the correct error handler is used in newer versions of Sidekiq | #434
-
Rewrite Delayed::Job integration to fix potential issues and add more collected data | #492 | Simon Maynard
6.8.0 (11 Jul 2018)
This release includes general performance improvements to payload trimming and filtering.
Enhancements
-
Capture unexpected app terminations automatically with
at_exit| #397 | Alex Moinet -
(DelayedJob) Improve max attempts handling - If the max attempts method returns nil it should fallback to
Delayed::Worker.max_attempts| #471 | Johnny Shields -
Increase payload size limit to 512kb (from 256kb) | #431 | Alex Moinet
Fixes
6.7.3 (18 May 2018)
Fixes
- Apply metadata filters to HTTP referer fields | #460 | Renee Balmert
6.7.2 (24 Apr 2018)
Fixes
- (Notify) Handle
notifycalls withnilarguments correctly | #439
6.7.1 (11 Apr 2018)
Fixes
- (Rails) Log missing key warning after initialization completes, avoiding incorrectly logging a warning that the API key is missing | #444
6.7.0 (05 Apr 2018)
Enhancements
-
Support HTTP proxy from
http_proxyandhttps_proxyenvironment variables | #424 | #437 | Bill Kirtley -
Add option to disable auto-configuration | #419
-
Add
warden.user.rackdata to default filters | #436
Fixes
- Ensure logged messages include Bugsnag progname | #443
6.6.4 (14 Feb 2018)
Fixes
- Mark files in
.bundle/directory as not "in project" | #420 | Alex Moinet - Restore support for attaching
bugsnag_*metadata to exceptions without extendingBugsnag::Middleware::ExceptionMetaData| #426 | Jordan Raine
6.6.3 (23 Jan 2018)
Fixes
- Re-added apiKey to payload for compatibility | #418
6.6.2 (18 Jan 2018)
Fixes
- Fix Shoryuken integration &
project_rootPathnameissue | #416 | Sergei Maximov
6.6.1 (09 Jan 2018)
Bug fixes
- Fix failure to launch session polling task | #414
6.6.0 (09 Jan 2018)
Enhancements
- Session tracking update:
6.5.0 (04 Jan 2018)
Enhancements
- Adds support for tracking sessions and crash rate by setting the configuration option
configuration.auto_capture_sessionstotrue. Sessions can be manually created usingBugsnag.start_session. | #411
6.4.0 (21 Dec 2017)
Enhancements
- Added support for DelayedJob custom job arguments | #359 | Calvin Hughes
6.3.0 (14 Dec 2017)
Enhancements
- Allow skipping report generation using exception property | #402
6.2.0 (07 Dec 2017)
Enhancements
- Added common exit exceptions - SystemExit and Interrupt - to default ignore classes. | #404
6.1.1 (23 Nov 2017)
Fixes
- Ensured Bugsnag class intialises before railties initialised | #396
6.1.0 (17 Nov 2017)
Enhancements
- Use lazy load hooks to hook on ActionController::Base | Edouard-chin | #393
Fixes
-
Fix type in Rack/Clearance integration | geofferymm | #392
-
Fix upgrade link to docs | duncanhewett | #390
6.0.1 (09 Nov 2017)
Adds a warning for the change in usage for the notify() method from < 6.0 to
ease upgrading.
6.0.0 (09 Nov 2017)
This notifier has been extensively re-written to make it easier to add new integrations and maintain in the future. This has led to several changes that are not backwards compatible. Please refer to the upgrading guide for more information.
Enhancements
-
General notifier re-write | #320 | #378 | #368 | #381 | #385 | #386
-
Added Upgrade guide | #370
-
Did-you-mean suggestions middleware | #372
-
Updated examples | #374
5.5.0 (09 Nov 2017)
Enhancements
5.4.1 (06 Oct 2017)
Fixes
-
[DelayedJob] Fix
NameErroroccurring on erroring job notification | Eito Katagiri | #377 -
Fixed failing Rake/Java tests | #378
5.4.0 (02 Oct 2017)
This release removes the default setting of ignoring classes of errors which are commonly associated with typos or server signals (SystemExit), instead recording them as info-level severity by default. This includes the following classes:
AbstractController::ActionNotFound,
ActionController::InvalidAuthenticityToken,
ActionController::ParameterMissing,
ActionController::RoutingError,
ActionController::UnknownAction,
ActionController::UnknownFormat,
ActionController::UnknownHttpMethod,
ActiveRecord::RecordNotFound,
CGI::Session::CookieStore::TamperedWithCookie,
Mongoid::Errors::DocumentNotFound,
SignalException,
SystemExit
Enhancements
- Add a one-time warning if the API key is not set
- Track whether errors were captured automatically and by which middleware
5.3.3 (16 June 2017)
- [Rails] Fix failure to report when encountering objects which throw in
to_s#361
5.3.2 (27 April 2017)
Bug fixes
- [Sidekiq] Revert commit c7862ea because Sidekiq's logging middleware was removed in version 5.0.0 | Reuben Brown | #358
5.3.1 (20 April 2017)
Bug fixes
- [Resque] Fix error when creating a worker without a queue | Dean Galvin | #355
5.3.0 (07 April 2017)
Enhancements
- [Resque] Fix leaking config into parent process | Martin Holman | #347
- Add new integration for Que | Sjoerd Andringa | #305
- [Sidekiq] Start Bugsnag after the logger in the middleware chain | Stephen Bussey | Akhil Naini | #326 | #350
- [Rake] Allow overriding
app_typeapps | #351 - Send the dyno name as the hostname when running on Heroku | #333
- [Delayed Job] Add additional job information such as arguments and number of attempts when available | Tim Diggins | Abraham Chan | Johnny Shields | #329 | #332 | #321
Bug fixes
- Initialize Railtie after Bugsnag class | #343
- Alias
notify_or_ignoretonotify| Simon Maynard | #319
5.2.0 (10 February 2017)
Enhancements
Bug fixes
- Correctly hook on Action Controller | @rafaelfranca | #338
- Fix Bugsnag error message typo | @Adsidera | #344
- Default delivery method | @martin308 | #346
5.1.0 (23 January 2017)
Bug fixes
- Fix behavior to not override Rails 5
belongs_toassociation | #314
Enhancements
- Add Clearance support | Jonathan Rochkind | #313
- Add Shoruken support | Nigel Ramsay | #324
5.0.1 (7 September 2016)
Bug fixes
- Show the job class name for Sidekiq jobs, not the wrapper class name | Simon Maynard | #323
5.0.0 (23 August 2016)
Enhancements
- Remove RoutingError from default ignore classes | #308
- Prefer BUGSNAG_RELEASE_STAGE over RAILS_ENV for release_stage | #298
- Apply grouping hash if method
bugsnag_grouping_hashis available on the object | #318 | #311 - Sidekiq improvements | #317 | #282 | #309 | #306
Fixes
- Exception backtrace could be empty | #307
4.2.1 (23 Jun 2016)
Fixes
-
Ensure Rails 2 extensions are not loaded on newer versions | #303
-
Remove API key logging when Bugsnag is logging successfully | Julian Borrey | #299
4.2.0 (17 Jun 2016)
Enhancements
- Add the name of the job class in context for Sidekiq and Resque errors | Johan Lundström | #293
4.1.0 (11 May 2016)
Enhancements
- Add support for 'block syntax' on Bugsnag.notify calls | James Smith | #292
Fixes
4.0.2 (13 Apr 2016)
Fixes
4.0.1 (5 Apr 2016)
Fixes
-
Fix Sidekiq app type being overwritten by Rails | Luiz Felipe G. Pereira | #286
-
Fix report uploads being rejected due to payload size | Ben Ibinson | Duncan Hewett | #288 | #290
-
Fix a possible crash when parsing a URL for RackRequest | Max Schubert | #289
-
Hide partial API key logged when loading Bugsnag | #283
4.0.0 (9 Mar 2016)
This release includes general fixes as well as removing support for Ruby versions below 1.9.2.
Fixes
-
Fix deployment notification failure in Capistrano | Simon Maynard | #275
-
Fix Bad Request errors generated by large payloads | Simon Maynard | #276
3.0.0 (23 Dec 2015)
Enhancements
-
Fix warning from usage of
before_filterin Rails 5 | Scott Ringwelski | #267 -
Use Rails 5-style deep parameter filtering | fimmtiu | #256
Note: This is a backwards incompatible change, as filters containing
.are now parsed as nested instead of as a single key.
2.8.13
Bug Fixes
- Fix crash during heroku Rake task when an environment variable was empty | #261
Enhancements
- Various warning fixes | Taylor Fausak | #254
- Make the list of vendor paths configurable | Jean Boussier | #253
2.8.12
- Ensure timeout is set when configured
- Allow on premise installations to easily send deploy notifications
2.8.11
- Better handle errors in ActiveRecord transactions (thanks @arthurnn!)
2.8.10
- Remove multi_json from deploy
2.8.9
- Remove dependency on
multi_json, fall back to thejsongem for Ruby < 1.9
2.8.8
- Pull IP address from action_dispatch.remote_ip if available
2.8.7
- Fix for old rails 3.2 not having runner defined in the railtie
- Support for rails API
- Added support for ca_file for dealing with SSL issues
- Threadsafe ignore_classes
- Add app type
- Dont send cookies in their own tab
2.8.6
- Don't report SystemExit from
rails runner - Fix for stacktrace including custom bugsnag middleware
- Fix reporting of errors in rails-defined rake tasks
2.8.5
- Fix performance problems in cleanup_obj
2.8.4
- Automatically catch errors in
rails runner - Accept meta_data from any exception that deines
bugsnag_meta_data
2.8.3
- Delay forking the delivery thread
2.8.2
- Fix various threading issues during library initialization
2.8.1
- Exclude cookies and authorization headers by default
- Include rails exclusion list at the right time
2.8.0
- Make meta_data available to before_notify hooks
- Fix bug with rails param filters
- Fix encoding error in exception message
2.7.1
- Add rake task to create a Heroku deploy hook
2.7.0
- Fix configuration of http timeouts
- Fix configuration of http proxies
- Remove dependency on httparty
- Allow for symbols in rack env
2.6.1
- Fix Ruby 1.8 payload delivery bug (thanks @colin!)
2.6.0
- Collect and send snippets of source code to Bugsnag
- Fix resque integration
- Allow configuration of delivery method (from the default
:thread_queueto:synchronous) - Fix parameter filtering in rails 2
- Allow pathname in project root
2.5.1
- Collect and send HTTP headers to bugsnag to help debugging
2.5.0
- Allow access to the metadata object in before bugsnag notify callbacks
- Dont send the rack env by default
2.4.1
- Ensure filtering behaviour matches rails' for symbol filters
- Fix Rails 4 sessions appearing in Custom tab instead of its own (144)
2.4.0
- Allow filters to be regular expressions (thanks @tamird)
- Ensure filtering behavior matches rails' when importing filters from
Rails.configuration.filter_parameters
2.3.0
- Use ssl by default (Thanks @dkubb)
2.2.2
- Add additional ignored classes
- Check all chained exceptions on an error for ignored classes
2.2.1
- Fix occasional crash when reading rack params.
- Don't strip files with bugsnag in the name.
2.2.0
- Move Bugsnag notifications onto a background thread.
2.1.0
- Add job detail support to delayed_job integration (thanks dtaniwaki!)
2.0.3
- Load the env in the deploy rake task if there is no api key set
2.0.2
- Fix encoding issue when ensuring utf8 string is valid
2.0.1
- Fix capistrano v3 after 2.0.0
2.0.0
- BREAKING: capistrano integration requires explicit configuration to avoid loading rails env (15x faster to notify)
- Sidekiq 3 support
- java.lang.Throwable support for jruby
- Show non-serializable objects as '[Object]' instead of 'null'.
- Fix delayed job 2.x
- Fix rake support
- Fix missing notifications caused by invalid utf8
1.8.8
- Prepare 'severity' feature for release
1.8.7
- Fix capistrano when
rakeis not set. #87 - Fix capistrano when
Railsis not loaded. #85 - Various cleanup
1.8.6
- Proxy support in the bugsnag deploy notification rake task
1.8.5
- Capistrano3 support (for real)
- delayed_job support
1.8.4
- Support for per-notification api keys
1.8.3
- Capistrano3 support
- Allow
set :bugsnag_api_key, fooin capistrano
1.8.2
- Notify all exceptions in mailman and sidekiq
1.8.1
- Fix Rails2 middleware issue that stopped automatic metadata collection
1.8.0
- Move away from Jeweler
- Support for Exception#cause in ruby 2.1.0
1.7.0
- Allow users to configure app type
- Send severity of error to bugsnag
- Allo users to configure users in a structured way for search etc.
1.6.5
- Send hostname to Bugsnag
1.6.4
- Fix load order issue with Resque
1.6.3
- Deal with SSL properly for deploy notifications on ruby <2.0
1.6.2
- Notify about exceptions that occur in ActiveRecord
commitandrollbackcallbacks (these are usually swallowed silently by rails)
1.6.1
- Ensure sidekiq, mailman and rake hooks respect the
ignore_classessetting - Persist sidekiq and mailman meta-data through each job, so it can show up in manual Bugsnag.notify calls
1.6.0
- Add support for catching crashes in mailman apps
- Automatically enable Bugsnag's resque failure backend
- Add automatic rake integration for rails apps
1.5.3
- Deal with self-referential meta data correctly.
- Dont load the environment when performing a deploy with capistrano.
1.5.2
- Dont send rack.request.form_vars as it is a copy of form_hash and it may contain sensitive params.
1.5.1
- Fix rake block arguments for tasks that need them.
1.5.0
- Add proxy support for http requests to Bugsnag.
- Read the API key from the environment for Heroku users
1.4.2
- Add HTTP Referer to the request tab on rack apps
1.4.0
- Add ignore_user_agents to ignore certain user agents
- Change bugsnag middleware order to have Callbacks last
- Allow nil values to be sent to bugsnag
1.3.8
- Add truncated only when a field has been truncated
1.3.7
- Fix warden bug where user id is an array of ids
- Filter get params from URLs as well as meta_data
1.3.6
- Filter out meta-data keys containing the word 'secret' by default
1.3.5
- Fixed bug in rake integration with ruby 1.9 hash syntax
1.3.4
- Fix nil bug in windows backtraces
1.3.3
- Support windows-style paths in backtraces
- Fix bug with
before_bugsnag_notifyin Rails 2
1.3.2
- Notify will now build exceptions if a non-exception is passed in.
1.3.1
- Add support for Bugsnag rake integration
1.3.0
- By default we notify in all release stages now
- Return the notification in notify_or_ignore
1.2.18
- Add support for bugsnag meta data in exceptions.
1.2.17
- Clear the before bugsnag notify callbacks on sidekiq when a job is complete
1.2.16
- Allow lambda functions in config.ignore_classes
1.2.15
- Add stacktrace to internal bugsnag logging output
- Protect against metadata not being a hash when truncation takes place
1.2.14
- Add debug method, configuration option to help debug issues
- Better protection against bad unicode strings in metadata
1.2.13
- Protect against invalid unicode strings in metadata
1.2.12
- Fixed minor HTTParty dependency issue
1.2.11
- Send rails version with exceptions
- Protect against nil params object when errors happen in rack
1.2.10
- Added Rack HTTP method (GET, POST, etc) to request tab
1.2.9
- Fixed an issue with Warden userIds not being reported properly.
1.2.8
- Added
disablemethod to Bugsnag middleware, allows you to force-disable built-in Bugsnag middleware.
1.2.7
- Protect against rare exception-unwrapping infinite loop
(only in some exceptions using the
original_exceptionpattern)
1.2.6
- Fix for rails 2 request data extraction
- Deploy environment customization support (thanks coop)
- Ensure Bugsnag rails 3 middleware runs before initializers
1.2.5
- Show a warning if no release_stage is set when delivering exceptions
- Require resque plugin in a safer way
1.2.4
- Automatically set the release_stage in a safer way on rack/rails
1.2.3
- Re-add support for sending bugsnag notifications via resque
1.2.2
- Add rspec tests for rack middleware
1.2.1
- Fix a bug where before/after hooks were not being fired
1.2.0
- Added Bugsnag Middleware and callback, easier ways to add custom data to your exceptions
- Added automatic Sidekiq integration
- Added automatic Devise integration
- Comprehensive rspec tests
1.1.5
- Fix minor internal version number parsing bug
1.1.4
- Move Bugsnag rack middleware later in the middleware stack, fixes issue where development exception may not have been delivered
1.1.3
- Fix multi_json conflict with rails 3.1
- Make bugsnag_request_data public for easier EventMachine integration (thanks fblee)
1.1.2
- Fix multi_json gem dependency conflicts
1.1.1
- Capistrano deploy tracking support
- More reliable project_root detection for non-rails rack apps
- Support for sending test exceptions from rake (
rake bugsnag:test_exception)
1.1.0
- First public release