sentry-rails 4.3.3.pre.beta.0 → 4.3.3
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/CHANGELOG.md +5 -0
- data/lib/sentry/rails/configuration.rb +1 -0
- data/lib/sentry/rails/railtie.rb +0 -5
- data/lib/sentry/rails/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f1790a49cf858500aa57dd9290d37e794bb969b7b961e11047e8df61a090ec95
|
|
4
|
+
data.tar.gz: a9626020e87f157e1eed1c2f49296f796406958e789c379915fbecf5da49ff9a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d2d760f4fa7ac34e39294169f8be9c19d9ff7e19fb1c7a89d3205ff843b626bf90f89ee516b248539d180ac347c907ca23c55953033eb1d8588fd15e57f833c
|
|
7
|
+
data.tar.gz: 3fd609010fba1eef3a56ce52a5f09e7d58ad5f43f1c3b039d4deed3bdb89f276da434a2e76d2b6f06d79ae85c4ebb7daa24179503b607d3b6be23808005565ce
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.3.3
|
|
4
|
+
|
|
5
|
+
- Correctly set the SDK's logger in sentry-rails [#1363](https://github.com/getsentry/sentry-ruby/pull/1363)
|
|
6
|
+
- Fixes [#1361](https://github.com/getsentry/sentry-ruby/issues/1361)
|
|
7
|
+
|
|
3
8
|
## 4.3.3-beta.0
|
|
4
9
|
|
|
5
10
|
- Minimize sentry-rails' dependency requirement [#1352](https://github.com/getsentry/sentry-ruby/pull/1352)
|
data/lib/sentry/rails/railtie.rb
CHANGED
|
@@ -16,7 +16,6 @@ module Sentry
|
|
|
16
16
|
next unless Sentry.initialized?
|
|
17
17
|
|
|
18
18
|
configure_project_root
|
|
19
|
-
configure_sentry_logger
|
|
20
19
|
configure_trusted_proxies
|
|
21
20
|
extend_controller_methods if defined?(ActionController)
|
|
22
21
|
extend_active_job if defined?(ActiveJob)
|
|
@@ -32,10 +31,6 @@ module Sentry
|
|
|
32
31
|
Sentry.configuration.project_root = ::Rails.root.to_s
|
|
33
32
|
end
|
|
34
33
|
|
|
35
|
-
def configure_sentry_logger
|
|
36
|
-
Sentry.configuration.logger = ::Rails.logger
|
|
37
|
-
end
|
|
38
|
-
|
|
39
34
|
def configure_trusted_proxies
|
|
40
35
|
Sentry.configuration.trusted_proxies += Array(::Rails.application.config.action_dispatch.trusted_proxies)
|
|
41
36
|
end
|
data/lib/sentry/rails/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sentry-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.3.3
|
|
4
|
+
version: 4.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sentry Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-03-
|
|
11
|
+
date: 2021-03-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
@@ -99,9 +99,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
99
99
|
version: '2.4'
|
|
100
100
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
101
101
|
requirements:
|
|
102
|
-
- - "
|
|
102
|
+
- - ">="
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
|
-
version:
|
|
104
|
+
version: '0'
|
|
105
105
|
requirements: []
|
|
106
106
|
rubygems_version: 3.0.3
|
|
107
107
|
signing_key:
|