diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e6e7e5..100f6d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 1.2.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. + ## 1.1.0 * Bump vendored SDK version to 0.2.0. diff --git a/lib/scout_apm/logging/version.rb b/lib/scout_apm/logging/version.rb index 0117540..52de83b 100644 --- a/lib/scout_apm/logging/version.rb +++ b/lib/scout_apm/logging/version.rb @@ -2,6 +2,6 @@ module ScoutApm module Logging - VERSION = '1.1.0' + VERSION = '1.2.0' end end