diff --git a/CHANGELOG.md b/CHANGELOG.md index 006a979..2876bcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 2.1.0 +* Add ability to capture log line with logs. + * `logs_capture_log_line: true` +* Add ability to capture stack trace with logs. + * `logs_capture_call_stack: true` + * See [#98](https://github.com/scoutapp/scout_apm_ruby_logging/pull/98) for benchmarks. +* Add ability to disable warn message on method_missing. + * `logs_method_missing_warning: false` +* Add ability to log stack trace on method_missing. + * `logs_method_missing_call_stack: true` +* Add tests for ActionCable. + ## 2.0.0 * Remove vendored opentelmetry SDK. * Add support for Ruby 3.4. diff --git a/lib/scout_apm/logging/version.rb b/lib/scout_apm/logging/version.rb index 0ec026f..741a0d0 100644 --- a/lib/scout_apm/logging/version.rb +++ b/lib/scout_apm/logging/version.rb @@ -2,6 +2,6 @@ module ScoutApm module Logging - VERSION = '2.0.0' + VERSION = '2.1.0' end end