posthog-rails 3.9.4 → 3.10.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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b7bd6677c2683463aaa5fc9b2ce58f2d1bcc427b26d25aa8952b1bf53d4d3c78
|
|
4
|
+
data.tar.gz: b08fe160914d5804f5d011afef50d71177298b81fc4e1a55b1a715e459eb039f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca3ed8ebfe90ac5b2dd77514136627d2ad2e03442457d8ffefac331e7bb5aad786c0935bca1587d4e9fda47df2f86393dc17c2f4137872d87bb425958c0933f7
|
|
7
|
+
data.tar.gz: 431cbde468dbb79ac563c1ae386168c10ad15e92a7ff3d474d0bf452eee40fa68dd6484f41044ccfe62d4d1b6078b6abf791181708d55e93b2cca643f3b6572d
|
|
@@ -130,6 +130,7 @@ end
|
|
|
130
130
|
# - ActionController::RoutingError
|
|
131
131
|
# - ActionController::UnknownFormat
|
|
132
132
|
# - ActionController::UnknownHttpMethod
|
|
133
|
+
# - ActionDispatch::Http::MimeNegotiation::InvalidType
|
|
133
134
|
# - ActionDispatch::Http::Parameters::ParseError
|
|
134
135
|
# - ActiveRecord::RecordNotFound
|
|
135
136
|
# - ActiveRecord::RecordNotUnique
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
# Portions of this file are derived from getsentry/sentry-ruby by Software, Inc. dba Sentry
|
|
4
|
+
# Licensed under the MIT License
|
|
5
|
+
|
|
3
6
|
module PostHog
|
|
4
7
|
module Rails
|
|
5
8
|
class Configuration
|
|
@@ -56,6 +59,7 @@ module PostHog
|
|
|
56
59
|
'ActionController::RoutingError',
|
|
57
60
|
'ActionController::UnknownFormat',
|
|
58
61
|
'ActionController::UnknownHttpMethod',
|
|
62
|
+
'ActionDispatch::Http::MimeNegotiation::InvalidType',
|
|
59
63
|
'ActionDispatch::Http::Parameters::ParseError',
|
|
60
64
|
'ActiveRecord::RecordNotFound',
|
|
61
65
|
'ActiveRecord::RecordNotUnique'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: posthog-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- PostHog
|
|
@@ -29,14 +29,14 @@ dependencies:
|
|
|
29
29
|
requirements:
|
|
30
30
|
- - "~>"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '3.
|
|
32
|
+
version: '3.10'
|
|
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: '3.
|
|
39
|
+
version: '3.10'
|
|
40
40
|
description: Automatic exception tracking and instrumentation for Ruby on Rails applications
|
|
41
41
|
using PostHog
|
|
42
42
|
email: engineering@posthog.com
|