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: ec0f2d75e41e549493253977a5e98eb4ae0ca57f80fceda6beec1bd683562a5a
4
- data.tar.gz: e8d1208f8174c553f05d7ae43dc4e1d9a1eb019dc5a0f1abd559016821b04084
3
+ metadata.gz: b7bd6677c2683463aaa5fc9b2ce58f2d1bcc427b26d25aa8952b1bf53d4d3c78
4
+ data.tar.gz: b08fe160914d5804f5d011afef50d71177298b81fc4e1a55b1a715e459eb039f
5
5
  SHA512:
6
- metadata.gz: 1d6cb2a1158500f273f7c524cbca0d1ee6901e18ef4f843a47c78ebb89b9f79e7911cb8112c441a83476be39bd9be7e7b1cc860cde4072780092d189b6fd64f9
7
- data.tar.gz: 84873843f9fc8d5f09dea8bbd261c82721bd37dbaba76a4a48572aca0191de81ff478fd7eae4519fdce9d404c6eb1e007e67a1120386e35f33efcd9ed4ca1c4a
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'
@@ -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
  # Shared utility module for filtering sensitive parameters
@@ -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
  # Middleware that intercepts exceptions that are rescued by Rails.
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.9.4
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.9'
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.9'
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