projectlocker_errata 0.0.1

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