sentry-rails 5.23.0 → 5.27.0

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.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sentry
4
4
  module Rails
5
- VERSION = "5.23.0"
5
+ VERSION = "5.27.0"
6
6
  end
7
7
  end
data/lib/sentry/rails.rb CHANGED
@@ -5,6 +5,7 @@ require "sentry-ruby"
5
5
  require "sentry/integrable"
6
6
  require "sentry/rails/tracing"
7
7
  require "sentry/rails/configuration"
8
+ require "sentry/rails/structured_logging"
8
9
  require "sentry/rails/engine"
9
10
  require "sentry/rails/railtie"
10
11
 
data/sentry-rails.gemspec CHANGED
@@ -31,5 +31,5 @@ Gem::Specification.new do |spec|
31
31
  spec.require_paths = ["lib"]
32
32
 
33
33
  spec.add_dependency "railties", ">= 5.0"
34
- spec.add_dependency "sentry-ruby", "~> 5.23.0"
34
+ spec.add_dependency "sentry-ruby", "~> 5.27.0"
35
35
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sentry-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.23.0
4
+ version: 5.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sentry Team
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-03-11 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: railties
@@ -29,21 +29,21 @@ dependencies:
29
29
  requirements:
30
30
  - - "~>"
31
31
  - !ruby/object:Gem::Version
32
- version: 5.23.0
32
+ version: 5.27.0
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: 5.23.0
39
+ version: 5.27.0
40
40
  description: A gem that provides Rails integration for the Sentry error logger
41
41
  email: accounts@sentry.io
42
42
  executables: []
43
43
  extensions: []
44
44
  extra_rdoc_files:
45
- - README.md
46
45
  - LICENSE.txt
46
+ - README.md
47
47
  files:
48
48
  - ".gitignore"
49
49
  - ".rspec"
@@ -56,6 +56,7 @@ files:
56
56
  - app/jobs/sentry/send_event_job.rb
57
57
  - bin/console
58
58
  - bin/setup
59
+ - bin/test
59
60
  - lib/generators/sentry_generator.rb
60
61
  - lib/sentry-rails.rb
61
62
  - lib/sentry/rails.rb
@@ -72,9 +73,16 @@ files:
72
73
  - lib/sentry/rails/engine.rb
73
74
  - lib/sentry/rails/error_subscriber.rb
74
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
75
82
  - lib/sentry/rails/overrides/streaming_reporter.rb
76
83
  - lib/sentry/rails/railtie.rb
77
84
  - lib/sentry/rails/rescued_exception_interceptor.rb
85
+ - lib/sentry/rails/structured_logging.rb
78
86
  - lib/sentry/rails/tracing.rb
79
87
  - lib/sentry/rails/tracing/abstract_subscriber.rb
80
88
  - lib/sentry/rails/tracing/action_controller_subscriber.rb
@@ -84,15 +92,15 @@ files:
84
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.23.0/sentry-rails
95
+ homepage: https://github.com/getsentry/sentry-ruby/tree/5.27.0/sentry-rails
88
96
  licenses:
89
97
  - MIT
90
98
  metadata:
91
- homepage_uri: https://github.com/getsentry/sentry-ruby/tree/5.23.0/sentry-rails
92
- source_code_uri: https://github.com/getsentry/sentry-ruby/tree/5.23.0/sentry-rails
93
- changelog_uri: https://github.com/getsentry/sentry-ruby/blob/5.23.0/CHANGELOG.md
99
+ homepage_uri: https://github.com/getsentry/sentry-ruby/tree/5.27.0/sentry-rails
100
+ source_code_uri: https://github.com/getsentry/sentry-ruby/tree/5.27.0/sentry-rails
101
+ changelog_uri: https://github.com/getsentry/sentry-ruby/blob/5.27.0/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.23.0
103
+ documentation_uri: http://www.rubydoc.info/gems/sentry-rails/5.27.0
96
104
  rdoc_options: []
97
105
  require_paths:
98
106
  - lib
@@ -107,7 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
107
115
  - !ruby/object:Gem::Version
108
116
  version: '0'
109
117
  requirements: []
110
- rubygems_version: 3.6.2
118
+ rubygems_version: 3.6.9
111
119
  specification_version: 4
112
120
  summary: A gem that provides Rails integration for the Sentry error logger
113
121
  test_files: []