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