airbrakeV4rails5 4.3.8

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.
Files changed (98) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG +1716 -0
  3. data/Gemfile +3 -0
  4. data/Guardfile +6 -0
  5. data/INSTALL +20 -0
  6. data/LICENSE +61 -0
  7. data/README.md +148 -0
  8. data/README_FOR_HEROKU_ADDON.md +102 -0
  9. data/Rakefile +179 -0
  10. data/TESTED_AGAINST +7 -0
  11. data/airbrake.gemspec +41 -0
  12. data/bin/airbrake +12 -0
  13. data/features/metal.feature +34 -0
  14. data/features/rack.feature +60 -0
  15. data/features/rails.feature +324 -0
  16. data/features/rake.feature +33 -0
  17. data/features/sinatra.feature +126 -0
  18. data/features/step_definitions/file_steps.rb +14 -0
  19. data/features/step_definitions/rack_steps.rb +27 -0
  20. data/features/step_definitions/rails_application_steps.rb +267 -0
  21. data/features/step_definitions/rake_steps.rb +22 -0
  22. data/features/support/airbrake_shim.rb.template +11 -0
  23. data/features/support/aruba.rb +5 -0
  24. data/features/support/env.rb +39 -0
  25. data/features/support/matchers.rb +35 -0
  26. data/features/support/rails.rb +156 -0
  27. data/features/support/rake/Rakefile +77 -0
  28. data/features/user_informer.feature +57 -0
  29. data/generators/airbrake/airbrake_generator.rb +94 -0
  30. data/generators/airbrake/lib/insert_commands.rb +34 -0
  31. data/generators/airbrake/lib/rake_commands.rb +24 -0
  32. data/generators/airbrake/templates/airbrake_tasks.rake +25 -0
  33. data/generators/airbrake/templates/capistrano_hook.rb +6 -0
  34. data/generators/airbrake/templates/initializer.rb +4 -0
  35. data/install.rb +1 -0
  36. data/lib/airbrake.rb +191 -0
  37. data/lib/airbrake/backtrace.rb +103 -0
  38. data/lib/airbrake/capistrano.rb +103 -0
  39. data/lib/airbrake/capistrano3.rb +3 -0
  40. data/lib/airbrake/cli/client.rb +76 -0
  41. data/lib/airbrake/cli/options.rb +45 -0
  42. data/lib/airbrake/cli/printer.rb +33 -0
  43. data/lib/airbrake/cli/project.rb +17 -0
  44. data/lib/airbrake/cli/project_factory.rb +33 -0
  45. data/lib/airbrake/cli/runner.rb +49 -0
  46. data/lib/airbrake/cli/validator.rb +8 -0
  47. data/lib/airbrake/configuration.rb +366 -0
  48. data/lib/airbrake/jobs/send_job.rb +7 -0
  49. data/lib/airbrake/notice.rb +411 -0
  50. data/lib/airbrake/rack.rb +64 -0
  51. data/lib/airbrake/rails.rb +45 -0
  52. data/lib/airbrake/rails/action_controller_catcher.rb +32 -0
  53. data/lib/airbrake/rails/controller_methods.rb +146 -0
  54. data/lib/airbrake/rails/error_lookup.rb +35 -0
  55. data/lib/airbrake/rails/middleware.rb +63 -0
  56. data/lib/airbrake/rails3_tasks.rb +126 -0
  57. data/lib/airbrake/railtie.rb +44 -0
  58. data/lib/airbrake/rake_handler.rb +75 -0
  59. data/lib/airbrake/response.rb +29 -0
  60. data/lib/airbrake/sender.rb +213 -0
  61. data/lib/airbrake/shared_tasks.rb +59 -0
  62. data/lib/airbrake/sidekiq.rb +8 -0
  63. data/lib/airbrake/sinatra.rb +40 -0
  64. data/lib/airbrake/tasks.rb +81 -0
  65. data/lib/airbrake/tasks/airbrake.cap +28 -0
  66. data/lib/airbrake/user_informer.rb +36 -0
  67. data/lib/airbrake/utils/params_cleaner.rb +141 -0
  68. data/lib/airbrake/utils/rack_filters.rb +45 -0
  69. data/lib/airbrake/version.rb +3 -0
  70. data/lib/airbrake_tasks.rb +62 -0
  71. data/lib/rails/generators/airbrake/airbrake_generator.rb +155 -0
  72. data/lib/templates/rescue.erb +91 -0
  73. data/rails/init.rb +1 -0
  74. data/resources/README.md +34 -0
  75. data/resources/airbrake_2_4.xsd +89 -0
  76. data/resources/airbrake_3_0.json +52 -0
  77. data/resources/ca-bundle.crt +3376 -0
  78. data/script/integration_test.rb +35 -0
  79. data/test/airbrake_tasks_test.rb +161 -0
  80. data/test/backtrace_test.rb +215 -0
  81. data/test/capistrano_test.rb +44 -0
  82. data/test/configuration_test.rb +303 -0
  83. data/test/controller_methods_test.rb +230 -0
  84. data/test/helper.rb +233 -0
  85. data/test/integration.rb +13 -0
  86. data/test/integration/catcher_test.rb +371 -0
  87. data/test/logger_test.rb +79 -0
  88. data/test/notice_test.rb +494 -0
  89. data/test/notifier_test.rb +288 -0
  90. data/test/params_cleaner_test.rb +204 -0
  91. data/test/rack_test.rb +62 -0
  92. data/test/rails_initializer_test.rb +36 -0
  93. data/test/recursion_test.rb +10 -0
  94. data/test/response_test.rb +18 -0
  95. data/test/sender_test.rb +335 -0
  96. data/test/support/response_shim.xml +4 -0
  97. data/test/user_informer_test.rb +29 -0
  98. metadata +469 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4b0854836ddb1f31613b5ac29584efc8a365acf9
