sentry-raven 3.0.0 → 3.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (192) hide show
  1. checksums.yaml +4 -4
  2. data/.craft.yml +15 -0
  3. data/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
  4. data/.github/pull_request_template.md +16 -0
  5. data/.github/workflows/test.yml +92 -0
  6. data/.github/workflows/zeus_upload.yml +32 -0
  7. data/.gitignore +3 -0
  8. data/.rubocop.yml +50 -12
  9. data/.scripts/bump-version.sh +9 -0
  10. data/{changelog.md → CHANGELOG.md} +163 -1
  11. data/CONTRIBUTING.md +71 -0
  12. data/Gemfile +20 -25
  13. data/README.md +32 -16
  14. data/lib/raven/backtrace.rb +9 -5
  15. data/lib/raven/base.rb +6 -2
  16. data/lib/raven/breadcrumbs.rb +1 -1
  17. data/lib/raven/breadcrumbs/{activesupport.rb → active_support_logger.rb} +9 -3
  18. data/lib/raven/breadcrumbs/logger.rb +2 -92
  19. data/lib/raven/breadcrumbs/sentry_logger.rb +73 -0
  20. data/lib/raven/cli.rb +10 -21
  21. data/lib/raven/client.rb +9 -4
  22. data/lib/raven/configuration.rb +96 -10
  23. data/lib/raven/context.rb +13 -8
  24. data/lib/raven/core_ext/object/deep_dup.rb +57 -0
  25. data/lib/raven/core_ext/object/duplicable.rb +153 -0
  26. data/lib/raven/event.rb +27 -15
  27. data/lib/raven/helpers/deprecation_helper.rb +17 -0
  28. data/lib/raven/instance.rb +14 -4
  29. data/lib/raven/integrations/delayed_job.rb +15 -15
  30. data/lib/raven/integrations/rack-timeout.rb +7 -4
  31. data/lib/raven/integrations/rack.rb +18 -4
  32. data/lib/raven/integrations/rails.rb +13 -3
  33. data/lib/raven/integrations/rails/active_job.rb +6 -4
  34. data/lib/raven/integrations/rails/backtrace_cleaner.rb +29 -0
  35. data/lib/raven/integrations/rails/overrides/debug_exceptions_catcher.rb +2 -2
  36. data/lib/raven/integrations/sidekiq.rb +4 -78
  37. data/lib/raven/integrations/sidekiq/cleanup_middleware.rb +13 -0
  38. data/lib/raven/integrations/sidekiq/error_handler.rb +38 -0
  39. data/lib/raven/interface.rb +2 -2
  40. data/lib/raven/interfaces/stack_trace.rb +1 -1
  41. data/lib/raven/linecache.rb +5 -2
  42. data/lib/raven/logger.rb +3 -2
  43. data/lib/raven/processor/cookies.rb +16 -6
  44. data/lib/raven/processor/post_data.rb +2 -0
  45. data/lib/raven/processor/removecircularreferences.rb +3 -1
  46. data/lib/raven/processor/sanitizedata.rb +65 -17
  47. data/lib/raven/processor/utf8conversion.rb +2 -0
  48. data/lib/raven/transports.rb +4 -0
  49. data/lib/raven/transports/http.rb +5 -7
  50. data/lib/raven/utils/context_filter.rb +42 -0
  51. data/lib/raven/utils/exception_cause_chain.rb +1 -0
  52. data/lib/raven/utils/real_ip.rb +1 -1
  53. data/lib/raven/version.rb +2 -2
  54. data/lib/sentry-raven-without-integrations.rb +6 -1
  55. data/lib/sentry_raven_without_integrations.rb +1 -0
  56. data/sentry-ruby/.gitignore +11 -0
  57. data/sentry-ruby/.rspec +3 -0
  58. data/sentry-ruby/.travis.yml +6 -0
  59. data/sentry-ruby/CODE_OF_CONDUCT.md +74 -0
  60. data/sentry-ruby/Gemfile +9 -0
  61. data/sentry-ruby/LICENSE.txt +21 -0
  62. data/sentry-ruby/README.md +44 -0
  63. data/sentry-ruby/Rakefile +6 -0
  64. data/sentry-ruby/bin/console +14 -0
  65. data/sentry-ruby/bin/setup +8 -0
  66. data/sentry-ruby/examples/rails-6.0/.browserslistrc +1 -0
  67. data/sentry-ruby/examples/rails-6.0/.gitignore +35 -0
  68. data/sentry-ruby/examples/rails-6.0/Gemfile +58 -0
  69. data/sentry-ruby/examples/rails-6.0/README.md +23 -0
  70. data/sentry-ruby/examples/rails-6.0/Rakefile +6 -0
  71. data/sentry-ruby/examples/rails-6.0/app/assets/config/manifest.js +2 -0
  72. data/sentry-ruby/examples/rails-6.0/app/assets/images/.keep +0 -0
  73. data/sentry-ruby/examples/rails-6.0/app/assets/stylesheets/application.css +15 -0
  74. data/sentry-ruby/examples/rails-6.0/app/channels/application_cable/channel.rb +4 -0
  75. data/sentry-ruby/examples/rails-6.0/app/channels/application_cable/connection.rb +4 -0
  76. data/sentry-ruby/examples/rails-6.0/app/controllers/application_controller.rb +2 -0
  77. data/sentry-ruby/examples/rails-6.0/app/controllers/concerns/.keep +0 -0
  78. data/sentry-ruby/examples/rails-6.0/app/controllers/welcome_controller.rb +23 -0
  79. data/sentry-ruby/examples/rails-6.0/app/helpers/application_helper.rb +2 -0
  80. data/sentry-ruby/examples/rails-6.0/app/javascript/channels/consumer.js +6 -0
  81. data/sentry-ruby/examples/rails-6.0/app/javascript/channels/index.js +5 -0
  82. data/sentry-ruby/examples/rails-6.0/app/javascript/packs/application.js +17 -0
  83. data/sentry-ruby/examples/rails-6.0/app/jobs/application_job.rb +7 -0
  84. data/sentry-ruby/examples/rails-6.0/app/mailers/application_mailer.rb +4 -0
  85. data/sentry-ruby/examples/rails-6.0/app/models/application_record.rb +3 -0
  86. data/sentry-ruby/examples/rails-6.0/app/models/concerns/.keep +0 -0
  87. data/sentry-ruby/examples/rails-6.0/app/views/layouts/application.html.erb +15 -0
  88. data/sentry-ruby/examples/rails-6.0/app/views/layouts/mailer.html.erb +13 -0
  89. data/sentry-ruby/examples/rails-6.0/app/views/layouts/mailer.text.erb +1 -0
  90. data/sentry-ruby/examples/rails-6.0/app/views/welcome/report_demo.html.erb +22 -0
  91. data/sentry-ruby/examples/rails-6.0/app/views/welcome/view_error.html.erb +1 -0
  92. data/sentry-ruby/examples/rails-6.0/app/workers/error_worker.rb +7 -0
  93. data/sentry-ruby/examples/rails-6.0/babel.config.js +72 -0
  94. data/sentry-ruby/examples/rails-6.0/bin/bundle +114 -0
  95. data/sentry-ruby/examples/rails-6.0/bin/rails +9 -0
  96. data/sentry-ruby/examples/rails-6.0/bin/rake +9 -0
  97. data/sentry-ruby/examples/rails-6.0/bin/setup +36 -0
  98. data/sentry-ruby/examples/rails-6.0/bin/spring +17 -0
  99. data/sentry-ruby/examples/rails-6.0/bin/webpack +18 -0
  100. data/sentry-ruby/examples/rails-6.0/bin/webpack-dev-server +18 -0
  101. data/sentry-ruby/examples/rails-6.0/bin/yarn +11 -0
  102. data/sentry-ruby/examples/rails-6.0/config.ru +5 -0
  103. data/sentry-ruby/examples/rails-6.0/config/application.rb +28 -0
  104. data/sentry-ruby/examples/rails-6.0/config/boot.rb +4 -0
  105. data/sentry-ruby/examples/rails-6.0/config/cable.yml +10 -0
  106. data/sentry-ruby/examples/rails-6.0/config/credentials.yml.enc +1 -0
  107. data/sentry-ruby/examples/rails-6.0/config/database.yml +25 -0
  108. data/sentry-ruby/examples/rails-6.0/config/environment.rb +5 -0
  109. data/sentry-ruby/examples/rails-6.0/config/environments/development.rb +62 -0
  110. data/sentry-ruby/examples/rails-6.0/config/environments/production.rb +112 -0
  111. data/sentry-ruby/examples/rails-6.0/config/environments/test.rb +48 -0
  112. data/sentry-ruby/examples/rails-6.0/config/initializers/application_controller_renderer.rb +8 -0
  113. data/sentry-ruby/examples/rails-6.0/config/initializers/assets.rb +14 -0
  114. data/sentry-ruby/examples/rails-6.0/config/initializers/backtrace_silencers.rb +7 -0
  115. data/sentry-ruby/examples/rails-6.0/config/initializers/content_security_policy.rb +30 -0
  116. data/sentry-ruby/examples/rails-6.0/config/initializers/cookies_serializer.rb +5 -0
  117. data/sentry-ruby/examples/rails-6.0/config/initializers/filter_parameter_logging.rb +4 -0
  118. data/sentry-ruby/examples/rails-6.0/config/initializers/inflections.rb +16 -0
  119. data/sentry-ruby/examples/rails-6.0/config/initializers/mime_types.rb +4 -0
  120. data/sentry-ruby/examples/rails-6.0/config/initializers/wrap_parameters.rb +14 -0
  121. data/sentry-ruby/examples/rails-6.0/config/locales/en.yml +33 -0
  122. data/sentry-ruby/examples/rails-6.0/config/puma.rb +38 -0
  123. data/sentry-ruby/examples/rails-6.0/config/routes.rb +10 -0
  124. data/sentry-ruby/examples/rails-6.0/config/spring.rb +6 -0
  125. data/sentry-ruby/examples/rails-6.0/config/storage.yml +34 -0
  126. data/sentry-ruby/examples/rails-6.0/config/webpack/development.js +5 -0
  127. data/sentry-ruby/examples/rails-6.0/config/webpack/environment.js +3 -0
  128. data/sentry-ruby/examples/rails-6.0/config/webpack/production.js +5 -0
  129. data/sentry-ruby/examples/rails-6.0/config/webpack/test.js +5 -0
  130. data/sentry-ruby/examples/rails-6.0/config/webpacker.yml +96 -0
  131. data/sentry-ruby/examples/rails-6.0/db/seeds.rb +7 -0
  132. data/sentry-ruby/examples/rails-6.0/lib/assets/.keep +0 -0
  133. data/sentry-ruby/examples/rails-6.0/lib/tasks/.keep +0 -0
  134. data/sentry-ruby/examples/rails-6.0/package.json +15 -0
  135. data/sentry-ruby/examples/rails-6.0/postcss.config.js +12 -0
  136. data/sentry-ruby/examples/rails-6.0/public/404.html +67 -0
  137. data/sentry-ruby/examples/rails-6.0/public/422.html +67 -0
  138. data/sentry-ruby/examples/rails-6.0/public/500.html +66 -0
  139. data/sentry-ruby/examples/rails-6.0/public/apple-touch-icon-precomposed.png +0 -0
  140. data/sentry-ruby/examples/rails-6.0/public/apple-touch-icon.png +0 -0
  141. data/sentry-ruby/examples/rails-6.0/public/favicon.ico +0 -0
  142. data/sentry-ruby/examples/rails-6.0/public/robots.txt +1 -0
  143. data/sentry-ruby/examples/rails-6.0/storage/.keep +0 -0
  144. data/sentry-ruby/examples/rails-6.0/test/application_system_test_case.rb +5 -0
  145. data/sentry-ruby/examples/rails-6.0/test/channels/application_cable/connection_test.rb +11 -0
  146. data/sentry-ruby/examples/rails-6.0/test/controllers/.keep +0 -0
  147. data/sentry-ruby/examples/rails-6.0/test/fixtures/.keep +0 -0
  148. data/sentry-ruby/examples/rails-6.0/test/fixtures/files/.keep +0 -0
  149. data/sentry-ruby/examples/rails-6.0/test/helpers/.keep +0 -0
  150. data/sentry-ruby/examples/rails-6.0/test/integration/.keep +0 -0
  151. data/sentry-ruby/examples/rails-6.0/test/mailers/.keep +0 -0
  152. data/sentry-ruby/examples/rails-6.0/test/models/.keep +0 -0
  153. data/sentry-ruby/examples/rails-6.0/test/system/.keep +0 -0
  154. data/sentry-ruby/examples/rails-6.0/test/test_helper.rb +13 -0
  155. data/sentry-ruby/examples/rails-6.0/vendor/.keep +0 -0
  156. data/sentry-ruby/examples/rails-6.0/yarn.lock +7508 -0
  157. data/sentry-ruby/lib/sentry.rb +16 -0
  158. data/sentry-ruby/lib/sentry/backtrace.rb +128 -0
  159. data/sentry-ruby/lib/sentry/client.rb +162 -0
  160. data/sentry-ruby/lib/sentry/client/state.rb +40 -0
  161. data/sentry-ruby/lib/sentry/configuration.rb +533 -0
  162. data/sentry-ruby/lib/sentry/event.rb +209 -0
  163. data/sentry-ruby/lib/sentry/interface.rb +31 -0
  164. data/sentry-ruby/lib/sentry/interfaces/exception.rb +15 -0
  165. data/sentry-ruby/lib/sentry/interfaces/http.rb +16 -0
  166. data/sentry-ruby/lib/sentry/interfaces/message.rb +18 -0
  167. data/sentry-ruby/lib/sentry/interfaces/single_exception.rb +14 -0
  168. data/sentry-ruby/lib/sentry/interfaces/stack_trace.rb +69 -0
  169. data/sentry-ruby/lib/sentry/linecache.rb +44 -0
  170. data/sentry-ruby/lib/sentry/logger.rb +20 -0
  171. data/sentry-ruby/lib/sentry/transports.rb +19 -0
  172. data/sentry-ruby/lib/sentry/transports/dummy.rb +16 -0
  173. data/sentry-ruby/lib/sentry/transports/http.rb +66 -0
  174. data/sentry-ruby/lib/sentry/transports/stdout.rb +20 -0
  175. data/sentry-ruby/lib/sentry/utils/deep_merge.rb +22 -0
  176. data/sentry-ruby/lib/sentry/utils/exception_cause_chain.rb +20 -0
  177. data/sentry-ruby/lib/sentry/version.rb +3 -0
  178. data/sentry-ruby/sentry-ruby.gemspec +26 -0
  179. data/sentry-ruby/spec/sentry/backtrace_spec.rb +38 -0
  180. data/sentry-ruby/spec/sentry/client_spec.rb +443 -0
  181. data/sentry-ruby/spec/sentry/configuration_spec.rb +400 -0
  182. data/sentry-ruby/spec/sentry/event_spec.rb +238 -0
  183. data/sentry-ruby/spec/sentry/interface_spec.rb +38 -0
  184. data/sentry-ruby/spec/sentry/interfaces/stack_trace_spec.rb +11 -0
  185. data/sentry-ruby/spec/sentry/linecache_spec.rb +40 -0
  186. data/sentry-ruby/spec/sentry/transports/http_spec.rb +57 -0
  187. data/sentry-ruby/spec/sentry/transports/stdout_spec.rb +11 -0
  188. data/sentry-ruby/spec/sentry_spec.rb +9 -0
  189. data/sentry-ruby/spec/spec_helper.rb +49 -0
  190. data/sentry-ruby/spec/support/linecache.txt +6 -0
  191. metadata +155 -5
  192. data/.travis.yml +0 -43
