From 457ce477e45d06a0b90b8e8ae3ab7469c99cb936 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Sun, 16 Jul 2023 00:29:36 -0700 Subject: [PATCH] Delete deprecated `configuration` method Use `Sentry.configuration` instead. This was slated for removal in `v5.0.0` but was accidentally left in, so removing as part of `v6.0.0`. --- sentry-ruby/lib/sentry/event.rb | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sentry-ruby/lib/sentry/event.rb b/sentry-ruby/lib/sentry/event.rb index 0a76f3f4a..4d3b7b1d5 100644 --- a/sentry-ruby/lib/sentry/event.rb +++ b/sentry-ruby/lib/sentry/event.rb @@ -98,12 +98,6 @@ def get_message_from_exception(event_hash) end end - # @deprecated This method will be removed in v5.0.0. Please just use Sentry.configuration - # @return [Configuration] - def configuration - Sentry.configuration - end - # Sets the event's timestamp. # @param time [Time, Float] # @return [void]