4
+ data.tar.gz: 4e43de4dc268d537f161d4bcda0aa7b71b1c1d54
5
+ SHA512:
6
+ metadata.gz: 87a2fa302f29b105faa8600cfd917d98e7bf49e83fdc72068d671ecab709060452394e4a140d57e53307e0dfa5d895bf7b0d4566e53673a71123da70af2aa7bd
7
+ data.tar.gz: 184b66bf19428fb9ebff7874729a47d024cafafe0f6b92db4aaaec4f1a74ff822f0c4a1ad45b0e71dbb85ee0a48aedd8e0c48fa5d2973e575d907aad66fa1feb
@@ -0,0 +1,1716 @@
1
+ Version 4.3.8 - 2016-06-24 17:43:35 +0300
2
+ ===============================================================================
3
+
4
+ Kyrylo Silin (1):
5
+ Merge pull request #562 from yui-knk/clear_active_connections_v4
6
+
7
+ yui-knk (1):
8
+ Use `clear_active_connections!` instead of `release_connection`
9
+
10
+
11
+ Version 4.3.7 - 2016-06-14 19:33:24 +0300
12
+ ===============================================================================
13
+
14
+ Egor Lynko (1):
15
+ Fix params cleaner for deep nested arrays
16
+
17
+ Kyrylo Silin (1):
18
+ Merge pull request #559 from flexoid/fix-params-cleaner-for-nested-arrays
19
+
20
+
21
+ Version 4.3.6 - 2016-02-17 19:35:46 +0200
22
+ ===============================================================================
23
+
24
+ Gary Von Schilling (1):
25
+ Change hash syntax for compatibility
26
+
27
+ Kyrylo Silin (1):
28
+ Merge pull request #512 from garyv/patch-1
29
+
30
+
31
+ Version 4.3.5 - 2016-01-07 05:44:58 +0200
32
+ ===============================================================================
33
+
34
+ Kyrylo Silin (1):
35
+ Merge pull request #465 from md5/v4-default-openssl-ca-handling
36
+
37
+ Mike Dillon (1):
38
+ Allow use_system_ssl_cert_chain to work without DEFAULT_CERT_FILE
39
+
40
+
41
+ Version 4.3.4 - 2015-11-24 10:19:23 +0200
42
+ ===============================================================================
43
+
44
+ Abdelkader Boudih (1):
45
+ Relax sidekiq version dependency
46
+
47
+ Kyrylo Silin (1):
48
+ Merge pull request #436 from seuros/patch-2
49
+
50
+
51
+ Version 4.3.3 - 2015-10-20 19:33:27 -0500
52
+ ===============================================================================
53
+
54
+ Daniel Loy (1):
55
+ don't break `clean_params` when processing nested array (as seen in action_dispatch.cookies from cgi-data)
56
+
57
+ Joe Van Dyk (1):
58
+ Add way to ignore all the exceptions
59
+
60
+ Kyrylo Silin (2):
61
+ Merge pull request #432 from loybert/fix/dont-break-when-filtering-arrays-of-arrays
62
+ Merge pull request #433 from Tanga/ignore_exceptions
63
+
64
+
65
+ Version 4.3.2 - 2015-10-16 21:24:49 -0500
66
+ ===============================================================================
67
+
68
+ Alexis (3):
69
+ don't fail on request param containing |
70
+ [#419] | test
71
+ don't fail on request param containing |
72
+
73
+ Andres Ivanov (5):
74
+ Remove API_KEY from capistrano tasks
75
+ Remove api_key variable sent by airbrake:deploy
76
+ Merge github.com:airbrake/airbrake
77
+ Remove api_key opt from AirbrakeTasks.deploy
78
+ Remove test that checks availability of passing api_key opt
79
+
80
+ Iain Beeston (2):
81
+ Corrected ControllerMethods test that could never fail
82
+ Protected against errors while gathering user details
83
+
84
+ Joe Roberts (1):
85
+ Fix readme, SSL is available to everyone.
86
+
87
+ Kyrylo Silin (15):
88
+ Merge pull request #409 from airbrake/fix/readme-ssl
89
+ Merge pull request #411 from TangRufus/master
90
+ Revert "start using remote XSD file when verifying XML in tests"
91
+ Merge pull request #420 from alexis779/master
92
+ Revert "[#419] don't fail on request param containing |"
93
+ Merge pull request #424 from airbrake/revert-420-master
94
+ circle: update Ruby from 2.0.0-p0 to 2.2.3
95
+ Merge pull request #425 from airbrake/update-ruby
96
+ params_cleaner: do not attempt to "collect" closed IO objects
97
+ Merge pull request #426 from airbrake/396-closed-io-bug
98
+ Merge pull request #429 from iainbeeston/incorrect-controller-method-name
99
+ Merge pull request #430 from iainbeeston/protect-against-user-load-errors
100
+ test/integration: don't require abstract_controller
101
+ Merge pull request #431 from airbrake/do-not-require-abstract-controller
102
+ Merge pull request #427 from alexis779/master
103
+
104
+ Marko Šiftar (2):
105
+ Merge pull request #412 from midN/master
106
+ Merge pull request #416 from airbrake/415-fix-build
107
+
108
+ Tang Rufus (2):
109
+ Fix airbrake/airbrake#410
110
+ Backward compatible with Rails 4
111
+
112
+
113
+ Version 4.3.1 - 2015-08-24 21:10:19 -0500
114
+ ===============================================================================
115
+
116
+ Edoardo Rossi (1):
117
+ Fix missing api_key when using V3 endpoint URL
118
+
119
+ Igor Kapkov (2):
120
+ Use getters instead of handwriten methods
121
+ Update readme to fix appraisal deprecation
122
+
123
+ Kyrylo Silin (5):
124
+ Merge pull request #404 from zeroed/master
125
+ Merge pull request #405 from igas/little-optimization
126
+ Merge pull request #408 from igas/update-readme-to-fix-appraisal-deprecation
127
+ Merge pull request #406 from Aupajo/fix/ambiguous-rails
128
+ Merge pull request #403 from lisovskyvlad/master
129
+
130
+ Lisovsky Vlad (1):
131
+ Fix dumping notice object to xml for rails 2.3.10 and builder 2.1.2
132
+
133
+ Mark Nadig (1):
134
+ capistrano task should handle symbols for env
135
+
136
+ Pete Nicholls (1):
137
+ Use ::Rails namespace for Rails::VERSION
138
+
139
+ shifi (3):
140
+ Merge branch 'issue_393' of https://github.com/KonaTeam/airbrake into KonaTeam-issue_393
141
+ Merge branch 'KonaTeam-issue_393'
142
+ add guidelines for contributing
143
+
144
+
145
+ Version 4.3.0 - 2015-06-23 19:36:10 -0500
146
+ ===============================================================================
147
+
148
+ Omer Gazit (1):
149
+ Add ability to define whitelist filters for parameters
150
+
151
+ shifi (7):
152
+ use top level namespace and stay compatible with Rails 2.x - fixes #388
153
+ update to match new changes
154
+ support whitelist and blacklist approach for params filters and support nested filter arrays
155
+ add more tests for params cleaner
156
+ Merge branch 'feature/whitelist-params-filters'
157
+ add HTTP_AUTHORIZATION to rack filters
158
+ make sure we remove all sensitive rack vars
159
+
160
+
161
+ Version 4.2.1 - 2015-06-01 22:12:49 -0500
162
+ ===============================================================================
163
+
164
+ Marko Šiftar (3):
165
+ Merge pull request #384 from biske/improve-notify-documentation
166
+ Merge pull request #385 from arrtchiu/patch-2
167
+ Merge pull request #386 from airbrake/fix/check-if-failsafe-middleware-is-defined
168
+
169
+ Phuong Nguyen (1):
170
+ Insert UserInformer middleware before Rack::Runtime since Rack::Lock may not be available for app with websocket-rails
171
+
172
+ arrtchiu (1):
173
+ Support Rails 4 without ActiveRecord
174
+
175
+ shifi (7):
176
+ typo in changelog
177
+ add more args in deploy CLI - fixes #296
178
+ update CLI help info
179
+ do not require pry - fix typo
180
+ check if failsafe middleware is defined - fixes #379
181
+ fix conflicts
182
+ Merge branch 'phuongnd08-master'
183
+
184
+ Иван Бишевац (1):
185
+ Improves documentation for notify method
186
+
187
+
188
+ Version 4.2.0 - 2015-05-27 19:05:32 -0500
189
+ ===============================================================================
190
+
191
+ Abdelkader Boudih (1):
192
+ Update sidekiq.rb
193
+
194
+ Adam King (1):
195
+ Fix DEFAULT_BACKTRACE_FILTERS bug that caused backtrace to not show up in certain contexts. See https://github.com/airbrake/airbrake/issues/343.
196
+
197
+ David (8):
198
+ Merge pull request #329 from grosser/grosser/gemspec
199
+ Merge pull request #335 from airbrake/fix/cucumber-suite
200
+ Merge pull request #327 from airbrake/feature/faster-params-cleaning
201
+ Merge pull request #337 from airbrake/fix/rails4-is-here
202
+ Merge pull request #326 from airbrake/fix/cast-ENV-to-Hash
203
+ Merge pull request #328 from grosser/grosser/dup
204
+ Merge pull request #334 from airbrake/fix/user-info-consumes-db-connections
205
+ Merge pull request #340 from grosser/grosser/dup
206
+
207
+ David Palm (9):
208
+ Cast CGI data to hash, as that's what the code really expects
209
+ Speed up notice generation by avoiding copying data and putting most common cases on top
210
+ Refactor #airbrake_current_user
211
+ Typo
212
+ Add comment explaining why we release connections
213
+ Comment out @wip scenarios to facilitate running parts of the suite
214
+ Add 4 to version sniffing code
215
+ PR feedback
216
+ Clone to ensure we do not mess with the provided data
217
+
218
+ Eero Raun (1):
219
+ Ignore RACK_ENV if it is empty (capistrano deploy), fixes #341.
220
+
221
+ Jonathan Worek (1):
222
+ Assumption of existence of :app role may not be valid
223
+
224
+ Marko Šiftar (3):
225
+ Merge pull request #354 from wojobucco/patch-1
226
+ Merge pull request #342 from oree/341
227
+ Merge pull request #382 from airbrake/fix/use-proper-capistrano-hook
228
+
229
+ Martin Tepper (1):
230
+ This should fix #369
231
+
232
+ grosser (3):
233
+ cleanup gemspec
234
+ fix having symbols in the environment blows up filter_parameters with blocks
235
+ If we cannot stringify then at least rescue the dup exceptions ...
236
+
237
+ halida (1):
238
+ fix rails request.fullpath behavior change in 4.1.6 -- no longer has leading /
239
+
240
+ shifi (16):
241
+ add test for filtering frozen objects
242
+ Merge branch 'Promptus-issue_369_frozen_array_issue'
243
+ update Appraisals file
244
+ Merge branch 'master' of https://github.com/halida/airbrake into halida-master
245
+ remove whitespaces
246
+ add test for airbrake_request_url
247
+ Merge branch 'halida-master'
248
+ update year in license and readme
249
+ use proper capistrano hook depending on capistrano version
250
+ set localhost IP to satisfy web console when testing in development
251
+ Merge branch 'patch-1' of https://github.com/seuros/airbrake into seuros-patch-1
252
+ fix syntax error in Sidekiq configuration
253
+ Merge branch 'seuros-patch-1'
254
+ Merge branch 'master' of https://github.com/developwithvelocity/airbrake into developwithvelocity-master
255
+ tests for backtrace default filters - gem paths
256
+ Merge branch 'developwithvelocity-master'
257
+
258
+
259
+ Version 4.1.0 - 2014-09-04 23:16:08 +0200
260
+ ===============================================================================
261
+
262
+ Benjamin Fleischer (1):
263
+ Add license to gemspec, is MIT
264
+
265
+ Chun-wei Kuo (1):
266
+ Add missing RAILS_ENV to the deploy notification task for Capistrano 3
267
+
268
+ David (1):
269
+ Merge pull request #306 from kiela/master
270
+
271
+ Giovanni Cappellotto (1):
272
+ Add support for Sidekiq > 3
273
+
274
+ Kamil Kieliszczyk (2):
275
+ Add ability to filter arrays
276
+ Add ability to filter arrays
277
+
278
+ Kelley Reynolds (1):
279
+ Ignore ActionController::UnknownFormat for Rails 4+ which is now handled by middleware
280
+
281
+ Marko Šiftar (11):
282
+ Revert "Add ability to filter arrays"
283
+ Merge pull request #307 from airbrake/revert-306-master
284
+ Merge pull request #305 from Domon/fix-capistrano3-task
285
+ Merge pull request #302 from gregory/remove_unused_controller
286
+ Merge pull request #310 from kiela/master
287
+ Merge pull request #271 from rykov/master
288
+ Merge pull request #275 from kreynolds/rails-4-unknown-format
289
+ Merge pull request #312 from bf4/add_license_to_gemspe
290
+ Merge pull request #304 from pitchtarget/sidekiq-support
291
+ Merge pull request #273 from meetme2meat/master
292
+ Merge pull request #300 from chute/master
293
+
294
+ Michael Rykov (1):
295
+ Keep passed exception if original_exception is nil
296
+
297
+ Petr Bela (1):
298
+ Add RACK_ENV to rake task for non-Rails apps
299
+
300
+ Sami Haahtinen (1):
301
+ Update capistrano v3 support
302
+
303
+ Viren Negi (1):
304
+ Added a comment to how to add specify environment when use with rack app
305
+
306
+ gregory (1):
307
+ remove unused controller
308
+
309
+ shifi (4):
310
+ update capistrano test to make sure we set RAILS_ENV when using rake task
311
+ Update ignored exceptions by default in Readme
312
+ fix conflicts in airbrake.cap
313
+ Merge branch 'ressu-capistrano3'
314
+
315
+
316
+ Version 4.0.0 - 2014-05-27 16:32:26 -0700
317
+ ===============================================================================
318
+
319
+ Ali Faiz (2):
320
+ Remove the Airbrake JS notifier for the major release.
321
+
322
+
323
+ Version 3.2.1 - 2014-05-27 15:58:24 -0700
324
+ ===============================================================================
325
+
326
+ Ali Faiz (3):
327
+ Revert "Merge pull request #297 from airbrake/remove-js-notifier"
328
+ Add deprecation warning when using .
329
+
330
+
331
+ Version 3.2.0 - 2014-05-23 17:37:35 -0700
332
+ ===============================================================================
333
+
334
+ Ali Faiz (4):
335
+ Remove JS notifier from templates and libraries
336
+ Cleanup references to JS notifier in tests
337
+ Merge pull request #297 from airbrake/remove-js-notifier
338
+
339
+
340
+ Version 3.1.17 - 2014-05-20 21:00:25 -0700
341
+ ===============================================================================
342
+
343
+ Alex Tomlins (1):
344
+ Only send notices if configured with api_key
345
+
346
+ Ali Faiz (22):
347
+ Add tasks specific for using appraisal to test different versions
348
+ Ensure that integration tests can use the same helpers as unit tests
349
+ Fix errors causing features to fail
350
+ Add sqlite3 for Rails 3.2 & 4.0 appraisal gems
351
+ Fix integrations with Rails 3.0 by locking sucker_punch to v1.0.2.
352
+ Update README.md
353
+ Merge pull request #285 from airbrake/adjust-ci-integration
354
+ Merge pull request #281 from jhawthorn/fix_actioncontroller_metal
355
+ Merge pull request #268 from alphagov/disable_unless_configured
356
+ Merge pull request #287 from itolmach/master
357
+ Add apikey to certain cucumber tests for changes for configured
358
+ Merge pull request #288 from airbrake/fix-apikey-related-tests
359
+ Merge pull request #277 from polleverywhere/rails3_filter_parameters
360
+ Merge pull request #262 from roqua/mv-regex-filters
361
+ Fix filtering checks in cucumber tests by checking for 'key=' instead of blind check
362
+ Make separate step for the cucumber test that checks for filtered keys
363
+ Merge pull request #289 from airbrake/fix-regex-filtering
364
+ Write verbose output when configuration prevents sending notices to Airbrake.
365
+ Merge pull request #294 from Nitrodist/ensure-rake-integration
366
+ Merge pull request #295 from airbrake/add-context-when-notice-not-sent
367
+ Merge pull request #293 from Nitrodist/use-minitest-4
368
+ Use tag date instead of trying to sort on tag name
369
+
370
+ Ivan Tolmachev (3):
371
+ added airbrakeman notifier ruby illustration
372
+ illustration added, take 2
373
+ Added Airbrakeman Notifier Illustration
374
+
375
+ John Hawthorn (1):
376
+ fix middleware for AC::Metal on rails 3.2
377
+
378
+ Version 3.1.16 - 2014-03-11 13:34:51 -0700
379
+ ===============================================================================
380
+
381
+ Joseph Silvashy (5):
382
+ Merge pull request #267 from nberger/fix-typo-in-rails3-tasks
383
+ Update license for Rackspace
384
+ Merge pull request #255 from viperdezigns/capistrano3
385
+ Bump to 3.1.14
386
+ Bump to 3.1.16
387
+
388
+ Mark Campbell (2):
389
+ Add minitest 4.x as an explicit dependency
390
+ Ensure rake integration is enabled when rescue_rake_exceptions is true
391
+
392
+ Marten Veldthuis (3):
393
+ Add support for regexp filters
394
+ Refactor cgi_data filtering to use `filter_key?`
395
+ Add a default rack env filter for variables matching "secret" or "password".
396
+
397
+ Mike Foley (2):
398
+ Add backwards compatibility for filter_parameters in Rails3
399
+ Add tests, minor refactor for Rails 3 functionality
400
+
401
+ Nicolas Berger (1):
402
+ Fix typo: Rack -> Rake
403
+
404
+ Richard Pernikoff (3):
405
+ execute instead of run
406
+ get full revision hash and send correct repo url
407
+ execute the rake task within the release_path instead of running cd release_path.
408
+
409
+ ViperDezigns (1):
410
+ Merge pull request #2 from tunespeak/capistrano3
411
+
412
+ spodlecki (7):
413
+ adding capistrano 3
414
+ attempting err fixes
415
+ release_path
416
+ making repo name a env var
417
+ adding airbrake escape user method
418
+ logger.info doesn't exist, seems Cap uses info() now
419
+ execute instead of run
420
+
421
+
422
+ Version 3.1.15 - 2014-01-03 14:37:38 +0100
423
+ ===============================================================================
424
+
425
+ Ahmad Sherif (1):
426
+ Don't serialize nil to an empty string
427
+
428
+ Damon Morgan (1):
429
+ Support sucker_punch for async processor
430
+
431
+ David Palm (1):
432
+ Give params_filter a setter so it can be *set* (not only appended to)
433
+
434
+ Hrvoje Šimić (14):
435
+ add Rails 4 to README.md
436
+ use Coveralls for code coverage
437
+ use Gemnasium for dependency monitoring
438
+ use Code Climate for code analysis
439
+ extract ParamsCleaner class
440
+ being more careful with javascript_notifier and non-public requests
441
+ Bumping to version 3.1.14
442
+ add Circle CI badge
443
+ rename :test task to 'test:unit'
444
+ use parallel gem installation on CI server
445
+ enable pry debugging in tests
446
+ add test for #251
447
+ enable filtering of sensitive Rack vars by default
448
+ start using MultiJson
449
+
450
+ Marko Šiftar (1):
451
+ fix deploy uri
452
+
453
+ Marten Veldthuis (1):
454
+ Airbrake rakefile is not compatible with Capistrano v3
455
+
456
+ Rodrigo Saito (1):
457
+ Handle error when variable sinatra.error is present
458
+
459
+
460
+ Version 3.1.14 - 2013-08-22 09:03:14 +0200
461
+ ===============================================================================
462
+
463
+ Hrvoje Šimić (5):
464
+ use Coveralls for code coverage
465
+ use Gemnasium for dependency monitoring
466
+ use Code Climate for code analysis
467
+ extract ParamsCleaner class
468
+ being more careful with javascript_notifier and non-public requests
469
+
470
+
471
+ Version 3.1.13 - 2013-08-20 09:39:41 +0200
472
+ ===============================================================================
473
+
474
+ Anton Minin (1):
475
+ Fix notice crash on empty cgi_data
476
+
477
+ Cedric Brancourt (2):
478
+ fixes #231 When no session in controller , airbrake_session_data returns {:session => "no session found"}
479
+ fixes airbrake/airbrake#233 duplicate cgi_data in Notice params
480
+
481
+ Chris Gunther (2):
482
+ Coerce user attributes to strings before checking that they are valid.
483
+ Reject invalid user attributes on assignment
484
+
485
+ Hongli Lai (Phusion) (1):
486
+ Add support for SSL in the command line tool.
487
+
488
+ Hrvoje Šimić (22):
489
+ better explanation of ignored environments and classes
490
+ add test for warnings about user attributes
491
+ remove unnecessary active record requirements
492
+ remove platform checks from nil logger initialization
493
+ update bourne dependency to fix test-running issues with ruby 2.0.0
494
+ test against ruby 2.0.0 on a CI server
495
+ remove mocha deprecation warnings
496
+ be more careful when reading sinatra environment name
497
+ wrap the js configuration in try-catch
498
+ ignore Gemfile.lock
499
+ lock json-schema to 1.0.12
500
+ add a scenario for ignoring rake exceptions [#223]
501
+ get rid of activesupport once and for all
502
+ fully support Rails 4.0
503
+ stop using appraisals for unit tests
504
+ fix formatting of airbrake_session_data
505
+ fix test for no session controller [#232]
506
+ include actionpack and activesupport in gemspec for tests
507
+ cleaning up tests
508
+ cleaning the codebase from warnings issued in ruby verbose mode
509
+ remove private writers and use instance variables to remove warnings
510
+ fixing changeling's version sorting
511
+
512
+ Jason Petersen (1):
513
+ Escape user name in Airbrake notify command
514
+
515
+ Konstantin Zub (1):
516
+ return environment_info unless environment_name
517
+
518
+ Kris Kemper (1):
519
+ Allow backtrace to be a String
520
+
521
+ Nathan Broadbent (1):
522
+ Use a separate (blank) array of ignored exceptions for Rake tasks
523
+
524
+ Subhash Chandra (1):
525
+ split javascript notifier into loader and configuration
526
+
527
+ Tony Spore (1):
528
+ use 'bundle exec' in capistrano task
529
+
530
+
531
+ Version 3.1.12 - 2013-04-29 18:48:40 +0200
532
+ ===============================================================================
533
+
534
+ Arvind Kunday (1):
535
+ Removing the .erb template handler
536
+
537
+ Hrvoje Šimić (8):
538
+ introducing null logger for fallback
539
+ add missing logger requirement
540
+ being careful with silencing of rake backtrace in the airbrake:test task
541
+ support for Rails 4.0
542
+ start using remote XSD file when verifying XML in tests
543
+ throw a warning for unsupported user attributes
544
+ updating outdated step definition for current user feature
545
+ speeding up the test by using 'runner' instead of 'server'
546
+
547
+ knapo (1):
548
+ Fix Airbrake::Sender#log to log messages when logger is not passed to options.
549
+
550
+
551
+ Version 3.1.11 - 2013-04-11 12:44:09 +0200
552
+ ===============================================================================
553
+
554
+ Eric Jensen (1):
555
+ add --scm-revision option to cli
556
+
557
+ Hrvoje Šimić (10):
558
+ update tested rails versions
559
+ reverting parts of 8768b1 that caused broken XML
560
+ update integration test
561
+ stop cluttering STDERR from rake airbrake:test
562
+ test coverage for Airbrake::Response
563
+ introduce configurable test mode
564
+ add the test mode option to the generator
565
+ update the test suite to use the test mode accordingly
566
+ stop using the 'progress' format when running features
567
+ fix defaults in integration test
568
+
569
+ Kenneth Kalmer (2):
570
+ Wrap the JS notifier configuration in a try..catch, since the notifier JS might have failed to load
571
+ Set a noop window.onerror in the event Airbrake is not available
572
+
573
+ Mark J. Titorenko (1):
574
+ Use env rather than @env when constructing fallback request data.
575
+
576
+ Marko Šiftar (1):
577
+ pretty formatting of notice details
578
+
579
+
580
+ Version 3.1.10 - 2013-04-03 15:41:13 +0200
581
+ ===============================================================================
582
+
583
+ Mark J. Titorenko (1):
584
+ Use env rather than @env when constructing fallback request data.
585
+
586
+
587
+ Version 3.1.9 - 2013-03-25 20:06:10 +0100
588
+ ===============================================================================
589
+
590
+ Bartosz Knapik (2):
591
+ .rbenv-version should be in gitignore
592
+ replace current_release with release_path
593
+
594
+ Chas Lemley (1):
595
+ correctly use config.user_attributes=
596
+
597
+ Hrvoje Šimić (6):
598
+ Update year in README
599
+ thread safety fix
600
+ add the secure option to the generator
601
+ fix the broken generator method call
602
+ be more careful with @template in javascript notifier
603
+ update tested rails versions
604
+
605
+ Marko Šiftar (2):
606
+ just collect id by default
607
+ update test suite (user details)
608
+
609
+ Robert Glaser (1):
610
+ log failed certicate verifications
611
+
612
+ Thilo-Alexander Ginkel (1):
613
+ Partial thread-safety fix
614
+
615
+ Thom Mahoney (1):
616
+ Airbake::Backtrace::Line#method => #method_name
617
+
618
+ jokerswanted (1):
619
+ Update README.md
620
+
621
+
622
+ Version 3.1.8 - 2013-02-05 16:29:43 +0100
623
+ ===============================================================================
624
+
625
+ Hrvoje Šimić (5):
626
+ rename SUPPORTED_RAILS_VERSIONS to TESTED_AGAINST
627
+ don't call id on nil - fixes #177
628
+ move our middleware right after exception middleware (#178)
629
+ implement tests for #178
630
+ be nice to older rails versions
631
+
632
+
633
+ Version 3.1.7 - 2013-01-28 13:35:10 +0100
634
+ ===============================================================================
635
+
636
+ Adam Duke (1):
637
+ fix an error if not using ActionController::Base
638
+
639
+ Ben Arent (2):
640
+ Update to Readme.md
641
+ 2013! woot.
642
+
643
+ Cory Kaufman-Schofield (1):
644
+ Use https for rake airbrake:test if force_ssl set to true (fixes #145)
645
+
646
+ Dmitry Medvinsky (1):
647
+ Fix notifier API URL as per Airbrake docs
648
+
649
+ George Ogata (1):
650
+ Ignore ActionController::UnknownHttpMethod by default.
651
+
652
+ Hrvoje Šimić (59):
653
+ move dependencies from Gemfile
654
+ CI test only for 3.0.0 for now
655
+ use appraisal
656
+ use aruba instead of home-grown terminal
657
+ fix *ALL* the tests!
658
+ remove bundler version
659
+ support all major rails versions for now
660
+ add bundler dependency
661
+ destroy rvmrc
662
+ update appraisals
663
+ add task for bundling bundler
664
+ remove gemfile locks
665
+ update appraisals
666
+ clean up README
667
+ logo is not needed in README
668
+ update the integration tests
669
+ update testing instructions
670
+ use CircleCI for continuous integration
671
+ update rake default task
672
+ mark heroku tests as wip for now
673
+ Clean up the rake task
674
+ stop cluttering STDOUT with trace of rake tasks
675
+ update supported rails versions
676
+ send framework info
677
+ use specific version of builder
678
+ update appraisals
679
+ revert "use specific version of builder"
680
+ remove hard dependency on girl_friday
681
+ update thoughtbot logo
682
+ update test suite to newer Rails versions
683
+ unfreezing version
684
+ More description about development environments
685
+ make sure we don't set env["airbrake.error_id"] for async notices
686
+ stop extending Object, use ActiveSupport instead
687
+ blank? instead of nil? || empty?
688
+ move XSD schema to resources
689
+ enable sending to new JSON API (#163)
690
+ define headers in Sender
691
+ ignore gemfile.locks
692
+ make sending to new JSON API disabled by default (#163)
693
+ don't use named groups in regexes, they are ruby 1.9 only (#162)
694
+ make sure we close the body even if exception occurs (closes #153)
695
+ Rails::Application::Configuration.force_ssl is undefined for Rails 3.0.x
696
+ update the test suite
697
+ update the default rake task
698
+ add the ability to pass a single feature to rake test task
699
+ tests support Rack::BodyProxy now
700
+ use rails 4 compatible routes in tests
701
+ remove unnecessary local variables
702
+ stop with monkeypatchig of Rails exception middleware
703
+ style fixes
704
+ require the new middleware in tests
705
+ better handler for adding Heroku deploy hooks (#167)
706
+ support multiple apps in Heroku deploy hooks task (#166)
707
+ read every available parameter for deploy hook from ENV (#168)
708
+ fallback to reading API key from ENV for deploy hooks
709
+ freshen up Heroku readme
710
+ set username and revision from Heroku variables (#168)
711
+ automatically get remote origin for deploy hooks (#168)
712
+
713
+ Joel Friedlaender (1):
714
+ configuring development environments
715
+
716
+ Jon Evans (1):
717
+ Use "get" instead of "match" for verify route
718
+
719
+ Josh Goebel (1):
720
+ clean_rack_request_data should also filter out "action_dispatch.secret_token" to prevent passing a Rails applications secret token
721
+
722
+ Kyle Wilkinson (1):
723
+ Fix broken gemspec with missing file names. MIT-LICENSE is now just called LICENSE and there is no TESTING.md
724
+
725
+ Manuel Meurer (1):
726
+ Use Airbrake.notify_or_ignore instead of just Airbrake.notify in notify_airbrake controller method
727
+
728
+ Marko Šiftar (3):
729
+ better Sinatra handling
730
+ fix typo
731
+ add framework info for Sinatra and Rack
732
+
733
+ Morgan Mikel McDaris (3):
734
+ fixed the heroku airbrake.rb generation
735
+ fixed the heroku airbrake.rb generation
736
+ made supported versions into a link
737
+
738
+ Pedro Nascimento (1):
739
+ Allow virtual attributes to be used in user data instead of just attributes.
740
+
741
+ Ryan Souza (1):
742
+ Prettier rake exception actions
743
+
744
+ cielavenir (1):
745
+ airbrake_javascript_notifier_options should be externalized
746
+
747
+
748
+ Version 3.1.6 - 2012-10-23 21:15:50 +0200
749
+ ===============================================================================
750
+
751
+ Hrvoje Šimić (9):
752
+ load api key from file and env if not provided for executable
753
+ get a list of your projects from command line
754
+ create projects from command line
755
+ fix cli client host
756
+ creating deploys from command line
757
+ don't override extension methods
758
+ update heroku plan in readme
759
+ another fix for heroku readme
760
+ don't pollute global namespace with blank?
761
+
762
+ Sam Umbach (1):
763
+ Send deploy notification on deploy:cold
764
+
765
+
766
+ Version 3.1.5 - 2012-10-05 17:32:23 +0200
767
+ ===============================================================================
768
+
769
+ Hrvoje Šimić (3):
770
+ make collected user attributes customizable
771
+ enable filtering of env vars for rake handler
772
+ add a simple executable
773
+
774
+ Morgan Mikel McDaris (1):
775
+ rake section added
776
+
777
+ Zachary Anker (2):
778
+ Add the ability to pass XML directly to send_to_airbrake
779
+ Remove active_support require since it's no longer necessary
780
+
781
+
782
+ Version 3.1.4 - 2012-09-11 04:31:51 +0200
783
+ ===============================================================================
784
+
785
+ Ben Arent (1):
786
+ Update to MIT license to reflect new ownership.
787
+
788
+ Hrvoje Šimić (4):
789
+ remove activesupport from runtime dependencies
790
+ use different logger for async notices
791
+ Merge pull request #118 from exviva/load_initializer_conditionally
792
+ symbolize user's keys
793
+
794
+ Olek Janiszewski (1):
795
+ Fallback to loading whole environment if initializer does not exist
796
+
797
+
798
+ Version 3.1.3 - 2012-09-05 18:58:27 +0200
799
+ ===============================================================================
800
+
801
+ Ben Arent (1):
802
+ Removed old mailing list.
803
+
804
+ Dylan Smith (1):
805
+ Use debug log level for verbose log messages.
806
+
807
+ Hrvoje Šimić (21):
808
+ add a note for testing against different frameworks
809
+ add a scenario to make sure 404s are ignored by default
810
+ failing scenario for #100
811
+ remove unnecessary bundler/setup requirement
812
+ move dependencies from Gemfile to gemspec
813
+ send info about the current logged in user
814
+ add async notifications
815
+ use async? instead of asnyc
816
+ add info about logger
817
+ prefer provided error message over original exception message
818
+ don't load entire environment for deploy task
819
+ safely handle render exception
820
+ remove unnecessary AirbrakeError
821
+ update XML schema
822
+ test fixes
823
+ clean whitespace
824
+ print the failed notice details
825
+ update supported rails versions
826
+ update scenarios
827
+ stop converting notice to xml before passing it to sender
828
+ remove logger from rack handler
829
+ update supported rails versions
830
+
831
+ John Pignata (1):
832
+ Cherry-pick Object#blank? extension
833
+
834
+ Joshua Wood (2):
835
+ rbenv support
836
+ Fixes outdated rake feature.
837
+
838
+ Matt Colyer (1):
839
+ Fix Airbrake so it actually reports data.
840
+
841
+ Morgan Mikel McDaris (1):
842
+ changed notify to notify_or_ignore
843
+
844
+ Sergii Boiko (2):
845
+ Refactor config.async to provide custom asynchronous delivery way
846
+ Simplify config.async to use only notice param
847
+
848
+ grosser (2):
849
+ fix exceeded available parameter key space breaks notification, fixes #99
850
+ make all tests runnable via ruby test_file.rb by loading the helper absolutely
851
+
852
+
853
+ Version 3.1.2 - 2012-06-23 02:27:01 +0200
854
+ ===============================================================================
855
+
856
+ Hrvoje Šimić (5):
857
+ routing errors ignored by default, for #92
858
+ use simplecov for test coverage
859
+ fix features for javascript
860
+ ignore user agents in rack, closes #61
861
+ error out if controller is undefined
862
+
863
+
864
+ Version 3.1.1 - 2012-06-06 20:35:00 -0700
865
+ ===============================================================================
866
+
867
+ Hrvoje Šimić (10):
868
+ minor fixes for Rakefile
869
+ change color of user informer tests
870
+ remove unnecessary shim
871
+ use shim instead of server response in tests
872
+ add a note about informing the user
873
+ fix typo in Rakefile
874
+ valid mock responses
875
+ add a failing scenario for #92
876
+ 404s reporting fixed, closes #92
877
+ update mocks for rack and sinatra
878
+
879
+ Jonathan Siegel (1):
880
+ Updated copyright/trademarks
881
+
882
+
883
+ Version 3.1.0 - 2012-05-28 02:25:09 +0200
884
+ ===============================================================================
885
+
886
+ Andre Arko (1):
887
+ stop using deprecated RAILS_ROOT
888
+
889
+ Benjamin Oakes (5):
890
+ notify_airbrake: filter params on Rails 3.1 (and maybe 3.0 also)
891
+ `params` is the (eventual) intent, but `hash` is clearer in context
892
+ One-liner, per @shime
893
+ Exception safety: worst case scenario, report the unfiltered hash
894
+ (m) Summarize the cases for future maintainers
895
+
896
+ Blake Watters (1):
897
+ Modify Rake handler to use Airbrake.notify_or_ignore rather than Airbrake.notify
898
+
899
+ Chris Griego (1):
900
+ Fix allowing airbrake_env/TO being different from rails_env/RAILS_ENV in deployment notifications.
901
+
902
+ David (10):
903
+ Merge pull request #33 from cgriego/patch-1
904
+ Merge pull request #51 from unnu/master
905
+ Merge pull request #56 from GateGuru/rake_handler_fix
906
+ Merge pull request #60 from DaPulse/master
907
+ Merge pull request #71 from sgonyea/patch-1
908
+ Merge pull request #75 from blackhacker/master
909
+ Merge pull request #81 from brainopia/patch-1
910
+ Merge pull request #82 from ghurrell/fix-readme-stubbing-example
911
+ Merge pull request #80 from yanowitz/patch-1
912
+ Merge pull request #86 from Playhem/master
913
+
914
+ David Palm (5):
915
+ Set VERIFY_PEER in rake task
916
+ More idiomatic inject
917
+ Not quite ready yet. Revert "Heroku references now are to Airbrake."
918
+ Adds `pry` to the gems available in test env
919
+ Works outside Rails
920
+
921
+ Eran Kampf (2):
922
+ Fix for apps behind a local proxy (EY App Master)
923
+ Changed if statement to one liner
924
+
925
+ Erik Ostrom (1):
926
+ Updated Heroku README to use Airbrake's new name.
927
+
928
+ Gary Rafferty (1):
929
+ Fix typo in airbrake.gemspec
930
+
931
+ Greg Hurrell (1):
932
+ Update stubbing example in README to match method signature
933
+
934
+ Hrvoje Šimić (47):
935
+ Merge pull request #59 from benjaminoakes/master
936
+ Merge pull request #62 from sleparc/master
937
+ Merge pull request #63 from benjaminoakes/master
938
+ improved readability
939
+ added new middleware catcher, fixes #73
940
+ Merge pull request #72 from 'jdel/lazyload'
941
+ Merge pull request #87 from gary-rafferty/master
942
+ Stop using include? to filter parameters
943
+ renaming so it's easier to understand
944
+ Merge pull request #90 from samoli/patch-1
945
+ Merge pull request #68 from cylence/master
946
+ read ENV variables from heroku config, fixes #89
947
+ check for airbrake_api_key on heroku
948
+ Merge pull request #91 from mikz/patch-1
949
+ ignore user agents in rails 3.0+
950
+ Merge branch 'master' of github.com:airbrake/airbrake
951
+ Merge pull request #79 from morgoth/fix-passing-api-key-as-param-to-rake-task
952
+ minor test fix
953
+ let's catch errors that happen early in the stack
954
+ remove deprecated step definitions
955
+ update url in a test
956
+ fix required files in gemspec
957
+ use top-level namespace
958
+ fix requirements
959
+ add rvmrc
960
+ update server response in scenarios
961
+ update heroku mock
962
+ remove unnecessary space
963
+ prefer the latest stable ruby version
964
+ update steps for newer rails versions
965
+ support rails 3.2.x with the test suite
966
+ update exception catcher
967
+ monkeypatch the old rails versions in tests
968
+ remove fake exception from env
969
+ add sanity to rescue_action_in_public_without_airbrake call
970
+ remove note for rails 1.2.x users, we don't support it
971
+ support the latest rails versions
972
+ add 3.0.11 and 3.0.12 to supported versions
973
+ update rack synopsis
974
+ log messages for sinatra and rack
975
+ make rack and sinatra tests green
976
+ update rack example in readme
977
+ Update ignored exceptions by default in readme
978
+ update explanation how we catch errors in readme
979
+ fix formatting
980
+ add all supported frameworks to rake test task
981
+ make metal tests green
982
+
983
+ Jason Yanowitz (2):
984
+ remove git dependency from generating gemspec file. causes errors when vendoring this gem in other projects
985
+ updated gemspec files specification based on feedback
986
+
987
+ Jean-Michel Garnier (1):
988
+ Update README.md
989
+
990
+ Jonathan Siegel (5):
991
+ Heroku references now are to Airbrake.
992
+ Merge branch 'master' of github.com:airbrake/airbrake
993
+ Added beta support fer cedar.
994
+ Added beta support fer cedar.
995
+ Migrated to new api.airbrake.io endpoint.
996
+
997
+ Jonathan del Strother (1):
998
+ Lazily-load actioncontroller
999
+
1000
+ Leonid Shevtsov (3):
1001
+ Feature: use a separate API key for Javascript notifications
1002
+ cleaned up configuration
1003
+ Merge branch 'master' of git://github.com/airbrake/airbrake
1004
+
1005
+ Michal Cichra (1):
1006
+ Use id to lookup error instead of error-id.
1007
+
1008
+ Nathan Broadbent (1):
1009
+ Added Mongoid::Errors::DocumentNotFound to default IGNORED exceptions (same as ActiveRecord::RecordNotFound, for Mongoid.)
1010
+
1011
+ Ravil Bayramgalin (1):
1012
+ Update lib/airbrake/user_informer.rb
1013
+
1014
+ Ryan L. Cross (1):
1015
+ Added unix style param for url in the deployhook rake task.
1016
+
1017
+ Sam Oliver (1):
1018
+ Update hoptoad=>aibrake in rake task example
1019
+
1020
+ Scott Gonyea (1):
1021
+ Document proxy parameters; namely, that the proxy_host does not require "http://" as a prefix. Ideally, config.proxy= could be given a URI.
1022
+
1023
+ Simon Le Parc (1):
1024
+ Shouldn't test the native dup method
1025
+
1026
+ Stuart Chaney (1):
1027
+ Updating README gem instructions for Rails 2.3 with bundler.
1028
+
1029
+ Wojciech Wnętrzak (1):
1030
+ fixed passing api_key param to Airbrake deploy task
1031
+
1032
+ blackhacker (1):
1033
+ more detailed error message
1034
+
1035
+ unnu (1):
1036
+ Fixed TaggedLogging bug in Rails 3 rake test task
1037
+
1038
+ usiegj00 (3):
1039
+ Merge pull request #46 from eostrom/master
1040
+ Merge pull request #47 from 21croissants/master
1041
+ Merge pull request #38 from ndbroadbent/ignore_mongoid_notfound
1042
+
1043
+
1044
+ Version 3.0.9 - Thu Dec 15 23:51:38 +0100 2011
1045
+ ===============================================================================
1046
+
1047
+ David Palm (2):
1048
+ Merge pull request #45 from spagalloco/patch-1
1049
+ Pulls in ideas from https://github.com/kidsalsa/airbrake/commit/54982ba83bd6c577a0835b9ba5936c690029244c#L0R2 BUT
1050
+ - moves #ca_bundle_path to Airbrake::Configuration
1051
+ - moves #local_cert_path to Airbrake::Configuration
1052
+ - adds #use_system_ssl_cert_chain? alias to Airbrake::Configuration
1053
+ - makes Airbrake.configure return the created sender (in addition to yielding)
1054
+ - stops airbrake deploy tasks duplicate code form the configuration class
1055
+ - cleanup unused expectations from tests
1056
+
1057
+ Version 3.0.8 - Sun Dec 11 22:14:18 +0100 2011
1058
+ ===============================================================================
1059
+
1060
+ David Palm (1):
1061
+ Use OpenSSL::X509::DEFAULT_CERT_FILE to connect only if configured to by setting use_system_ssl_cert_chain to true
1062
+
1063
+ Version 3.0.7 - Sun Dec 11 21:04:08 +0100 2011
1064
+ ===============================================================================
1065
+
1066
+ David Palm (1):
1067
+ 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
1068
+
1069
+ Version 3.0.6 - Mon Dec 05 16:41:39 +0100 2011
1070
+ ===============================================================================
1071
+
1072
+ Benjamin Quorning (1):
1073
+ README updated to reflect name change from Hoptoad to Airbrake
1074
+
1075
+ Darcy Laycock (1):
1076
+ Explicitly scope calls to Rails.env and such to prevent loading issues when manually requiring parts of airbrake.
1077
+
1078
+ David (1):
1079
+ Merge pull request #42 from Playhem/fix-issue-34-cherrypicked
1080
+
1081
+ David Czarnecki (6):
1082
+ Using the Capistrano logger for great justice
1083
+ Using the Capistrano logger for great justice
1084
+ Re-organized capistrano task to allow for testing
1085
+ Fixing conflict
1086
+ Fixed the name of the capistrano task in the test to be correct. Updated the cucumber feature to look for the right task name.
1087
+ Change airbrake:notify to airbrake:deploy to be more clear that it is a deploy notification
1088
+
1089
+ David Palm (8):
1090
+ Removes support for Rails v2.3.12
1091
+ Documentation glitch
1092
+ Documenting workaround for issue #39
1093
+ Using guard&spork for testing
1094
+ Adding Guardfile
1095
+ Moves #assert_logged to test helper
1096
+ Moves http setup code to own method
1097
+ Not sporking yet
1098
+
1099
+ Florent Guilleux (1):
1100
+ Change Hoptoad references to Airbrake.
1101
+
1102
+ Gabe Berke-Williams (1):
1103
+ Merge pull request #10 from Florent2/patch-1
1104
+
1105
+ Harold Giménez (10):
1106
+ Heroku is still using HOPTOAD_API_KEY, so expect that for now
1107
+ Bumping to version 3.0
1108
+ Bumping to version 3.0.1
1109
+ Fix bug in defining the Airbrake javascript object
1110
+ Bumping to version 3.0.2
1111
+ Ensure a valid configuration object is always available on Airbrake.configuration
1112
+ Merge remote-tracking branch 'agoragames/master'
1113
+ Bumping to version 3.0.3
1114
+ Minor fix to Gemfile instructions on README
1115
+ Bumping to version 3.0.4
1116
+
1117
+ Jonathan Siegel (16):
1118
+ Removed class-level caching per jkraemer: Hi,
1119
+ Integrated pulls and updated tests.
1120
+ Integrated: https://github.com/thoughtbot/hoptoad_notifier/pull/37
1121
+ Corrected test.
1122
+ Consistent operation.
1123
+ Consistent callout during test generation.
1124
+ Fixed typo.
1125
+ Refreshed supported.
1126
+ Resolved: http://help.airbrakeapp.com/discussions/questions/587-airbrake_javascript_notifier-is-escaped-rails-31-haml
1127
+ Now running airbrake deploy notifications on the REMOTE machine.
1128
+ Added first rev of PEER cert resolution.
1129
+ Bumped 3.0.5
1130
+ Updated README, fixed JS rescue template missed HT reference.
1131
+ Crosslinked docs...
1132
+ Fixes for tests.
1133
+ Bumping to version 3.0.5
1134
+
1135
+ Leonid Shevtsov (3):
1136
+ fixed rake handler failing when exception happens before Airbrake has been configured (for example, when running an unknown Rake task)
1137
+ fix issue #34 'undefined method to_backtrace for Hash'
1138
+ test case for issue #34
1139
+
1140
+ Matt Fawcett (1):
1141
+ Call #close on the old body after building the new body to prevent thread joining errors
1142
+
1143
+ Roman Shterenzon (1):
1144
+ Use either Airbrake or Hoptoad object.
1145
+
1146
+ Stuart Chaney (1):
1147
+ point towards airbrake.io
1148
+
1149
+ Thomas Jachmann (1):
1150
+ handles exceptions with #to_hash properly
1151
+
1152
+ usiegj00 (4):
1153
+ Merge pull request #21 from mattfawcett/master
1154
+ Merge pull request #12 from leonid-shevtsov/master
1155
+ Merge pull request #14 from thomasjachmann/master
1156
+ Merge pull request #28 from Sutto/patch-1
1157
+
1158
+
1159
+ Version 3.0.5 - 2011-11-08 23:02:07 -0800
1160
+ ===============================================================================
1161
+
1162
+ Benjamin Quorning (1):
1163
+ README updated to reflect name change from Hoptoad to Airbrake
1164
+
1165
+ Darcy Laycock (1):
1166
+ Explicitly scope calls to Rails.env and such to prevent loading issues when manually requiring parts of airbrake.
1167
+
1168
+ David Czarnecki (6):
1169
+ Using the Capistrano logger for great justice
1170
+ Using the Capistrano logger for great justice
1171
+ Re-organized capistrano task to allow for testing
1172
+ Fixing conflict
1173
+ Fixed the name of the capistrano task in the test to be correct. Updated the cucumber feature to look for the right task name.
1174
+ Change airbrake:notify to airbrake:deploy to be more clear that it is a deploy notification
1175
+
1176
+ Florent Guilleux (1):
1177
+ Change Hoptoad references to Airbrake.
1178
+
1179
+ Gabe Berke-Williams (1):
1180
+ Merge pull request #10 from Florent2/patch-1
1181
+
1182
+ Harold Giménez (10):
1183
+ Heroku is still using HOPTOAD_API_KEY, so expect that for now
1184
+ Bumping to version 3.0
1185
+ Bumping to version 3.0.1
1186
+ Fix bug in defining the Airbrake javascript object
1187
+ Bumping to version 3.0.2
1188
+ Ensure a valid configuration object is always available on Airbrake.configuration
1189
+ Merge remote-tracking branch 'agoragames/master'
1190
+ Bumping to version 3.0.3
1191
+ Minor fix to Gemfile instructions on README
1192
+ Bumping to version 3.0.4
1193
+
1194
+ Jonathan Siegel (15):
1195
+ Removed class-level caching per jkraemer: Hi,
1196
+ Integrated pulls and updated tests.
1197
+ Integrated: https://github.com/thoughtbot/hoptoad_notifier/pull/37
1198
+ Corrected test.
1199
+ Consistent operation.
1200
+ Consistent callout during test generation.
1201
+ Fixed typo.
1202
+ Refreshed supported.
1203
+ Resolved: http://help.airbrakeapp.com/discussions/questions/587-airbrake_javascript_notifier-is-escaped-rails-31-haml
1204
+ Now running airbrake deploy notifications on the REMOTE machine.
1205
+ Added first rev of PEER cert resolution.
1206
+ Bumped 3.0.5
1207
+ Updated README, fixed JS rescue template missed HT reference.
1208
+ Crosslinked docs...
1209
+ Fixes for tests.
1210
+
1211
+ Leonid Shevtsov (1):
1212
+ fixed rake handler failing when exception happens before Airbrake has been configured (for example, when running an unknown Rake task)
1213
+
1214
+ Matt Fawcett (1):
1215
+ Call #close on the old body after building the new body to prevent thread joining errors
1216
+
1217
+ Roman Shterenzon (1):
1218
+ Use either Airbrake or Hoptoad object.
1219
+
1220
+ Stuart Chaney (1):
1221
+ point towards airbrake.io
1222
+
1223
+ Thomas Jachmann (1):
1224
+ handles exceptions with #to_hash properly
1225
+
1226
+ usiegj00 (4):
1227
+ Merge pull request #21 from mattfawcett/master
1228
+ Merge pull request #12 from leonid-shevtsov/master
1229
+ Merge pull request #14 from thomasjachmann/master
1230
+ Merge pull request #28 from Sutto/patch-1
1231
+
1232
+
1233
+
1234
+ Version 3.0.4 - Mon Sep 12 08:25:04 -0400 2011
1235
+ ===============================================================================
1236
+ David Czarnecki(1):
1237
+ Change deploy task back to airbrake:deploy
1238
+ Harold Gimenez(1):
1239
+ README updates
1240
+
1241
+ Version 3.0.3 - Sat Sep 03 13:18:26 -0400 2011
1242
+ ===============================================================================
1243
+ David Czarnecki(1):
1244
+ Use capistrano's logger, improve tests around capistrano deploy.
1245
+ Florent Guilleux(1):
1246
+ README updates
1247
+
1248
+ Version 3.0.2 - Mon Aug 29 10:32:04 -0400 2011
1249
+ ===============================================================================
1250
+ Harold Gimenez(1)
1251
+ Fix bug on the Hoptoad to Airbrake fallback code on the javascript notifier.
1252
+
1253
+ Version 3.0.1 - Mon Aug 29 08:37:24 -0400 2011
1254
+ ===============================================================================
1255
+ Roman Shterenzon(1):
1256
+ Use either Airbrake or Hoptoad object on javascript notifier
1257
+
1258
+ Version 3.0 - Fri Aug 26 08:55:47 -0400 2011
1259
+ ===============================================================================
1260
+ Harold Gimenez:
1261
+ Continue to use HOPTOAD_API_KEY for heroku users' API key env variable
1262
+
1263
+ Version 3.0.rc2 - Wed Aug 24 15:03:46 -0400 2011
1264
+ ===============================================================================
1265
+
1266
+ Harold Gimenez:
1267
+ Revert broken commit around exceptions that respond to #to_hash
1268
+ Support latest versions of Rails.
1269
+
1270
+
1271
+ Version 3.0.rc1 - Fri Aug 19 08:51:53 -0400 2011
1272
+ ===============================================================================
1273
+
1274
+ Jonathan Yurek and Harold Gimenez
1275
+ Rename to Airbrake
1276
+
1277
+ Version 2.4.9 - Wed Mar 30 09:04:53 -0400 2011
1278
+ ===============================================================================
1279
+
1280
+ Jonathan Yurek(1):
1281
+ The User Informer should adhere to only the Rack spec.
1282
+
1283
+ Version 2.4.8 - Mon Mar 21 11:11:16 -0400 2011
1284
+ ===============================================================================
1285
+
1286
+ Jonathan Yurek(1):
1287
+ Prevent infinite loops from recursive data structures.
1288
+
1289
+ Version 2.4.7 - Thu Mar 10 16:21:31 -0500 2011
1290
+ ===============================================================================
1291
+
1292
+ Jonathan Yurek(1):
1293
+ Rails generator requires './config/boot' for 1.9.2 compatibility.
1294
+
1295
+ Version 2.4.6 - Tue Feb 15 15:51:17 -0500 2011
1296
+ ===============================================================================
1297
+
1298
+ Jonathan Yurek(1):
1299
+ Modify the error page's body in-place.
1300
+
1301
+ Version 2.4.5 - Wed Feb 02 13:24:29 -0500 2011
1302
+ ===============================================================================
1303
+
1304
+ Jonathan Yurek (1):
1305
+ Don't require Rack::Lock's presence in the middleware for UserInformer
1306
+
1307
+
1308
+ Version 2.4.4 - Fri Jan 28 13:50:10 -0500 2011
1309
+ ===============================================================================
1310
+
1311
+ Matt Jankowski (1):
1312
+ Change the javascript notifier from a config option to a helper method
1313
+
1314
+ Jonathan Yurek (1):
1315
+ Show the javascript notifier prevents XSS attempts from request.url
1316
+
1317
+ Version 2.4.3 - Wed Jan 26 11:35:15 -0500 2011
1318
+ ===============================================================================
1319
+
1320
+ Jon Yurek (1):
1321
+ Allow the application to present the Hoptoad error number to the user
1322
+
1323
+
1324
+ Version 2.4.2 - Sun Jan 09 09:37:31 -0500 2011
1325
+ ===============================================================================
1326
+
1327
+ Matt Jankowski (1):
1328
+ fix issue where the gsub to replace the html head with javascript was removing the head element entirely
1329
+
1330
+
1331
+ Version 2.4.1 - Sat Jan 08 12:17:15 -0500 2011
1332
+ ===============================================================================
1333
+
1334
+ Matt Jankowski (1):
1335
+ restore method which may have been accidentally removed?
1336
+
1337
+
1338
+ Version 2.4.0 - Thu Jan 06 15:03:58 -0500 2011
1339
+ ===============================================================================
1340
+
1341
+ Jason Morrison (1):
1342
+ Remove official support for very old Rails version going forward
1343
+
1344
+ Version 2.3.14 - Wed Jan 05 14:06:12 -0500 2011
1345
+ ===============================================================================
1346
+
1347
+ Jason Morrison (1):
1348
+ Fix 'require' path
1349
+
1350
+ Version 2.3.13 - Mon Jan 03 15:56:20 -0500 2011
1351
+ ===============================================================================
1352
+
1353
+ Dan Croak (1):
1354
+ including twiddle wakka in install instructions
1355
+
1356
+ Emma Lindsay (5):
1357
+ Sends more javascript information back to hoptaod
1358
+ Merge branch 'js_notifier_default_fields'
1359
+ Bumping to version 2.3.10
1360
+ Updated jferris-mocha to bourne
1361
+ Update readme to show quotes around error names in ignores
1362
+
1363
+ Jason Morrison (8):
1364
+ wip: Supply default url, component, action for JS notifier
1365
+ gracefully fall back to require 'activesupport' if require 'active_support' fails
1366
+ Add non-capistrano deploy instructions
1367
+ Add instructions for heroku gem to Heroku addon README
1368
+ Add AbstractController::ActionNotFound to default ignore list
1369
+ Bumping to version 2.3.12
1370
+ Bugfix: JS Notifier will now insert itself even when <head> tag has attributes
1371
+ Add Heroku deploy notification
1372
+
1373
+ Jon Yurek (11):
1374
+ Require bourne, run right cucumber task
1375
+ Get the API key from Heroku
1376
+ Bumped version: 2.3.11
1377
+ Getting green cucumber stories
1378
+ Fakes out the heroku command for cucumber.
1379
+ Mount the metal endpoint in Rails 3 tests.
1380
+ Metal test mounts at /metal
1381
+ Supported versions: 2.3.9, 2.3.10, and 3.0.1
1382
+ Return non-zero on cucumber failure.
1383
+ Controller info for older Rails-es is different.
1384
+ Remove Rails 2.0.2 from official support. Added 3.0.2+3
1385
+
1386
+ Trevor Turk (1):
1387
+ Fix default ignores in the README
1388
+
1389
+
1390
+ Version 2.3.12 - Wed Nov 03 13:53:18 -0400 2010
1391
+ ===============================================================================
1392
+
1393
+ In general: Update gems, improve testing, improve documentation, improve
1394
+ javascript notifier.
1395
+
1396
+ Emma Lindsay (4):
1397
+ Sends more javascript information back to hoptaod
1398
+ Merge branch 'js_notifier_default_fields'
1399
+ Bumping to version 2.3.10
1400
+ Updated jferris-mocha to bourne
1401
+
1402
+ Jason Morrison (5):
1403
+ wip: Supply default url, component, action for JS notifier
1404
+ gracefully fall back to require 'activesupport' if require 'active_support' fails
1405
+ Add non-capistrano deploy instructions
1406
+ Add instructions for heroku gem to Heroku addon README
1407
+ Add AbstractController::ActionNotFound to default ignore list
1408
+
1409
+ Jon Yurek (9):
1410
+ Require bourne, run right cucumber task
1411
+ Get the API key from Heroku
1412
+ Bumped version: 2.3.11
1413
+ Getting green cucumber stories
1414
+ Fakes out the heroku command for cucumber.
1415
+ Mount the metal endpoint in Rails 3 tests.
1416
+ Metal test mounts at /metal
1417
+ Supported versions: 2.3.9, 2.3.10, and 3.0.1
1418
+ Return non-zero on cucumber failure.
1419
+
1420
+
1421
+ Version 2.3.10 - Mon Oct 18 17:07:56 -0400 2010
1422
+ ===============================================================================
1423
+
1424
+ Emma Lindsay (2):
1425
+ Sends more javascript information back to hoptaod
1426
+ Merge branch 'js_notifier_default_fields'
1427
+
1428
+ Jason Morrison (2):
1429
+ wip: Supply default url, component, action for JS notifier
1430
+ gracefully fall back to require 'activesupport' if require 'active_support' fails
1431
+
1432
+
1433
+ Version 2.3.9 - 2010-10-18
1434
+ ===============================================================================
1435
+
1436
+ This patch release contains a handful of bugfixes, and ensures:
1437
+ If hoptoadapp.com is completely unreachable by HTTP, your app is not affected.
1438
+ Controller method #notify_hoptoad is available in Rails 3. Thanks contributor Kyle Crum!
1439
+
1440
+ Chad Pytel (1):
1441
+ also handle Errno::ECONNREFUSED and other http errors
1442
+
1443
+ Jason Morrison (4):
1444
+ Add gem versions to test suite
1445
+ Revert "Revert "attempt to debug mail sending on staging""
1446
+ Adding Heroku notifier readme
1447
+ gracefully fall back to require 'activesupport' if require 'active_support' fails
1448
+
1449
+ Jon Yurek (2):
1450
+ Bumping version to 2.3.8
1451
+ Adds builder to the gemspec
1452
+
1453
+ Kyle Crum (3):
1454
+ notify_hoptoad now works in rails 3 controllers
1455
+ more sane way of testing for rails 3 controller methods
1456
+ added a scenario for using the notify_hoptoad method within a controller
1457
+
1458
+
1459
+ Version 2.3.7 - 2010-09-15
1460
+ ===============================================================================
1461
+
1462
+ Jason Morrison (5):
1463
+ Add ./ prefix to require for 1.9.2
1464
+ More helpful message for testing without ENV['RAILS_VERSION']
1465
+ Support Rails 3.0.0, not 3.0.0.rc
1466
+ This wasn't actually a fix (it regressed tests): Revert "Fix modifying params_filters"
1467
+ Correct the #also_use_rack_params_filters method
1468
+
1469
+ Joshua Clayton (1):
1470
+ Fix modifying params_filters
1471
+
1472
+ Nick Quaranto (2):
1473
+ s/RSpec/Spec for matchers
1474
+ use Sinatra::Default instead of Sinatra::Base
1475
+
1476
+
1477
+ Version 2.3.6 - 2010-08-30
1478
+ ===============================================================================
1479
+
1480
+ Daniel Barron (1):
1481
+ Initializer configuration overrides Railtie configuration if set
1482
+
1483
+ Joshua Clayton (1):
1484
+ Remove rack.request.form_vars
1485
+
1486
+ Tristan Dunn (1):
1487
+ Move Rails JS scenarios into separate feature and correctly support HTTPS when secure is enabled on the notifier.
1488
+
1489
+
1490
+ Version 2.3.5 - 2010-08-13
1491
+ ===============================================================================
1492
+
1493
+ Alexey Palazhchenko (1):
1494
+ Actually call #to_hash.
1495
+
1496
+ Joshua Clayton (1):
1497
+ Trace hoptoad:test task when running generator for anything before Rails3
1498
+
1499
+
1500
+ Version 2.3.4 - 2010-08-10
1501
+ ===============================================================================
1502
+
1503
+ Tristan Dunn (1):
1504
+ Only include the JS notifier in public environments.
1505
+
1506
+
1507
+ Version 2.3.3 - 2010-08-04
1508
+ ===============================================================================
1509
+
1510
+ Tristan Dunn (1):
1511
+ Initial injection of JS notifier.
1512
+
1513
+
1514
+ Version 2.3.2 - 2010-07-06
1515
+ ===============================================================================
1516
+
1517
+ Josh Clayton(1):
1518
+ Handle instances when Rack's action_dispach.parameter_filter is nil
1519
+
1520
+
1521
+ Version 2.3.1 - 2010-07-02
1522
+ ===============================================================================
1523
+
1524
+ Jason Morrison (2):
1525
+ Use the Rails 3 params filters when available
1526
+ Filter session hash using Hoptoad config.params_filters, in addition to params
1527
+
1528
+
1529
+ Version 2.3.0 - 2010-06-24
1530
+ ===============================================================================
1531
+
1532
+ Jason Morrison (5):
1533
+ Add integration test for rails 3.0.0.beta4
1534
+ Added feature: Support the Heroku addon in the generator
1535
+ Add --heroku flag to generator to support ENV['HOPTOAD_API_KEY']
1536
+ Reflect a copy change in rails.feature for --heroku generator flag
1537
+ Support the proxy configuration options when notifying Hoptoad of a deploy (hat tip @gudleik)
1538
+
1539
+
1540
+ Version 2.2.6 - 2010-06-02
1541
+ ===============================================================================
1542
+
1543
+ Jason Morrison (1):
1544
+ For Rails 3, just use the Rack middleware instead of specifying a location to insert_after
1545
+
1546
+
1547
+ Version 2.2.5 - 2010-06-02
1548
+ ===============================================================================
1549
+
1550
+ Jason Morrison (1):
1551
+ Add documentation for Rails 3.x installation
1552
+
1553
+
1554
+ Version 2.2.4 - 2010-06-02
1555
+ ===============================================================================
1556
+
1557
+ Jason Morrison (1):
1558
+ Add a note to README about removing the explicit Catcher #include in ApplicationController
1559
+
1560
+
1561
+ Version 2.2.3 - 2010-06-02
1562
+ ===============================================================================
1563
+
1564
+ Summary: Fixed a variety of issues for Rails 3.0.0.beta3,
1565
+ Fixed a bug when using Vlad to deploy instead of Capistrano
1566
+ Give better error output when gem is not installed
1567
+
1568
+ Chad Pytel (2):
1569
+ revise gem unpack instructions step
1570
+ Merge branch 'master' of github.com:thoughtbot/hoptoad_notifier
1571
+
1572
+ Dan Lawless (1):
1573
+ don't append capistrano details to config.deploy.rb when target app uses Vlad
1574
+
1575
+ Jason Morrison (7):
1576
+ LH-556 Clarify sending ENV environment variables
1577
+ Starting to add features for Rails 3
1578
+ Make rails rake tasks depend on gem-making tasks
1579
+ Start to get Rails 3 features to pass
1580
+ require fileutils to reflect rubygems 1.3.6 change
1581
+ Support ENV['CUCUMBER_FORMAT'] in rails cucumber tasks for testing
1582
+ Fix the initializer syntax in the Rails 3 Railtie
1583
+
1584
+ Joe Ferris (11):
1585
+ Got the generator running and a request dispatched to the test endpoint
1586
+ Fixed logging in hoptoad:test rake task
1587
+ Separated Rails 2 and 3 entry
1588
+ Support bundler
1589
+ Rails 3 generator works with an existing api key
1590
+ Extract request info from rack env
1591
+ Detect presence of the plugin
1592
+ Added a capistrano hook for Rails 3
1593
+ Fixed rack/sinatra being broken without active_support
1594
+ Fixes for earlier versions of Rails
1595
+ Fixed Rails 3 generator not to append cap hooks for vlad deploys
1596
+
1597
+ Josh Kalderimis (7):
1598
+ updated railtie to work with the new rails 3 middleware api
1599
+ railtie_name is deprecated
1600
+ updated app_middleware call to use string version as to make sure constant is loaded
1601
+ moved generator using the new rails 3 convention
1602
+ update path to template for Rails 3 generator
1603
+ correction to referencing of the rails application in rails3_tasks
1604
+ add environment_name and project_root back to rails 3 railtie
1605
+
1606
+ Joshua Nichols (1):
1607
+ Handle gem not being installed more gracefully.
1608
+
1609
+
1610
+ Version 2.2.2 - 2010-03-10
1611
+ ===============================================================================
1612
+
1613
+ Chad Pytel (1):
1614
+ document proxy support
1615
+
1616
+ Joe Ferris (8):
1617
+ Added upgrade instructions to the README
1618
+ Give a clearer error message when generating a Rails app fails
1619
+ Fail loudly when a gem can't be vendored
1620
+ Debugging rubygems issues
1621
+ Explicitly specify the gem paths
1622
+ Less noisy
1623
+ Restore gem path after vendoring
1624
+ Fixed a typo
1625
+
1626
+ Jon Yurek (1):
1627
+ Added notice about removing hoptoad rake tasks to upgrade gem
1628
+
1629
+ Mike Burns (1):
1630
+ Remove stray file with notes in it
1631
+
1632
+
1633
+ Version 2.2.1 - 2010-03-10
1634
+ ===============================================================================
1635
+
1636
+ Jason Morrison (3):
1637
+ LH-629 Ensure notifier is not considered a framework gem
1638
+ Removing things-the-generator-must-do file
1639
+ Add rake cucumber:wip:rails* tasks for work-in-progress features
1640
+
1641
+
1642
+ Version 2.2.0 - 2010-02-18
1643
+ ===============================================================================
1644
+
1645
+ Bumping the version from 2.1.4 to 2.2.0 since adding Rack support warrants a minor version.
1646
+
1647
+ Jason Morrison (1):
1648
+ Stringify array elements when making assertions about Notice XML for 1.9 compatibility
1649
+
1650
+
1651
+ Version 2.1.4 - 2010-02-12
1652
+ ===============================================================================
1653
+
1654
+ Chad Pytel (2):
1655
+ add more info to README for 1.2.6
1656
+ fix gem unpack line for 1.2.6
1657
+
1658
+ Jason Morrison (2):
1659
+ Adding additional instructions for Rails 1.2.6
1660
+ Typesetting in README.rdoc
1661
+
1662
+ Joe Ferris (11):
1663
+ Separating Rails functionality out more
1664
+ Initial Rack middleware
1665
+ Extract request info from rack env
1666
+ Added integration tests for rescuing
1667
+ Fixed reporting of Rails version
1668
+ Small refactoring
1669
+ Automatically add Rack middleware for Rails apps that support it (catches exceptions from Metal)
1670
+ Added an integration test and docs for rack apps
1671
+ Added integration/readme coverage of Sinatra apps
1672
+ Added docs to HoptoadNotifier::Rack
1673
+ Require rack in tests for older versions of Rails; use active_support instead of activesupport
1674
+
1675
+ Nick Quaranto (3):
1676
+ Fixing the capistrano hook bit in the readme
1677
+ Adding changeling:minor and changeling:patch to automate notifier releases
1678
+ Adding rake changeling:push
1679
+
1680
+
1681
+
1682
+
1683
+
1684
+
1685
+
1686
+
1687
+
1688
+
1689
+
1690
+
1691
+
1692
+
1693
+
1694
+
1695
+
1696
+
1697
+
1698
+
1699
+
1700
+
1701
+
1702
+
1703
+
1704
+
1705
+
1706
+
1707
+
1708
+
1709
+
1710
+
1711
+
1712
+
1713
+
1714
+
1715
+
1716
+