@@ -1,10 +1,11 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'json'
3
4
 
4
5
  module Raven
5
6
  class Processor::SanitizeData < Processor
6
7
  DEFAULT_FIELDS = %w(authorization password passwd secret ssn social(.*)?sec).freeze
7
- CREDIT_CARD_RE = /\b(?:3[47]\d|(?:4\d|5[1-5]|65)\d{2}|6011)\d{12}\b/
8
+ CREDIT_CARD_RE = /\b(?:3[47]\d|(?:4\d|5[1-5]|65)\d{2}|6011)\d{12}\b/.freeze
8
9
  QUERY_STRING = ['query_string', :query_string].freeze
9
10
  JSON_STARTS_WITH = ["[", "{"].freeze
10
11
 
@@ -20,22 +21,13 @@ module Raven
20
21
  def process(value, key = nil)
21
22
  case value
22
23
  when Hash
23
- !value.frozen? ? value.merge!(value) { |k, v| process v, k } : value.merge(value) { |k, v| process v, k }
24
+ sanitize_hash_value(key, value)
24
25
  when Array
25
- !value.frozen? ? value.map! { |v| process v, key } : value.map { |v| process v, key }
26
+ sanitize_array_value(key, value)
26
27
  when Integer
27
28
  matches_regexes?(key, value.to_s) ? INT_MASK : value
