sentry-rails 5.18.2 → 5.28.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +43 -26
- data/Rakefile +13 -10
- data/app/jobs/sentry/send_event_job.rb +2 -0
- data/bin/console +1 -0
- data/bin/test +389 -0
- data/lib/generators/sentry_generator.rb +13 -1
- data/lib/sentry/rails/action_cable.rb +3 -1
- data/lib/sentry/rails/active_job.rb +65 -10
- data/lib/sentry/rails/background_worker.rb +13 -7
- data/lib/sentry/rails/backtrace_cleaner.rb +7 -7
- data/lib/sentry/rails/breadcrumb/active_support_logger.rb +2 -0
- data/lib/sentry/rails/breadcrumb/monotonic_active_support_logger.rb +2 -0
- data/lib/sentry/rails/capture_exceptions.rb +4 -2
- data/lib/sentry/rails/configuration.rb +64 -18
- data/lib/sentry/rails/controller_methods.rb +2 -0
- data/lib/sentry/rails/controller_transaction.rb +7 -3
- data/lib/sentry/rails/engine.rb +2 -0
- data/lib/sentry/rails/error_subscriber.rb +2 -0
- data/lib/sentry/rails/instrument_payload_cleanup_helper.rb +2 -0
- data/lib/sentry/rails/log_subscriber.rb +73 -0
- data/lib/sentry/rails/log_subscribers/action_controller_subscriber.rb +116 -0
- data/lib/sentry/rails/log_subscribers/action_mailer_subscriber.rb +88 -0
- data/lib/sentry/rails/log_subscribers/active_job_subscriber.rb +155 -0
- data/lib/sentry/rails/log_subscribers/active_record_subscriber.rb +134 -0
- data/lib/sentry/rails/log_subscribers/parameter_filter.rb +52 -0
- data/lib/sentry/rails/overrides/streaming_reporter.rb +2 -0
- data/lib/sentry/rails/railtie.rb +16 -2
- data/lib/sentry/rails/rescued_exception_interceptor.rb +12 -1
- data/lib/sentry/rails/structured_logging.rb +32 -0
- data/lib/sentry/rails/tracing/abstract_subscriber.rb +2 -0
- data/lib/sentry/rails/tracing/action_controller_subscriber.rb +5 -3
- data/lib/sentry/rails/tracing/action_view_subscriber.rb +4 -2
- data/lib/sentry/rails/tracing/active_record_subscriber.rb +1 -0
- data/lib/sentry/rails/tracing/active_storage_subscriber.rb +8 -3
- data/lib/sentry/rails/tracing/active_support_subscriber.rb +63 -0
- data/lib/sentry/rails/tracing.rb +2 -0
- data/lib/sentry/rails/version.rb +3 -1
- data/lib/sentry/rails.rb +3 -0
- data/lib/sentry-rails.rb +2 -0
- data/sentry-rails.gemspec +4 -2
- metadata +20 -14
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sentry-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.
|
|
4
|
+
version: 5.28.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sentry Team
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: railties
|
|
@@ -30,21 +29,21 @@ dependencies:
|
|
|
30
29
|
requirements:
|
|
31
30
|
- - "~>"
|
|
32
31
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 5.
|
|
32
|
+
version: 5.28.1
|
|
34
33
|
type: :runtime
|
|
35
34
|
prerelease: false
|
|
36
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
36
|
requirements:
|
|
38
37
|
- - "~>"
|
|
39
38
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 5.
|
|
39
|
+
version: 5.28.1
|
|
41
40
|
description: A gem that provides Rails integration for the Sentry error logger
|
|
42
41
|
email: accounts@sentry.io
|
|
43
42
|
executables: []
|
|
44
43
|
extensions: []
|
|
45
44
|
extra_rdoc_files:
|
|
46
|
-
- README.md
|
|
47
45
|
- LICENSE.txt
|
|
46
|
+
- README.md
|
|
48
47
|
files:
|
|
49
48
|
- ".gitignore"
|
|
50
49
|
- ".rspec"
|
|
@@ -57,6 +56,7 @@ files:
|
|
|
57
56
|
- app/jobs/sentry/send_event_job.rb
|
|
58
57
|
- bin/console
|
|
59
58
|
- bin/setup
|
|
59
|
+
- bin/test
|
|
60
60
|
- lib/generators/sentry_generator.rb
|
|
61
61
|
- lib/sentry-rails.rb
|
|
62
62
|
- lib/sentry/rails.rb
|
|
@@ -73,27 +73,34 @@ files:
|
|
|
73
73
|
- lib/sentry/rails/engine.rb
|
|
74
74
|
- lib/sentry/rails/error_subscriber.rb
|
|
75
75
|
- lib/sentry/rails/instrument_payload_cleanup_helper.rb
|
|
76
|
+
- lib/sentry/rails/log_subscriber.rb
|
|
77
|
+
- lib/sentry/rails/log_subscribers/action_controller_subscriber.rb
|
|
78
|
+
- lib/sentry/rails/log_subscribers/action_mailer_subscriber.rb
|
|
79
|
+
- lib/sentry/rails/log_subscribers/active_job_subscriber.rb
|
|
80
|
+
- lib/sentry/rails/log_subscribers/active_record_subscriber.rb
|
|
81
|
+
- lib/sentry/rails/log_subscribers/parameter_filter.rb
|
|
76
82
|
- lib/sentry/rails/overrides/streaming_reporter.rb
|
|
77
83
|
- lib/sentry/rails/railtie.rb
|
|
78
84
|
- lib/sentry/rails/rescued_exception_interceptor.rb
|
|
85
|
+
- lib/sentry/rails/structured_logging.rb
|
|
79
86
|
- lib/sentry/rails/tracing.rb
|
|
80
87
|
- lib/sentry/rails/tracing/abstract_subscriber.rb
|
|
81
88
|
- lib/sentry/rails/tracing/action_controller_subscriber.rb
|
|
82
89
|
- lib/sentry/rails/tracing/action_view_subscriber.rb
|
|
83
90
|
- lib/sentry/rails/tracing/active_record_subscriber.rb
|
|
84
91
|
- lib/sentry/rails/tracing/active_storage_subscriber.rb
|
|
92
|
+
- lib/sentry/rails/tracing/active_support_subscriber.rb
|
|
85
93
|
- lib/sentry/rails/version.rb
|
|
86
94
|
- sentry-rails.gemspec
|
|
87
|
-
homepage: https://github.com/getsentry/sentry-ruby/tree/5.
|
|
95
|
+
homepage: https://github.com/getsentry/sentry-ruby/tree/5.28.1/sentry-rails
|
|
88
96
|
licenses:
|
|
89
97
|
- MIT
|
|
90
98
|
metadata:
|
|
91
|
-
homepage_uri: https://github.com/getsentry/sentry-ruby/tree/5.
|
|
92
|
-
source_code_uri: https://github.com/getsentry/sentry-ruby/tree/5.
|
|
93
|
-
changelog_uri: https://github.com/getsentry/sentry-ruby/blob/5.
|
|
99
|
+
homepage_uri: https://github.com/getsentry/sentry-ruby/tree/5.28.1/sentry-rails
|
|
100
|
+
source_code_uri: https://github.com/getsentry/sentry-ruby/tree/5.28.1/sentry-rails
|
|
101
|
+
changelog_uri: https://github.com/getsentry/sentry-ruby/blob/5.28.1/CHANGELOG.md
|
|
94
102
|
bug_tracker_uri: https://github.com/getsentry/sentry-ruby/issues
|
|
95
|
-
documentation_uri: http://www.rubydoc.info/gems/sentry-rails/5.
|
|
96
|
-
post_install_message:
|
|
103
|
+
documentation_uri: http://www.rubydoc.info/gems/sentry-rails/5.28.1
|
|
97
104
|
rdoc_options: []
|
|
98
105
|
require_paths:
|
|
99
106
|
- lib
|
|
@@ -108,8 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
108
115
|
- !ruby/object:Gem::Version
|
|
109
116
|
version: '0'
|
|
110
117
|
requirements: []
|
|
111
|
-
rubygems_version: 3.
|
|
112
|
-
signing_key:
|
|
118
|
+
rubygems_version: 3.6.9
|
|
113
119
|
specification_version: 4
|
|
114
120
|
summary: A gem that provides Rails integration for the Sentry error logger
|
|
115
121
|
test_files: []
|