From a068321e76b4e2fb64423f03f5ef1bc45a5ce716 Mon Sep 17 00:00:00 2001 From: Jack Rothrock Date: Wed, 18 Jun 2025 12:34:01 -0600 Subject: [PATCH] Bump version to 1.2 --- CHANGELOG.md | 12 ++++++++++++ lib/scout_apm/logging/version.rb | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) 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