28
29
  when String
29
- if value =~ fields_re && (json = parse_json_or_nil(value))
30
- # if this string is actually a json obj, convert and sanitize
31
- process(json).to_json
32
- elsif matches_regexes?(key, value)
33
- STRING_MASK
34
- elsif QUERY_STRING.include?(key)
35
- sanitize_query_string(value)
36
- else
37
- value
38
- end
30
+ sanitize_string_value(key, value)
39
31
  else
40
32
  value
41
33
  end
@@ -49,6 +41,39 @@ module Raven
49
41
  @utf8_processor ||= Processor::UTF8Conversion.new
50
42
  end
51
43
 
44
+ def sanitize_hash_value(key, value)
45
+ if key =~ sensitive_fields
46
+ STRING_MASK
47
+ elsif value.frozen?
48
+ value.merge(value) { |k, v| process v, k }
49
+ else
50
+ value.merge!(value) { |k, v| process v, k }
51
+ end
52
+ end
53
+
54
+ def sanitize_array_value(key, value)
55
+ if value.frozen?
56
+ value.map { |v| process v, key }
57
+ else
58
+ value.map! { |v| process v, key }
59
+ end
60
+ end
61
+
62
+ def sanitize_string_value(key, value)
63
+ if value =~ sensitive_fields && (json = parse_json_or_nil(value))
64
+ # if this string is actually a json obj, convert and sanitize
65
+ process(json).to_json
66
+ elsif matches_regexes?(key, value)
67
+ STRING_MASK
68
+ elsif QUERY_STRING.include?(key)
69
+ sanitize_query_string(value)
70
+ elsif value =~ sensitive_fields
71
+ sanitize_sensitive_string_content(value)
72
+ else
73
+ value
74
+ end
75
+ end
76
+
52
77
  def sanitize_query_string(query_string)
