airbrake 3.1.6 → 11.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. checksums.yaml +7 -0
  2. data/lib/airbrake.rb +23 -150
  3. data/lib/airbrake/capistrano.rb +6 -42
  4. data/lib/airbrake/capistrano/capistrano2.rb +40 -0
  5. data/lib/airbrake/capistrano/capistrano3.rb +23 -0
  6. data/lib/airbrake/delayed_job.rb +66 -0
  7. data/lib/airbrake/logger.rb +103 -0
  8. data/lib/airbrake/rack.rb +30 -45
  9. data/lib/airbrake/rack/context_filter.rb +65 -0
  10. data/lib/airbrake/rack/http_headers_filter.rb +44 -0
  11. data/lib/airbrake/rack/http_params_filter.rb +27 -0
  12. data/lib/airbrake/rack/instrumentable.rb +136 -0
  13. data/lib/airbrake/rack/middleware.rb +102 -0
  14. data/lib/airbrake/rack/request_body_filter.rb +33 -0
  15. data/lib/airbrake/rack/request_store.rb +34 -0
  16. data/lib/airbrake/rack/route_filter.rb +51 -0
  17. data/lib/airbrake/rack/session_filter.rb +25 -0
  18. data/lib/airbrake/rack/user.rb +74 -0
  19. data/lib/airbrake/rack/user_filter.rb +25 -0
  20. data/lib/airbrake/rails.rb +25 -31
  21. data/lib/airbrake/rails/action_cable.rb +35 -0
  22. data/lib/airbrake/rails/action_cable/notify_callback.rb +22 -0
  23. data/lib/airbrake/rails/action_controller.rb +40 -0
  24. data/lib/airbrake/rails/action_controller_notify_subscriber.rb +32 -0
  25. data/lib/airbrake/rails/action_controller_performance_breakdown_subscriber.rb +51 -0
  26. data/lib/airbrake/rails/action_controller_route_subscriber.rb +33 -0
  27. data/lib/airbrake/rails/active_job.rb +50 -0
  28. data/lib/airbrake/rails/active_record.rb +36 -0
  29. data/lib/airbrake/rails/active_record_subscriber.rb +46 -0
  30. data/lib/airbrake/rails/app.rb +78 -0
  31. data/lib/airbrake/rails/backtrace_cleaner.rb +23 -0
  32. data/lib/airbrake/rails/curb.rb +32 -0
  33. data/lib/airbrake/rails/event.rb +81 -0
  34. data/lib/airbrake/rails/excon_subscriber.rb +25 -0
  35. data/lib/airbrake/rails/http.rb +14 -0
  36. data/lib/airbrake/rails/http_client.rb +16 -0
  37. data/lib/airbrake/rails/net_http.rb +18 -0
  38. data/lib/airbrake/rails/railtie.rb +151 -0
  39. data/lib/airbrake/rails/typhoeus.rb +16 -0
  40. data/lib/airbrake/rake.rb +65 -0
  41. data/lib/airbrake/rake/tasks.rb +112 -0
  42. data/lib/airbrake/resque.rb +61 -0
  43. data/lib/airbrake/shoryuken.rb +54 -0
  44. data/lib/airbrake/sidekiq.rb +55 -0
  45. data/lib/airbrake/sidekiq/retryable_jobs_filter.rb +53 -0
  46. data/lib/airbrake/sneakers.rb +72 -0
  47. data/lib/airbrake/version.rb +5 -1
  48. data/lib/generators/airbrake_generator.rb +25 -0
  49. data/lib/generators/airbrake_initializer.rb.erb +80 -0
  50. metadata +206 -259
  51. data/CHANGELOG +0 -944
  52. data/Gemfile +0 -3
  53. data/Guardfile +0 -6
  54. data/INSTALL +0 -20
  55. data/MIT-LICENSE +0 -22
  56. data/README.md +0 -556
  57. data/README_FOR_HEROKU_ADDON.md +0 -94
  58. data/Rakefile +0 -223
  59. data/SUPPORTED_RAILS_VERSIONS +0 -38
  60. data/TESTING.md +0 -41
  61. data/airbrake.gemspec +0 -40
  62. data/bin/airbrake +0 -12
  63. data/features/metal.feature +0 -18
  64. data/features/rack.feature +0 -60
  65. data/features/rails.feature +0 -272
  66. data/features/rails_with_js_notifier.feature +0 -97
  67. data/features/rake.feature +0 -27
  68. data/features/sinatra.feature +0 -29
  69. data/features/step_definitions/file_steps.rb +0 -10
  70. data/features/step_definitions/metal_steps.rb +0 -23
  71. data/features/step_definitions/rack_steps.rb +0 -23
  72. data/features/step_definitions/rails_application_steps.rb +0 -478
  73. data/features/step_definitions/rake_steps.rb +0 -17
  74. data/features/support/airbrake_shim.rb.template +0 -16
  75. data/features/support/env.rb +0 -18
  76. data/features/support/matchers.rb +0 -35
  77. data/features/support/rails.rb +0 -201
  78. data/features/support/rake/Rakefile +0 -68
  79. data/features/support/terminal.rb +0 -107
  80. data/features/user_informer.feature +0 -63
  81. data/generators/airbrake/airbrake_generator.rb +0 -94
  82. data/generators/airbrake/lib/insert_commands.rb +0 -34
  83. data/generators/airbrake/lib/rake_commands.rb +0 -24
  84. data/generators/airbrake/templates/airbrake_tasks.rake +0 -25
  85. data/generators/airbrake/templates/capistrano_hook.rb +0 -6
  86. data/generators/airbrake/templates/initializer.rb +0 -6
  87. data/install.rb +0 -1
  88. data/lib/airbrake/backtrace.rb +0 -108
  89. data/lib/airbrake/cli/client.rb +0 -68
  90. data/lib/airbrake/cli/options.rb +0 -41
  91. data/lib/airbrake/cli/printer.rb +0 -30
  92. data/lib/airbrake/cli/project.rb +0 -17
  93. data/lib/airbrake/cli/project_factory.rb +0 -36
  94. data/lib/airbrake/cli/runner.rb +0 -48
  95. data/lib/airbrake/cli/validator.rb +0 -8
  96. data/lib/airbrake/configuration.rb +0 -311
  97. data/lib/airbrake/extensions/blank.rb +0 -73
  98. data/lib/airbrake/notice.rb +0 -390
  99. data/lib/airbrake/rails/action_controller_catcher.rb +0 -30
  100. data/lib/airbrake/rails/controller_methods.rb +0 -87
  101. data/lib/airbrake/rails/error_lookup.rb +0 -33
  102. data/lib/airbrake/rails/javascript_notifier.rb +0 -47
  103. data/lib/airbrake/rails/middleware/exceptions_catcher.rb +0 -33
  104. data/lib/airbrake/rails3_tasks.rb +0 -98
  105. data/lib/airbrake/railtie.rb +0 -48
  106. data/lib/airbrake/rake_handler.rb +0 -71
  107. data/lib/airbrake/sender.rb +0 -128
  108. data/lib/airbrake/shared_tasks.rb +0 -47
  109. data/lib/airbrake/tasks.rb +0 -83
  110. data/lib/airbrake/user_informer.rb +0 -27
  111. data/lib/airbrake_tasks.rb +0 -64
  112. data/lib/rails/generators/airbrake/airbrake_generator.rb +0 -100
  113. data/lib/templates/javascript_notifier.erb +0 -15
  114. data/lib/templates/rescue.erb +0 -91
  115. data/rails/init.rb +0 -1
  116. data/resources/README.md +0 -34
  117. data/resources/ca-bundle.crt +0 -3376
  118. data/script/integration_test.rb +0 -38
  119. data/test/airbrake_2_3.xsd +0 -88
  120. data/test/airbrake_tasks_test.rb +0 -170
  121. data/test/backtrace_test.rb +0 -162
  122. data/test/capistrano_test.rb +0 -34
  123. data/test/catcher_test.rb +0 -333
  124. data/test/configuration_test.rb +0 -233
  125. data/test/helper.rb +0 -263
  126. data/test/javascript_notifier_test.rb +0 -51
  127. data/test/logger_test.rb +0 -79
  128. data/test/notice_test.rb +0 -490
  129. data/test/notifier_test.rb +0 -276
  130. data/test/rack_test.rb +0 -58
  131. data/test/rails_initializer_test.rb +0 -36
  132. data/test/recursion_test.rb +0 -10
  133. data/test/sender_test.rb +0 -288
  134. data/test/user_informer_test.rb +0 -29
data/CHANGELOG DELETED
@@ -1,944 +0,0 @@
1
- Version 3.1.6 - 2012-10-23 21:15:50 +0200
2
- ===============================================================================
3
-
4
- Hrvoje Šimić (9):
5
- load api key from file and env if not provided for executable
6
- get a list of your projects from command line
7
- create projects from command line
8
- fix cli client host
9
- creating deploys from command line
10
- don't override extension methods
11
- update heroku plan in readme
12
- another fix for heroku readme
13
- don't pollute global namespace with blank?
14
-
15
- Sam Umbach (1):
16
- Send deploy notification on deploy:cold
17
-
18
-
19
- Version 3.1.5 - 2012-10-05 17:32:23 +0200
20
- ===============================================================================
21
-
22
- Hrvoje Šimić (3):
23
- make collected user attributes customizable
24
- enable filtering of env vars for rake handler
25
- add a simple executable
26
-
27
- Morgan Mikel McDaris (1):
28
- rake section added
29
-
30
- Zachary Anker (2):
31
- Add the ability to pass XML directly to send_to_airbrake
32
- Remove active_support require since it's no longer necessary
33
-
34
-
35
- Version 3.1.4 - 2012-09-11 04:31:51 +0200
36
- ===============================================================================
37
-
38
- Ben Arent (1):
39
- Update to MIT license to reflect new ownership.
40
-
41
- Hrvoje Šimić (4):
42
- remove activesupport from runtime dependencies
43
- use different logger for async notices
44
- Merge pull request #118 from exviva/load_initializer_conditionally
45
- symbolize user's keys
46
-
47
- Olek Janiszewski (1):
48
- Fallback to loading whole environment if initializer does not exist
49
-
50
-
51
- Version 3.1.3 - 2012-09-05 18:58:27 +0200
52
- ===============================================================================
53
-
54
- Ben Arent (1):
55
- Removed old mailing list.
56
-
57
- Dylan Smith (1):
58
- Use debug log level for verbose log messages.
59
-
60
- Hrvoje Šimić (21):
61
- add a note for testing against different frameworks
62
- add a scenario to make sure 404s are ignored by default
63
- failing scenario for #100
64
- remove unnecessary bundler/setup requirement
65
- move dependencies from Gemfile to gemspec
66
- send info about the current logged in user
67
- add async notifications
68
- use async? instead of asnyc
69
- add info about logger
70
- prefer provided error message over original exception message
71
- don't load entire environment for deploy task
72
- safely handle render exception
73
- remove unnecessary AirbrakeError
74
- update XML schema
75
- test fixes
76
- clean whitespace
77
- print the failed notice details
78
- update supported rails versions
79
- update scenarios
80
- stop converting notice to xml before passing it to sender
81
- remove logger from rack handler
82
- update supported rails versions
83
-
84
- John Pignata (1):
85
- Cherry-pick Object#blank? extension
86
-
87
- Joshua Wood (2):
88
- rbenv support
89
- Fixes outdated rake feature.
90
-
91
- Matt Colyer (1):
92
- Fix Airbrake so it actually reports data.
93
-
94
- Morgan Mikel McDaris (1):
95
- changed notify to notify_or_ignore
96
-
97
- Sergii Boiko (2):
98
- Refactor config.async to provide custom asynchronous delivery way
99
- Simplify config.async to use only notice param
100
-
101
- grosser (2):
102
- fix exceeded available parameter key space breaks notification, fixes #99
103
- make all tests runnable via ruby test_file.rb by loading the helper absolutely
104
-
105
-
106
- Version 3.1.2 - 2012-06-23 02:27:01 +0200
107
- ===============================================================================
108
-
109
- Hrvoje Šimić (5):
110
- routing errors ignored by default, for #92
111
- use simplecov for test coverage
112
- fix features for javascript
113
- ignore user agents in rack, closes #61
114
- error out if controller is undefined
115
-
116
-
117
- Version 3.1.1 - 2012-06-06 20:35:00 -0700
118
- ===============================================================================
119
-
120
- Hrvoje Šimić (10):
121
- minor fixes for Rakefile
122
- change color of user informer tests
123
- remove unnecessary shim
124
- use shim instead of server response in tests
125
- add a note about informing the user
126
- fix typo in Rakefile
127
- valid mock responses
128
- add a failing scenario for #92
129
- 404s reporting fixed, closes #92
130
- update mocks for rack and sinatra
131
-
132
- Jonathan Siegel (1):
133
- Updated copyright/trademarks
134
-
135
-
136
- Version 3.1.0 - 2012-05-28 02:25:09 +0200
137
- ===============================================================================
138
-
139
- Andre Arko (1):
140
- stop using deprecated RAILS_ROOT
141
-
142
- Benjamin Oakes (5):
143
- notify_airbrake: filter params on Rails 3.1 (and maybe 3.0 also)
144
- `params` is the (eventual) intent, but `hash` is clearer in context
145
- One-liner, per @shime
146
- Exception safety: worst case scenario, report the unfiltered hash
147
- (m) Summarize the cases for future maintainers
148
-
149
- Blake Watters (1):
150
- Modify Rake handler to use Airbrake.notify_or_ignore rather than Airbrake.notify
151
-
152
- Chris Griego (1):
153
- Fix allowing airbrake_env/TO being different from rails_env/RAILS_ENV in deployment notifications.
154
-
155
- David (10):
156
- Merge pull request #33 from cgriego/patch-1
157
- Merge pull request #51 from unnu/master
158
- Merge pull request #56 from GateGuru/rake_handler_fix
159
- Merge pull request #60 from DaPulse/master
160
- Merge pull request #71 from sgonyea/patch-1
161
- Merge pull request #75 from blackhacker/master
162
- Merge pull request #81 from brainopia/patch-1
163
- Merge pull request #82 from ghurrell/fix-readme-stubbing-example
164
- Merge pull request #80 from yanowitz/patch-1
165
- Merge pull request #86 from Playhem/master
166
-
167
- David Palm (5):
168
- Set VERIFY_PEER in rake task
169
- More idiomatic inject
170
- Not quite ready yet. Revert "Heroku references now are to Airbrake."
171
- Adds `pry` to the gems available in test env
172
- Works outside Rails
173
-
174
- Eran Kampf (2):
175
- Fix for apps behind a local proxy (EY App Master)
176
- Changed if statement to one liner
177
-
178
- Erik Ostrom (1):
179
- Updated Heroku README to use Airbrake's new name.
180
-
181
- Gary Rafferty (1):
182
- Fix typo in airbrake.gemspec
183
-
184
- Greg Hurrell (1):
185
- Update stubbing example in README to match method signature
186
-
187
- Hrvoje Šimić (47):
188
- Merge pull request #59 from benjaminoakes/master
189
- Merge pull request #62 from sleparc/master
190
- Merge pull request #63 from benjaminoakes/master
191
- improved readability
192
- added new middleware catcher, fixes #73
193
- Merge pull request #72 from 'jdel/lazyload'
194
- Merge pull request #87 from gary-rafferty/master
195
- Stop using include? to filter parameters
196
- renaming so it's easier to understand
197
- Merge pull request #90 from samoli/patch-1
198
- Merge pull request #68 from cylence/master
199
- read ENV variables from heroku config, fixes #89
200
- check for airbrake_api_key on heroku
201
- Merge pull request #91 from mikz/patch-1
202
- ignore user agents in rails 3.0+
203
- Merge branch 'master' of github.com:airbrake/airbrake
204
- Merge pull request #79 from morgoth/fix-passing-api-key-as-param-to-rake-task
205
- minor test fix
206
- let's catch errors that happen early in the stack
207
- remove deprecated step definitions
208
- update url in a test
209
- fix required files in gemspec
210
- use top-level namespace
211
- fix requirements
212
- add rvmrc
213
- update server response in scenarios
214
- update heroku mock
215
- remove unnecessary space
216
- prefer the latest stable ruby version
217
- update steps for newer rails versions
218
- support rails 3.2.x with the test suite
219
- update exception catcher
220
- monkeypatch the old rails versions in tests
221
- remove fake exception from env
222
- add sanity to rescue_action_in_public_without_airbrake call
223
- remove note for rails 1.2.x users, we don't support it
224
- support the latest rails versions
225
- add 3.0.11 and 3.0.12 to supported versions
226
- update rack synopsis
227
- log messages for sinatra and rack
228
- make rack and sinatra tests green
229
- update rack example in readme
230
- Update ignored exceptions by default in readme
231
- update explanation how we catch errors in readme
232
- fix formatting
233
- add all supported frameworks to rake test task
234
- make metal tests green
235
-
236
- Jason Yanowitz (2):
237
- remove git dependency from generating gemspec file. causes errors when vendoring this gem in other projects
238
- updated gemspec files specification based on feedback
239
-
240
- Jean-Michel Garnier (1):
241
- Update README.md
242
-
243
- Jonathan Siegel (5):
244
- Heroku references now are to Airbrake.
245
- Merge branch 'master' of github.com:airbrake/airbrake
246
- Added beta support fer cedar.
247
- Added beta support fer cedar.
248
- Migrated to new api.airbrake.io endpoint.
249
-
250
- Jonathan del Strother (1):
251
- Lazily-load actioncontroller
252
-
253
- Leonid Shevtsov (3):
254
- Feature: use a separate API key for Javascript notifications
255
- cleaned up configuration
256
- Merge branch 'master' of git://github.com/airbrake/airbrake
257
-
258
- Michal Cichra (1):
259
- Use id to lookup error instead of error-id.
260
-
261
- Nathan Broadbent (1):
262
- Added Mongoid::Errors::DocumentNotFound to default IGNORED exceptions (same as ActiveRecord::RecordNotFound, for Mongoid.)
263
-
264
- Ravil Bayramgalin (1):
265
- Update lib/airbrake/user_informer.rb
266
-
267
- Ryan L. Cross (1):
268
- Added unix style param for url in the deployhook rake task.
269
-
270
- Sam Oliver (1):
271
- Update hoptoad=>aibrake in rake task example
272
-
273
- Scott Gonyea (1):
274
- Document proxy parameters; namely, that the proxy_host does not require "http://" as a prefix. Ideally, config.proxy= could be given a URI.
275
-
276
- Simon Le Parc (1):
277
- Shouldn't test the native dup method
278
-
279
- Stuart Chaney (1):
280
- Updating README gem instructions for Rails 2.3 with bundler.
281
-
282
- Wojciech Wnętrzak (1):
283
- fixed passing api_key param to Airbrake deploy task
284
-
285
- blackhacker (1):
286
- more detailed error message
287
-
288
- unnu (1):
289
- Fixed TaggedLogging bug in Rails 3 rake test task
290
-
291
- usiegj00 (3):
292
- Merge pull request #46 from eostrom/master
293
- Merge pull request #47 from 21croissants/master
294
- Merge pull request #38 from ndbroadbent/ignore_mongoid_notfound
295
-
296
-
297
- Version 3.0.9 - Thu Dec 15 23:51:38 +0100 2011
298
- ===============================================================================
299
-
300
- David Palm (2):
301
- Merge pull request #45 from spagalloco/patch-1
302
- Pulls in ideas from https://github.com/kidsalsa/airbrake/commit/54982ba83bd6c577a0835b9ba5936c690029244c#L0R2 BUT
303
- - moves #ca_bundle_path to Airbrake::Configuration
304
- - moves #local_cert_path to Airbrake::Configuration
305
- - adds #use_system_ssl_cert_chain? alias to Airbrake::Configuration
306
- - makes Airbrake.configure return the created sender (in addition to yielding)
307
- - stops airbrake deploy tasks duplicate code form the configuration class
308
- - cleanup unused expectations from tests
309
-
310
- Version 3.0.8 - Sun Dec 11 22:14:18 +0100 2011
311
- ===============================================================================
312
-
313
- David Palm (1):
314
- Use OpenSSL::X509::DEFAULT_CERT_FILE to connect only if configured to by setting use_system_ssl_cert_chain to true
315
-
316
- Version 3.0.7 - Sun Dec 11 21:04:08 +0100 2011
317
- ===============================================================================
318
-
319
- David Palm (1):
320
- Adds a :use_system_ssl_cert_chain configuration option to allow use of the system default SSL chain (as opposed to the CAs bundled with Airbrake) - defaults to false
321
-
322
- Version 3.0.6 - Mon Dec 05 16:41:39 +0100 2011
323
- ===============================================================================
324
-
325
- Benjamin Quorning (1):
326
- README updated to reflect name change from Hoptoad to Airbrake
327
-
328
- Darcy Laycock (1):
329
- Explicitly scope calls to Rails.env and such to prevent loading issues when manually requiring parts of airbrake.
330
-
331
- David (1):
332
- Merge pull request #42 from Playhem/fix-issue-34-cherrypicked
333
-
334
- David Czarnecki (6):
335
- Using the Capistrano logger for great justice
336
- Using the Capistrano logger for great justice
337
- Re-organized capistrano task to allow for testing
338
- Fixing conflict
339
- Fixed the name of the capistrano task in the test to be correct. Updated the cucumber feature to look for the right task name.
340
- Change airbrake:notify to airbrake:deploy to be more clear that it is a deploy notification
341
-
342
- David Palm (8):
343
- Removes support for Rails v2.3.12
344
- Documentation glitch
345
- Documenting workaround for issue #39
346
- Using guard&spork for testing
347
- Adding Guardfile
348
- Moves #assert_logged to test helper
349
- Moves http setup code to own method
350
- Not sporking yet
351
-
352
- Florent Guilleux (1):
353
- Change Hoptoad references to Airbrake.
354
-
355
- Gabe Berke-Williams (1):
356
- Merge pull request #10 from Florent2/patch-1
357
-
358
- Harold Giménez (10):
359
- Heroku is still using HOPTOAD_API_KEY, so expect that for now
360
- Bumping to version 3.0
361
- Bumping to version 3.0.1
362
- Fix bug in defining the Airbrake javascript object
363
- Bumping to version 3.0.2
364
- Ensure a valid configuration object is always available on Airbrake.configuration
365
- Merge remote-tracking branch 'agoragames/master'
366
- Bumping to version 3.0.3
367
- Minor fix to Gemfile instructions on README
368
- Bumping to version 3.0.4
369
-
370
- Jonathan Siegel (16):
371
- Removed class-level caching per jkraemer: Hi,
372
- Integrated pulls and updated tests.
373
- Integrated: https://github.com/thoughtbot/hoptoad_notifier/pull/37
374
- Corrected test.
375
- Consistent operation.
376
- Consistent callout during test generation.
377
- Fixed typo.
378
- Refreshed supported.
379
- Resolved: http://help.airbrakeapp.com/discussions/questions/587-airbrake_javascript_notifier-is-escaped-rails-31-haml
380
- Now running airbrake deploy notifications on the REMOTE machine.
381
- Added first rev of PEER cert resolution.
382
- Bumped 3.0.5
383
- Updated README, fixed JS rescue template missed HT reference.
384
- Crosslinked docs...
385
- Fixes for tests.
386
- Bumping to version 3.0.5
387
-
388
- Leonid Shevtsov (3):
389
- fixed rake handler failing when exception happens before Airbrake has been configured (for example, when running an unknown Rake task)
390
- fix issue #34 'undefined method to_backtrace for Hash'
391
- test case for issue #34
392
-
393
- Matt Fawcett (1):
394
- Call #close on the old body after building the new body to prevent thread joining errors
395
-
396
- Roman Shterenzon (1):
397
- Use either Airbrake or Hoptoad object.
398
-
399
- Stuart Chaney (1):
400
- point towards airbrake.io
401
-
402
- Thomas Jachmann (1):
403
- handles exceptions with #to_hash properly
404
-
405
- usiegj00 (4):
406
- Merge pull request #21 from mattfawcett/master
407
- Merge pull request #12 from leonid-shevtsov/master
408
- Merge pull request #14 from thomasjachmann/master
409
- Merge pull request #28 from Sutto/patch-1
410
-
411
-
412
- Version 3.0.5 - 2011-11-08 23:02:07 -0800
413
- ===============================================================================
414
-
415
- Benjamin Quorning (1):
416
- README updated to reflect name change from Hoptoad to Airbrake
417
-
418
- Darcy Laycock (1):
419
- Explicitly scope calls to Rails.env and such to prevent loading issues when manually requiring parts of airbrake.
420
-
421
- David Czarnecki (6):
422
- Using the Capistrano logger for great justice
423
- Using the Capistrano logger for great justice
424
- Re-organized capistrano task to allow for testing
425
- Fixing conflict
426
- Fixed the name of the capistrano task in the test to be correct. Updated the cucumber feature to look for the right task name.
427
- Change airbrake:notify to airbrake:deploy to be more clear that it is a deploy notification
428
-
429
- Florent Guilleux (1):
430
- Change Hoptoad references to Airbrake.
431
-
432
- Gabe Berke-Williams (1):
433
- Merge pull request #10 from Florent2/patch-1
434
-
435
- Harold Giménez (10):
436
- Heroku is still using HOPTOAD_API_KEY, so expect that for now
437
- Bumping to version 3.0
438
- Bumping to version 3.0.1
439
- Fix bug in defining the Airbrake javascript object
440
- Bumping to version 3.0.2
441
- Ensure a valid configuration object is always available on Airbrake.configuration
442
- Merge remote-tracking branch 'agoragames/master'
443
- Bumping to version 3.0.3
444
- Minor fix to Gemfile instructions on README
445
- Bumping to version 3.0.4
446
-
447
- Jonathan Siegel (15):
448
- Removed class-level caching per jkraemer: Hi,
449
- Integrated pulls and updated tests.
450
- Integrated: https://github.com/thoughtbot/hoptoad_notifier/pull/37
451
- Corrected test.
452
- Consistent operation.
453
- Consistent callout during test generation.
454
- Fixed typo.
455
- Refreshed supported.
456
- Resolved: http://help.airbrakeapp.com/discussions/questions/587-airbrake_javascript_notifier-is-escaped-rails-31-haml
457
- Now running airbrake deploy notifications on the REMOTE machine.
458
- Added first rev of PEER cert resolution.
459
- Bumped 3.0.5
460
- Updated README, fixed JS rescue template missed HT reference.
461
- Crosslinked docs...
462
- Fixes for tests.
463
-
464
- Leonid Shevtsov (1):
465
- fixed rake handler failing when exception happens before Airbrake has been configured (for example, when running an unknown Rake task)
466
-
467
- Matt Fawcett (1):
468
- Call #close on the old body after building the new body to prevent thread joining errors
469
-
470
- Roman Shterenzon (1):
471
- Use either Airbrake or Hoptoad object.
472
-
473
- Stuart Chaney (1):
474
- point towards airbrake.io
475
-
476
- Thomas Jachmann (1):
477
- handles exceptions with #to_hash properly
478
-
479
- usiegj00 (4):
480
- Merge pull request #21 from mattfawcett/master
481
- Merge pull request #12 from leonid-shevtsov/master
482
- Merge pull request #14 from thomasjachmann/master
483
- Merge pull request #28 from Sutto/patch-1
484
-
485
-
486
-
487
- Version 3.0.4 - Mon Sep 12 08:25:04 -0400 2011
488
- ===============================================================================
489
- David Czarnecki(1):
490
- Change deploy task back to airbrake:deploy
491
- Harold Gimenez(1):
492
- README updates
493
-
494
- Version 3.0.3 - Sat Sep 03 13:18:26 -0400 2011
495
- ===============================================================================
496
- David Czarnecki(1):
497
- Use capistrano's logger, improve tests around capistrano deploy.
498
- Florent Guilleux(1):
499
- README updates
500
-
501
- Version 3.0.2 - Mon Aug 29 10:32:04 -0400 2011
502
- ===============================================================================
503
- Harold Gimenez(1)
504
- Fix bug on the Hoptoad to Airbrake fallback code on the javascript notifier.
505
-
506
- Version 3.0.1 - Mon Aug 29 08:37:24 -0400 2011
507
- ===============================================================================
508
- Roman Shterenzon(1):
509
- Use either Airbrake or Hoptoad object on javascript notifier
510
-
511
- Version 3.0 - Fri Aug 26 08:55:47 -0400 2011
512
- ===============================================================================
513
- Harold Gimenez:
514
- Continue to use HOPTOAD_API_KEY for heroku users' API key env variable
515
-
516
- Version 3.0.rc2 - Wed Aug 24 15:03:46 -0400 2011
517
- ===============================================================================
518
-
519
- Harold Gimenez:
520
- Revert broken commit around exceptions that respond to #to_hash
521
- Support latest versions of Rails.
522
-
523
-
524
- Version 3.0.rc1 - Fri Aug 19 08:51:53 -0400 2011
525
- ===============================================================================
526
-
527
- Jonathan Yurek and Harold Gimenez
528
- Rename to Airbrake
529
-
530
- Version 2.4.9 - Wed Mar 30 09:04:53 -0400 2011
531
- ===============================================================================
532
-
533
- Jonathan Yurek(1):
534
- The User Informer should adhere to only the Rack spec.
535
-
536
- Version 2.4.8 - Mon Mar 21 11:11:16 -0400 2011
537
- ===============================================================================
538
-
539
- Jonathan Yurek(1):
540
- Prevent infinite loops from recursive data structures.
541
-
542
- Version 2.4.7 - Thu Mar 10 16:21:31 -0500 2011
543
- ===============================================================================
544
-
545
- Jonathan Yurek(1):
546
- Rails generator requires './config/boot' for 1.9.2 compatibility.
547
-
548
- Version 2.4.6 - Tue Feb 15 15:51:17 -0500 2011
549
- ===============================================================================
550
-
551
- Jonathan Yurek(1):
552
- Modify the error page's body in-place.
553
-
554
- Version 2.4.5 - Wed Feb 02 13:24:29 -0500 2011
555
- ===============================================================================
556
-
557
- Jonathan Yurek (1):
558
- Don't require Rack::Lock's presence in the middleware for UserInformer
559
-
560
-
561
- Version 2.4.4 - Fri Jan 28 13:50:10 -0500 2011
562
- ===============================================================================
563
-
564
- Matt Jankowski (1):
565
- Change the javascript notifier from a config option to a helper method
566
-
567
- Jonathan Yurek (1):
568
- Show the javascript notifier prevents XSS attempts from request.url
569
-
570
- Version 2.4.3 - Wed Jan 26 11:35:15 -0500 2011
571
- ===============================================================================
572
-
573
- Jon Yurek (1):
574
- Allow the application to present the Hoptoad error number to the user
575
-
576
-
577
- Version 2.4.2 - Sun Jan 09 09:37:31 -0500 2011
578
- ===============================================================================
579
-
580
- Matt Jankowski (1):
581
- fix issue where the gsub to replace the html head with javascript was removing the head element entirely
582
-
583
-
584
- Version 2.4.1 - Sat Jan 08 12:17:15 -0500 2011
585
- ===============================================================================
586
-
587
- Matt Jankowski (1):
588
- restore method which may have been accidentally removed?
589
-
590
-
591
- Version 2.4.0 - Thu Jan 06 15:03:58 -0500 2011
592
- ===============================================================================
593
-
594
- Jason Morrison (1):
595
- Remove official support for very old Rails version going forward
596
-
597
- Version 2.3.14 - Wed Jan 05 14:06:12 -0500 2011
598
- ===============================================================================
599
-
600
- Jason Morrison (1):
601
- Fix 'require' path
602
-
603
- Version 2.3.13 - Mon Jan 03 15:56:20 -0500 2011
604
- ===============================================================================
605
-
606
- Dan Croak (1):
607
- including twiddle wakka in install instructions
608
-
609
- Emma Lindsay (5):
610
- Sends more javascript information back to hoptaod
611
- Merge branch 'js_notifier_default_fields'
612
- Bumping to version 2.3.10
613
- Updated jferris-mocha to bourne
614
- Update readme to show quotes around error names in ignores
615
-
616
- Jason Morrison (8):
617
- wip: Supply default url, component, action for JS notifier
618
- gracefully fall back to require 'activesupport' if require 'active_support' fails
619
- Add non-capistrano deploy instructions
620
- Add instructions for heroku gem to Heroku addon README
621
- Add AbstractController::ActionNotFound to default ignore list
622
- Bumping to version 2.3.12
623
- Bugfix: JS Notifier will now insert itself even when <head> tag has attributes
624
- Add Heroku deploy notification
625
-
626
- Jon Yurek (11):
627
- Require bourne, run right cucumber task
628
- Get the API key from Heroku
629
- Bumped version: 2.3.11
630
- Getting green cucumber stories
631
- Fakes out the heroku command for cucumber.
632
- Mount the metal endpoint in Rails 3 tests.
633
- Metal test mounts at /metal
634
- Supported versions: 2.3.9, 2.3.10, and 3.0.1
635
- Return non-zero on cucumber failure.
636
- Controller info for older Rails-es is different.
637
- Remove Rails 2.0.2 from official support. Added 3.0.2+3
638
-
639
- Trevor Turk (1):
640
- Fix default ignores in the README
641
-
642
-
643
- Version 2.3.12 - Wed Nov 03 13:53:18 -0400 2010
644
- ===============================================================================
645
-
646
- In general: Update gems, improve testing, improve documentation, improve
647
- javascript notifier.
648
-
649
- Emma Lindsay (4):
650
- Sends more javascript information back to hoptaod
651
- Merge branch 'js_notifier_default_fields'
652
- Bumping to version 2.3.10
653
- Updated jferris-mocha to bourne
654
-
655
- Jason Morrison (5):
656
- wip: Supply default url, component, action for JS notifier
657
- gracefully fall back to require 'activesupport' if require 'active_support' fails
658
- Add non-capistrano deploy instructions
659
- Add instructions for heroku gem to Heroku addon README
660
- Add AbstractController::ActionNotFound to default ignore list
661
-
662
- Jon Yurek (9):
663
- Require bourne, run right cucumber task
664
- Get the API key from Heroku
665
- Bumped version: 2.3.11
666
- Getting green cucumber stories
667
- Fakes out the heroku command for cucumber.
668
- Mount the metal endpoint in Rails 3 tests.
669
- Metal test mounts at /metal
670
- Supported versions: 2.3.9, 2.3.10, and 3.0.1
671
- Return non-zero on cucumber failure.
672
-
673
-
674
- Version 2.3.10 - Mon Oct 18 17:07:56 -0400 2010
675
- ===============================================================================
676
-
677
- Emma Lindsay (2):
678
- Sends more javascript information back to hoptaod
679
- Merge branch 'js_notifier_default_fields'
680
-
681
- Jason Morrison (2):
682
- wip: Supply default url, component, action for JS notifier
683
- gracefully fall back to require 'activesupport' if require 'active_support' fails
684
-
685
-
686
- Version 2.3.9 - 2010-10-18
687
- ===============================================================================
688
-
689
- This patch release contains a handful of bugfixes, and ensures:
690
- If hoptoadapp.com is completely unreachable by HTTP, your app is not affected.
691
- Controller method #notify_hoptoad is available in Rails 3. Thanks contributor Kyle Crum!
692
-
693
- Chad Pytel (1):
694
- also handle Errno::ECONNREFUSED and other http errors
695
-
696
- Jason Morrison (4):
697
- Add gem versions to test suite
698
- Revert "Revert "attempt to debug mail sending on staging""
699
- Adding Heroku notifier readme
700
- gracefully fall back to require 'activesupport' if require 'active_support' fails
701
-
702
- Jon Yurek (2):
703
- Bumping version to 2.3.8
704
- Adds builder to the gemspec
705
-
706
- Kyle Crum (3):
707
- notify_hoptoad now works in rails 3 controllers
708
- more sane way of testing for rails 3 controller methods
709
- added a scenario for using the notify_hoptoad method within a controller
710
-
711
-
712
- Version 2.3.7 - 2010-09-15
713
- ===============================================================================
714
-
715
- Jason Morrison (5):
716
- Add ./ prefix to require for 1.9.2
717
- More helpful message for testing without ENV['RAILS_VERSION']
718
- Support Rails 3.0.0, not 3.0.0.rc
719
- This wasn't actually a fix (it regressed tests): Revert "Fix modifying params_filters"
720
- Correct the #also_use_rack_params_filters method
721
-
722
- Joshua Clayton (1):
723
- Fix modifying params_filters
724
-
725
- Nick Quaranto (2):
726
- s/RSpec/Spec for matchers
727
- use Sinatra::Default instead of Sinatra::Base
728
-
729
-
730
- Version 2.3.6 - 2010-08-30
731
- ===============================================================================
732
-
733
- Daniel Barron (1):
734
- Initializer configuration overrides Railtie configuration if set
735
-
736
- Joshua Clayton (1):
737
- Remove rack.request.form_vars
738
-
739
- Tristan Dunn (1):
740
- Move Rails JS scenarios into separate feature and correctly support HTTPS when secure is enabled on the notifier.
741
-
742
-
743
- Version 2.3.5 - 2010-08-13
744
- ===============================================================================
745
-
746
- Alexey Palazhchenko (1):
747
- Actually call #to_hash.
748
-
749
- Joshua Clayton (1):
750
- Trace hoptoad:test task when running generator for anything before Rails3
751
-
752
-
753
- Version 2.3.4 - 2010-08-10
754
- ===============================================================================
755
-
756
- Tristan Dunn (1):
757
- Only include the JS notifier in public environments.
758
-
759
-
760
- Version 2.3.3 - 2010-08-04
761
- ===============================================================================
762
-
763
- Tristan Dunn (1):
764
- Initial injection of JS notifier.
765
-
766
-
767
- Version 2.3.2 - 2010-07-06
768
- ===============================================================================
769
-
770
- Josh Clayton(1):
771
- Handle instances when Rack's action_dispach.parameter_filter is nil
772
-
773
-
774
- Version 2.3.1 - 2010-07-02
775
- ===============================================================================
776
-
777
- Jason Morrison (2):
778
- Use the Rails 3 params filters when available
779
- Filter session hash using Hoptoad config.params_filters, in addition to params
780
-
781
-
782
- Version 2.3.0 - 2010-06-24
783
- ===============================================================================
784
-
785
- Jason Morrison (5):
786
- Add integration test for rails 3.0.0.beta4
787
- Added feature: Support the Heroku addon in the generator
788
- Add --heroku flag to generator to support ENV['HOPTOAD_API_KEY']
789
- Reflect a copy change in rails.feature for --heroku generator flag
790
- Support the proxy configuration options when notifying Hoptoad of a deploy (hat tip @gudleik)
791
-
792
-
793
- Version 2.2.6 - 2010-06-02
794
- ===============================================================================
795
-
796
- Jason Morrison (1):
797
- For Rails 3, just use the Rack middleware instead of specifying a location to insert_after
798
-
799
-
800
- Version 2.2.5 - 2010-06-02
801
- ===============================================================================
802
-
803
- Jason Morrison (1):
804
- Add documentation for Rails 3.x installation
805
-
806
-
807
- Version 2.2.4 - 2010-06-02
808
- ===============================================================================
809
-
810
- Jason Morrison (1):
811
- Add a note to README about removing the explicit Catcher #include in ApplicationController
812
-
813
-
814
- Version 2.2.3 - 2010-06-02
815
- ===============================================================================
816
-
817
- Summary: Fixed a variety of issues for Rails 3.0.0.beta3,
818
- Fixed a bug when using Vlad to deploy instead of Capistrano
819
- Give better error output when gem is not installed
820
-
821
- Chad Pytel (2):
822
- revise gem unpack instructions step
823
- Merge branch 'master' of github.com:thoughtbot/hoptoad_notifier
824
-
825
- Dan Lawless (1):
826
- don't append capistrano details to config.deploy.rb when target app uses Vlad
827
-
828
- Jason Morrison (7):
829
- LH-556 Clarify sending ENV environment variables
830
- Starting to add features for Rails 3
831
- Make rails rake tasks depend on gem-making tasks
832
- Start to get Rails 3 features to pass
833
- require fileutils to reflect rubygems 1.3.6 change
834
- Support ENV['CUCUMBER_FORMAT'] in rails cucumber tasks for testing
835
- Fix the initializer syntax in the Rails 3 Railtie
836
-
837
- Joe Ferris (11):
838
- Got the generator running and a request dispatched to the test endpoint
839
- Fixed logging in hoptoad:test rake task
840
- Separated Rails 2 and 3 entry
841
- Support bundler
842
- Rails 3 generator works with an existing api key
843
- Extract request info from rack env
844
- Detect presence of the plugin
845
- Added a capistrano hook for Rails 3
846
- Fixed rack/sinatra being broken without active_support
847
- Fixes for earlier versions of Rails
848
- Fixed Rails 3 generator not to append cap hooks for vlad deploys
849
-
850
- Josh Kalderimis (7):
851
- updated railtie to work with the new rails 3 middleware api
852
- railtie_name is deprecated
853
- updated app_middleware call to use string version as to make sure constant is loaded
854
- moved generator using the new rails 3 convention
855
- update path to template for Rails 3 generator
856
- correction to referencing of the rails application in rails3_tasks
857
- add environment_name and project_root back to rails 3 railtie
858
-
859
- Joshua Nichols (1):
860
- Handle gem not being installed more gracefully.
861
-
862
-
863
- Version 2.2.2 - 2010-03-10
864
- ===============================================================================
865
-
866
- Chad Pytel (1):
867
- document proxy support
868
-
869
- Joe Ferris (8):
870
- Added upgrade instructions to the README
871
- Give a clearer error message when generating a Rails app fails
872
- Fail loudly when a gem can't be vendored
873
- Debugging rubygems issues
874
- Explicitly specify the gem paths
875
- Less noisy
876
- Restore gem path after vendoring
877
- Fixed a typo
878
-
879
- Jon Yurek (1):
880
- Added notice about removing hoptoad rake tasks to upgrade gem
881
-
882
- Mike Burns (1):
883
- Remove stray file with notes in it
884
-
885
-
886
- Version 2.2.1 - 2010-03-10
887
- ===============================================================================
888
-
889
- Jason Morrison (3):
890
- LH-629 Ensure notifier is not considered a framework gem
891
- Removing things-the-generator-must-do file
892
- Add rake cucumber:wip:rails* tasks for work-in-progress features
893
-
894
-
895
- Version 2.2.0 - 2010-02-18
896
- ===============================================================================
897
-
898
- Bumping the version from 2.1.4 to 2.2.0 since adding Rack support warrants a minor version.
899
-
900
- Jason Morrison (1):
901
- Stringify array elements when making assertions about Notice XML for 1.9 compatibility
902
-
903
-
904
- Version 2.1.4 - 2010-02-12
905
- ===============================================================================
906
-
907
- Chad Pytel (2):
908
- add more info to README for 1.2.6
909
- fix gem unpack line for 1.2.6
910
-
911
- Jason Morrison (2):
912
- Adding additional instructions for Rails 1.2.6
913
- Typesetting in README.rdoc
914
-
915
- Joe Ferris (11):
916
- Separating Rails functionality out more
917
- Initial Rack middleware
918
- Extract request info from rack env
919
- Added integration tests for rescuing
920
- Fixed reporting of Rails version
921
- Small refactoring
922
- Automatically add Rack middleware for Rails apps that support it (catches exceptions from Metal)
923
- Added an integration test and docs for rack apps
924
- Added integration/readme coverage of Sinatra apps
925
- Added docs to HoptoadNotifier::Rack
926
- Require rack in tests for older versions of Rails; use active_support instead of activesupport
927
-
928
- Nick Quaranto (3):
929
- Fixing the capistrano hook bit in the readme
930
- Adding changeling:minor and changeling:patch to automate notifier releases
931
- Adding rake changeling:push
932
-
933
-
934
-
935
-
936
-
937
-
938
-
939
-
940
-
941
-
942
-
943
-
944
-