53
78
  query_hash = CGI.parse(query_string)
54
79
  sanitized = utf8_processor.process(query_hash)
@@ -56,16 +81,38 @@ module Raven
56
81
  URI.encode_www_form(processed_query_hash)
57
82
  end
58
83
 
84
+ # this scrubs some sensitive info from the string content. for example:
85
+ #
86
+ # ```
87
+ # unexpected token at '{
88
+ # "role": "admin","password": "Abc@123","foo": "bar"
89
+ # }'
90
+ # ```
91
+ #
92
+ # will become
93
+ #
94
+ # ```
95
+ # unexpected token at '{
96
+ # "role": "admin","password": *******,"foo": "bar"
97
+ # }'
98
+ # ```
99
+ #
100
+ # it's particularly useful in hash or param-parsing related errors
101
+ def sanitize_sensitive_string_content(value)
102
+ value.gsub(/(#{sensitive_fields}['":]\s?(:|=>)?\s?)(".*?"|'.*?')/, '\1' + STRING_MASK)
103
+ end
104
+
59
105
  def matches_regexes?(k, v)
60
106
  (sanitize_credit_cards && v =~ CREDIT_CARD_RE) ||
61
- k =~ fields_re
107
+ k =~ sensitive_fields
62
108
  end
63
109
 
64
- def fields_re
65
- return @fields_re if instance_variable_defined?(:@fields_re)
110
+ def sensitive_fields
111
+ return @sensitive_fields if instance_variable_defined?(:@sensitive_fields)
112
+
66
113
  fields = DEFAULT_FIELDS | sanitize_fields
67
114
  fields -= sanitize_fields_excluded
68
- @fields_re = /#{fields.map do |f|
115
+ @sensitive_fields = /#{fields.map do |f|
69
116
  use_boundary?(f) ? "\\b#{f}\\b" : f
70
117
  end.join("|")}/i
71
118
  end
@@ -80,6 +127,7 @@ module Raven
80
127
 
81
128
  def parse_json_or_nil(string)
82
129
  return unless string.start_with?(*JSON_STARTS_WITH)
130
+
83
131
  JSON.parse(string)
84
132
  rescue JSON::ParserError, NoMethodError
85
133
  nil
@@ -14,6 +14,7 @@ module Raven
14
14
  !value.frozen? ? value.map! { |v| process v } : value.map { |v| process v }
15
15
  when Exception
16
16
  return value if value.message.valid_encoding?
17
+
17
18
  clean_exc = value.class.new(remove_invalid_bytes(value.message))
18
19
  clean_exc.set_backtrace(value.backtrace)
19
20
  clean_exc
@@ -27,6 +28,7 @@ module Raven
27
28
  value.force_encoding(Encoding::UTF_8)
28
29
  end
29
30
  return value if value.valid_encoding?
31
+
30
32
  remove_invalid_bytes(value)
31
33
  else
32
34
  value
@@ -13,3 +13,7 @@ module Raven
13
13
  end
14
14
  end
15
15
  end
16
+
17
+ require "raven/transports/dummy"
18
+ require "raven/transports/http"
19
+ require "raven/transports/stdout"
@@ -1,7 +1,5 @@
1
1
  require 'faraday'
2
2
 
3
- require 'raven/transports'
4
-
5
3
  module Raven
6
4
  module Transports
7
5
  class HTTP < Transport
@@ -26,10 +24,10 @@ module Raven
26
24
  req.headers['X-Sentry-Auth'] = auth_header
27
25
  req.body = data
28
26
  end
29
- rescue Faraday::Error => ex
30
- error_info = ex.message
31
- if ex.response && ex.response[:headers]['x-sentry-error']
32
- error_info += " Error in headers is: #{ex.response[:headers]['x-sentry-error']}"
27
+ rescue Faraday::Error => e
28
+ error_info = e.message
29
+ if e.response && e.response[:headers]['x-sentry-error']
30
+ error_info += " Error in headers is: #{e.response[:headers]['x-sentry-error']}"
33
31
  end
34
32
  raise Raven::Error, error_info
35
33
  end
@@ -42,7 +40,7 @@ module Raven
42
40
  proxy = configuration.public_send(:proxy)
43
41
 
44
42
  Faraday.new(configuration.server, :ssl => ssl_configuration, :proxy => proxy) do |builder|
45
- configuration.faraday_builder.call(builder) if configuration.faraday_builder
43
+ configuration.faraday_builder&.call(builder)
46
44
  builder.response :raise_error
47
45
  builder.options.merge! faraday_opts
48
46
  builder.headers[:user_agent] = "sentry-ruby/#{Raven::VERSION}"
@@ -0,0 +1,42 @@
1
+ module Raven
2
+ module Utils
3
+ module ContextFilter
4
+ class << self
5
+ ACTIVEJOB_RESERVED_PREFIX_REGEX = /^_aj_/.freeze
6
+ HAS_GLOBALID = const_defined?('GlobalID')
7
+
8
+ # Once an ActiveJob is queued, ActiveRecord references get serialized into
9
+ # some internal reserved keys, such as _aj_globalid.
10
+ #
11
+ # The problem is, if this job in turn gets queued back into ActiveJob with
12
+ # these magic reserved keys, ActiveJob will throw up and error. We want to
13
+ # capture these and mutate the keys so we can sanely report it.
14
+ def filter_context(context)
15
+ case context
16
+ when Array
17
+ context.map { |arg| filter_context(arg) }
18
+ when Hash
19
+ Hash[context.map { |key, value| filter_context_hash(key, value) }]
20
+ else
21
+ format_globalid(context)
22
+ end
23
+ end
24
+
25
+ private
26
+
27
+ def filter_context_hash(key, value)
28
+ key = key.to_s.sub(ACTIVEJOB_RESERVED_PREFIX_REGEX, "") if key.match(ACTIVEJOB_RESERVED_PREFIX_REGEX)
29
+ [key, filter_context(value)]
30
+ end
31
+
32
+ def format_globalid(context)
33
+ if HAS_GLOBALID && context.is_a?(GlobalID)
34
+ context.to_s
35
+ else
36
+ context
37
+ end
38
+ end
39
+ end
40
+ end
41
+ end
42
+ end
@@ -7,6 +7,7 @@ module Raven
7
7
  while exception.cause
8
8
  exception = exception.cause
9
9
  break if exceptions.any? { |e| e.object_id == exception.object_id }
10
+
10
11
  exceptions << exception
11
12
  end
12
13
  exceptions
@@ -13,7 +13,7 @@ module Raven
13
13
  "fc00::/7", # private IPv6 range fc00::/7
14
14
  "10.0.0.0/8", # private IPv4 range 10.x.x.x
15
15
  "172.16.0.0/12", # private IPv4 range 172.16.0.0 .. 172.31.255.255
16
- "192.168.0.0/16", # private IPv4 range 192.168.x.x
16
+ "192.168.0.0/16" # private IPv4 range 192.168.x.x
17
17
  ].map { |proxy| IPAddr.new(proxy) }
18
18
 
19
19
  attr_accessor :ip, :ip_addresses
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module Raven
3
- # Freezing this constant breaks in 1.9.x
4
- VERSION = "3.0.0" # rubocop:disable Style/MutableConstant
4
+ VERSION = "3.1.1"
5
5
  end
@@ -1 +1,6 @@
1
- require 'raven/base'
1
+ require "raven/helpers/deprecation_helper"
2
+
3
+ filename = "sentry_raven_without_integrations"
4
+ DeprecationHelper.deprecate_dasherized_filename(filename)
5
+
6
+ require filename
@@ -0,0 +1 @@
1
+ require 'raven/base'
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.6.5
6
+ before_install: gem install bundler -v 2.1.1
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at stan001212@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
@@ -0,0 +1,9 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in sentry-ruby.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
7
+ gem "rspec", "~> 3.0"
8
+
9
+ gem "pry"
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 st0012
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,44 @@
1
+ # Sentry::Ruby
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/sentry/ruby`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'sentry-ruby'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install sentry-ruby
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/sentry-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/sentry-ruby/blob/master/CODE_OF_CONDUCT.md).
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
41
+
42
+ ## Code of Conduct
43
+
44
+ Everyone interacting in the Sentry::Ruby project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/sentry-ruby/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec