logster 2.1.2 → 2.2.0

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 (127) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +21 -19
  3. data/.rubocop.yml +1 -1
  4. data/.travis.yml +16 -16
  5. data/CHANGELOG.md +224 -172
  6. data/Gemfile +4 -4
  7. data/Guardfile +8 -8
  8. data/LICENSE.txt +22 -22
  9. data/README.md +99 -99
  10. data/Rakefile +21 -21
  11. data/assets/fonts/FontAwesome.otf +0 -0
  12. data/assets/fonts/fontawesome-webfont.eot +0 -0
  13. data/assets/fonts/fontawesome-webfont.svg +639 -639
  14. data/assets/fonts/fontawesome-webfont.ttf +0 -0
  15. data/assets/fonts/fontawesome-webfont.woff +0 -0
  16. data/assets/fonts/fontawesome-webfont.woff2 +0 -0
  17. data/assets/images/Icon-144_rounded.png +0 -0
  18. data/assets/images/Icon-144_square.png +0 -0
  19. data/assets/images/icon_144x144.png +0 -0
  20. data/assets/images/icon_64x64.png +0 -0
  21. data/assets/javascript/client-app.js +115 -106
  22. data/assets/stylesheets/client-app.css +1 -1
  23. data/build_client_app.sh +0 -0
  24. data/client-app/.editorconfig +20 -20
  25. data/client-app/.ember-cli +9 -9
  26. data/client-app/.eslintignore +19 -19
  27. data/client-app/.eslintrc.js +46 -46
  28. data/client-app/.gitignore +23 -23
  29. data/client-app/.travis.yml +27 -27
  30. data/client-app/.watchmanconfig +3 -3
  31. data/client-app/README.md +57 -57
  32. data/client-app/app/app.js +0 -0
  33. data/client-app/app/components/actions-menu.js +43 -43
  34. data/client-app/app/components/env-tab.js +80 -80
  35. data/client-app/app/components/message-info.js +0 -0
  36. data/client-app/app/components/message-row.js +0 -0
  37. data/client-app/app/components/panel-resizer.js +0 -0
  38. data/client-app/app/components/patterns-list.js +109 -0
  39. data/client-app/app/components/tab-contents.js +27 -27
  40. data/client-app/app/components/tabbed-section.js +0 -0
  41. data/client-app/app/components/time-formatter.js +0 -0
  42. data/client-app/app/components/update-time.js +0 -0
  43. data/client-app/app/controllers/index.js +22 -6
  44. data/client-app/app/controllers/show.js +0 -0
  45. data/client-app/app/helpers/logster-url.js +12 -0
  46. data/client-app/app/helpers/or.js +7 -0
  47. data/client-app/app/index.html +30 -29
  48. data/client-app/app/initializers/app-init.js +67 -67
  49. data/client-app/app/lib/preload.js +20 -20
  50. data/client-app/app/lib/utilities.js +150 -149
  51. data/client-app/app/models/message-collection.js +0 -0
  52. data/client-app/app/models/message.js +100 -100
  53. data/client-app/app/models/pattern-item.js +25 -0
  54. data/client-app/app/resolver.js +0 -0
  55. data/client-app/app/router.js +1 -0
  56. data/client-app/app/routes/index.js +2 -9
  57. data/client-app/app/routes/settings.js +15 -0
  58. data/client-app/app/routes/show.js +0 -0
  59. data/client-app/app/styles/app.css +633 -527
  60. data/client-app/app/templates/application.hbs +2 -2
  61. data/client-app/app/templates/components/actions-menu.hbs +12 -12
  62. data/client-app/app/templates/components/env-tab.hbs +10 -10
  63. data/client-app/app/templates/components/message-info.hbs +41 -41
  64. data/client-app/app/templates/components/message-row.hbs +15 -15
  65. data/client-app/app/templates/components/panel-resizer.hbs +3 -3
  66. data/client-app/app/templates/components/patterns-list.hbs +25 -0
  67. data/client-app/app/templates/components/tabbed-section.hbs +10 -10
  68. data/client-app/app/templates/components/time-formatter.hbs +1 -1
  69. data/client-app/app/templates/index.hbs +65 -58
  70. data/client-app/app/templates/settings.hbs +26 -0
  71. data/client-app/app/templates/show.hbs +7 -7
  72. data/client-app/config/environment.js +51 -51
  73. data/client-app/config/optional-features.json +3 -3
  74. data/client-app/config/targets.js +18 -18
  75. data/client-app/ember-cli-build.js +29 -29
  76. data/client-app/package-lock.json +11357 -11365
  77. data/client-app/package.json +57 -56
  78. data/client-app/public/assets/images/icon_144x144.png +0 -0
  79. data/client-app/public/assets/images/icon_64x64.png +0 -0
  80. data/client-app/testem.js +25 -25
  81. data/client-app/tests/index.html +34 -34
  82. data/client-app/tests/integration/components/env-tab-test.js +134 -123
  83. data/client-app/tests/integration/components/message-info-test.js +111 -111
  84. data/client-app/tests/integration/components/patterns-list-test.js +56 -0
  85. data/client-app/tests/test-helper.js +8 -8
  86. data/client-app/tests/unit/controllers/index-test.js +12 -12
  87. data/client-app/tests/unit/controllers/show-test.js +12 -12
  88. data/client-app/tests/unit/initializers/app-init-test.js +31 -31
  89. data/client-app/tests/unit/routes/index-test.js +11 -11
  90. data/client-app/tests/unit/routes/show-test.js +11 -11
  91. data/lib/examples/sidekiq_logster_reporter.rb +21 -21
  92. data/lib/logster.rb +59 -54
  93. data/lib/logster/base_store.rb +169 -141
  94. data/lib/logster/cache.rb +20 -0
  95. data/lib/logster/configuration.rb +27 -26
  96. data/lib/logster/defer_logger.rb +14 -14
  97. data/lib/logster/ignore_pattern.rb +65 -65
  98. data/lib/logster/logger.rb +113 -113
  99. data/lib/logster/message.rb +212 -212
  100. data/lib/logster/middleware/debug_exceptions.rb +26 -26
  101. data/lib/logster/middleware/reporter.rb +55 -55
  102. data/lib/logster/middleware/viewer.rb +297 -222
  103. data/lib/logster/pattern.rb +95 -0
  104. data/lib/logster/rails/railtie.rb +63 -63
  105. data/lib/logster/redis_store.rb +584 -566
  106. data/lib/logster/scheduler.rb +54 -54
  107. data/lib/logster/suppression_pattern.rb +17 -0
  108. data/lib/logster/version.rb +3 -3
  109. data/lib/logster/web.rb +14 -14
  110. data/logster.gemspec +35 -35
  111. data/test/examples/test_sidekiq_reporter_example.rb +46 -46
  112. data/test/fake_data/Gemfile +4 -4
  113. data/test/fake_data/generate.rb +10 -10
  114. data/test/logster/middleware/test_reporter.rb +19 -19
  115. data/test/logster/middleware/test_viewer.rb +267 -96
  116. data/test/logster/test_base_store.rb +147 -147
  117. data/test/logster/test_cache.rb +38 -0
  118. data/test/logster/test_defer_logger.rb +34 -34
  119. data/test/logster/test_ignore_pattern.rb +41 -41
  120. data/test/logster/test_logger.rb +100 -86
  121. data/test/logster/test_message.rb +119 -119
  122. data/test/logster/test_pattern.rb +152 -0
  123. data/test/logster/test_redis_rate_limiter.rb +230 -230
  124. data/test/logster/test_redis_store.rb +689 -720
  125. data/test/test_helper.rb +38 -38
  126. data/vendor/assets/javascripts/logster.js.erb +39 -39
  127. metadata +24 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b6f18ddde30080de58fdab1ea09ec86bdf7dceeeee64e564e6c08aefe8bc27ce
4
- data.tar.gz: 619f9ffef378c9b958e42e94cc460aab87ab8e46043c8ebe952ad14bb67e9beb
3
+ metadata.gz: 898c489f2c456f2c301686c92fbb0d84f490c92e52bb14e4f0fa7696c68a71e2
4
+ data.tar.gz: 2ce45b725d50d43bb79f7eec5d0e9216631b617a8841c9adbc878f84267eedcd
5
5
  SHA512:
6
- metadata.gz: aad5f9709a5c95f24ea1b000cda6885dfe6766548dfae21175d5af8cb03a1af91abed6dfb9b52391b519bcee036555e81cab75a7f13e60f818d1eef49f2841f1
7
- data.tar.gz: 3076f7e0f09cd17e7f5e026850719c66eb1398fa3af053ca68f51ca778778a780584dcb2f5fc5f7d2fb9e028177ffdb2500476d663cb4b9845a959e63eb0f5df
6
+ metadata.gz: 8e2f1ea6e080db96266106173ec1020fa525190ec22fa9717a7be97a7500dfed4f8b4fc289358e949b2a0df7a7444ad3b99add718f22c79f605915752d1c3c9f
7
+ data.tar.gz: 482810869a48d60c51878fd6dd2bc9ccdcfb83900bb0a58618bb2bf4ee7e1c3cebb3acb59a62297f96ced1c95b6f9d2cb99331b1efd7deccccfc6465149c1426
data/.gitignore CHANGED
@@ -1,19 +1,21 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
18
- .byebug_history
19
- .rubocop-https---raw-githubusercontent-com-discourse-discourse-master--rubocop-yml
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .byebug_history
19
+ .rubocop-https---raw-githubusercontent-com-discourse-discourse-master--rubocop-yml
20
+ *.swo
21
+ *.swp
@@ -1 +1 @@
1
- inherit_from: https://raw.githubusercontent.com/discourse/discourse/master/.rubocop.yml
1
+ inherit_from: https://raw.githubusercontent.com/discourse/discourse/master/.rubocop.yml
@@ -1,16 +1,16 @@
1
- language: ruby
2
-
3
- matrix:
4
- fast_finish: true
5
-
6
- rvm:
7
- - 2.3.4
8
- - 2.5.3
9
-
10
- services:
11
- - redis-server
12
-
13
- before_install:
14
- - gem install bundler -v 1.17.2
15
-
16
- sudo: false
1
+ language: ruby
2
+
3
+ matrix:
4
+ fast_finish: true
5
+
6
+ rvm:
7
+ - 2.3.4
8
+ - 2.5.3
9
+
10
+ services:
11
+ - redis-server
12
+
13
+ before_install:
14
+ - gem install bundler -v 1.17.2
15
+
16
+ sudo: false
@@ -1,172 +1,224 @@
1
- # CHANGELOG
2
-
3
- - 2019-02-21: Version 2.1.2
4
- - FEATURE: allow certain env keys to be expandable via `Logster.config.env_expandable_keys.push(:key, :another_key)`. See https://github.com/discourse/logster/pull/81 for more info
5
-
6
- - 2019-02-21: Version 2.1.1
7
- - FEATURE: allow defer logger to be disabled as Ruby 2.5.3 can segfault with defer logger due to a bug in Ruby. To disable run `Logster::Scheduler.disable`
8
-
9
- - 2019-02-13: Version 2.1.0
10
- - FEATURE/DEV: adds a defer logger that will do logging asynchronously only in dev environments. It should speed things up a little in dev.
11
-
12
- - 2019-02-05: Version 2.0.1
13
- - FIX: env line height issue on iOS
14
-
15
- - 2019-01-17: Version 2.0.0.pre
16
- - FIX: don't merge any new env samples if there are 50 samples (1.4.0.pre regression)
17
- - UX: make env navigation controls stick to the top when scrolled
18
- - PERF: store env samples separately from the rest of message data
19
- - DEV: Rubocop
20
-
21
- - 2019-01-09: Version 1.4.0.pre
22
- - FEATURE: allow navigation through merged errors
23
- - FEATURE: search should look at env
24
- - FIX: deselect message if new filtering doesn't include selected message
25
- - UX: don't give timestamps more space than they need; use `div`s with flexbox instead of `table`
26
- - FIX: hide "load more" when there are no more messages and filters/search applied
27
-
28
- - 2018-12-30: Version 1.3.4
29
- - FIX: linear-gradient issue on iOS
30
- - FIX: actions menu should have highest z-index
31
-
32
- - 2018-12-26: Version 1.3.3
33
- - Fix: fix double lines logs when date is too long
34
-
35
- - 2018-12-25: Version 1.3.2
36
- - UX: improve usability on mobile
37
-
38
- - 2018-11-09: Version 1.3.1
39
- - Feature: auto scrub invalid messages reported to logger
40
-
41
- - 2018-11-09: Version 1.3.0
42
- - Feature: upgrade Ember to 3.5.1
43
- - Feature: remove inline JS for CSP compliance
44
-
45
- - 2018-08-13: Version 1.2.10
46
- - Feature: expose chained loggers in Logster::Logger
47
-
48
- - 2017-10-27: Version 1.2.8
49
- - Fix: `Logster::Middleware::DebugExceptions` is passed a request in Rails 5 instead of the env.
50
-
51
- - 2017-01-30: Version 1.2.7
52
- - Feature: Add override_level to Logster::Logger allowing for threadsafe logger override
53
-
54
- - 2016-10-24: Version 1.2.6
55
- - Fix: Check if `Rails.env` is defined when using Logster in a none Rails project.
56
-
57
- - 2016-07-11: Version 1.2.5
58
- - Fix: Chained `Logster::Logger` logger now receives backtrace as well.
59
-
60
- - 2016-05-05: Version 1.2.4
61
- - Fix: XSS in log message show if attacker can inject script into ENV
62
-
63
- - 2016-05-05: Version 1.2.3
64
- - Fix: clear_all now also clears rate limits
65
- - Fix: protect against corrupt data in redis during clear
66
-
67
- - 2016-03-22: Version 1.2.2
68
- - Fix: Conflicting attributes and method name for `Logster::RedisStore#rate_limits`.
69
- - Fix: Rate limit checker was tracking limits too early. It should only track when a message has been bumped or saved.
70
-
71
- - 2016-03-22: Version 1.2.1
72
- - Feature: Add method to retrieve current rate from rate limiters.
73
- - Feature: Make `RedisStore#rate_limits` readable.
74
- - Feature: Make `RedisRateLimiter#callback` and `RedisRateLimiter#duration` readable.
75
-
76
- - 2016-03-18: Version 1.2.0
77
- - Fix: Move Redis configuration into RedisStore.
78
- - Feature: Allow `RedisStore#redis_prefix` to either be a String or a Proc.
79
-
80
- - 2016-02-11: Version 1.1.1
81
- - Feature: Error rate can now be tracked in one minute and one hour buckets.
82
-
83
- - 2015-11-27: Version 1.0.1
84
- - New assets and logster logo
85
- - Added favicon
86
- - Added title
87
- - Use rails logger instead of invoking store
88
-
89
- - 2015-08-18: Version 0.9.9
90
- - This marks the largest release of Logster to date, it has been in production use for quite a while, hence the version bump.
91
- - Feature: automatically group errors in production mode, can be manually controlled via Logster.config.allow_grouping
92
- - Feature: automatically track application version, can be manually controlled via Logster.config.application_version
93
- - Feature: Font Awesome icons used throughout
94
- - Feature: Ember upgrade to 1.13
95
- - Feature: you can now "solve" a class of errors, if error has an application_version and backtrace. Once an error is solved it will no longer be reported for the "solved" application_versions
96
- - Feature: allow users to delete a single error
97
- - UX: use table for env
98
- - Feature: display "protected" state of message in list
99
- - Feature: use local times as opposed to relative times in time column
100
- - UX: use Google Roboto font as opposed to system fonts
101
- - UX: remove pointless titles from log table
102
- - Feature: If Logster is in a background tab only poll once every 60 seconds (as opposed to 3)
103
- - Fix: protect/unprotect redirected to show page
104
-
105
- - 2015-06-16: Version 0.8.3
106
- - Chained loggers now respect chain ignore
107
- - Add hostname and process_id to env on all messages
108
-
109
- - 2015-06-10: Version 0.8.2
110
- - Add hostname and process_id to env on all messages
111
-
112
- - 2015-05-01: Version 0.8.1
113
- - Don't crash out logging routine if redis is down or stderr is closed
114
-
115
- - 2015-04-16: Version 0.8.0
116
- - Improve formatting of /show page
117
- - Big version bump cause it is quite stable
118
-
119
- - 2015-02-27: Version 0.1.7
120
- - Fix invalid request on ?test
121
-
122
- - 2014-08-05: Version 0.1.3
123
- - Automatically include ignore filter
124
-
125
- - 2014-08-13: Version 0.1.6
126
- - Simplify install process
127
- - Fix crash on 404 in /logs dir
128
-
129
- - 2014-08-10: Version 0.1.5
130
- - Fix crash in Rails 3
131
-
132
- - 2014-08-08: Version 0.1.4
133
- - Fix crash in ignore filter
134
-
135
- - 2014-07-17: Version 0.1.1
136
- - Refactored report method into base_store.rb - will be easier to make a new log store
137
- - Add link in UI to clear all (non-protected) logs
138
- - Add example of submitting logs from Sidekiq jobs
139
- - Show Protect/Share links on all tabs
140
- - Render hashes provided via Logster.add_to_env
141
-
142
- - 2014-07-04: Version 0.0.12
143
- - Feature: Able to share logs, at /logs/show/(hexdigits)
144
- - Add protecting logs, so they aren't deleted when old (for use with sharing)
145
- - Restructured Redis data model
146
-
147
- - 2014-05-24: Version 0.0.10
148
- - Correct context for error reporting
149
- - Clean up backtraces of reported exceptions
150
-
151
- - 2014-05-13: Version 0.0.9
152
- - Stray debugger message removed, add window.location logging to js
153
-
154
- - 2014-05-13: Version 0.0.8
155
- - Fix pacakging binstubs by mistake
156
-
157
- - 2014-05-13: Version 0.0.7
158
- - Add support for javascript exception logging
159
-
160
- - 2014-05-12: Version 0.0.6
161
- - Add referer to env
162
-
163
- - 2014-05-12: Version 0.0.5
164
- - Feature: We now log basic rack environment with the messages
165
- - Add your own with Logster.add_to_env(env, key, value)
166
-
167
- - 2014-05-07: Version 0.0.4
168
- - Feature: Ability to ignore patterns with Logster.store.ignore = [/regex/]
169
- - Feature: Store backtraces, allow people to view them in the GUI
170
-
171
- - 2014-05-07: Started changelog :)
172
- - Report params in env tab
1
+ # CHANGELOG
2
+
3
+ - 2019-03-19: 2.2.0
4
+
5
+ - FEATURE: custom suppression patterns via UI
6
+ - UX: auto expand env keys when list length is <= 3
7
+
8
+ - 2019-03-14: Unreleased
9
+
10
+ - FIX: Logster message options missing when base logger is a sub-class of
11
+ `Logster::Logger`
12
+
13
+ - 2019-02-21: Version 2.1.2
14
+
15
+ - FEATURE: allow certain env keys to be expandable via `Logster.config.env_expandable_keys.push(:key, :another_key)`. See https://github.com/discourse/logster/pull/81 for more info
16
+
17
+ - 2019-02-21: Version 2.1.1
18
+
19
+ - FEATURE: allow defer logger to be disabled as Ruby 2.5.3 can segfault with defer logger due to a bug in Ruby. To disable run `Logster::Scheduler.disable`
20
+
21
+ - 2019-02-13: Version 2.1.0
22
+
23
+ - FEATURE/DEV: adds a defer logger that will do logging asynchronously only in dev environments. It should speed things up a little in dev.
24
+
25
+ - 2019-02-05: Version 2.0.1
26
+
27
+ - FIX: env line height issue on iOS
28
+
29
+ - 2019-01-17: Version 2.0.0.pre
30
+
31
+ - FIX: don't merge any new env samples if there are 50 samples (1.4.0.pre regression)
32
+ - UX: make env navigation controls stick to the top when scrolled
33
+ - PERF: store env samples separately from the rest of message data
34
+ - DEV: Rubocop
35
+
36
+ - 2019-01-09: Version 1.4.0.pre
37
+
38
+ - FEATURE: allow navigation through merged errors
39
+ - FEATURE: search should look at env
40
+ - FIX: deselect message if new filtering doesn't include selected message
41
+ - UX: don't give timestamps more space than they need; use `div`s with flexbox instead of `table`
42
+ - FIX: hide "load more" when there are no more messages and filters/search applied
43
+
44
+ - 2018-12-30: Version 1.3.4
45
+
46
+ - FIX: linear-gradient issue on iOS
47
+ - FIX: actions menu should have highest z-index
48
+
49
+ - 2018-12-26: Version 1.3.3
50
+
51
+ - Fix: fix double lines logs when date is too long
52
+
53
+ - 2018-12-25: Version 1.3.2
54
+
55
+ - UX: improve usability on mobile
56
+
57
+ - 2018-11-09: Version 1.3.1
58
+
59
+ - Feature: auto scrub invalid messages reported to logger
60
+
61
+ - 2018-11-09: Version 1.3.0
62
+
63
+ - Feature: upgrade Ember to 3.5.1
64
+ - Feature: remove inline JS for CSP compliance
65
+
66
+ - 2018-08-13: Version 1.2.10
67
+
68
+ - Feature: expose chained loggers in Logster::Logger
69
+
70
+ - 2017-10-27: Version 1.2.8
71
+
72
+ - Fix: `Logster::Middleware::DebugExceptions` is passed a request in Rails 5 instead of the env.
73
+
74
+ - 2017-01-30: Version 1.2.7
75
+
76
+ - Feature: Add override_level to Logster::Logger allowing for threadsafe logger override
77
+
78
+ - 2016-10-24: Version 1.2.6
79
+
80
+ - Fix: Check if `Rails.env` is defined when using Logster in a none Rails project.
81
+
82
+ - 2016-07-11: Version 1.2.5
83
+
84
+ - Fix: Chained `Logster::Logger` logger now receives backtrace as well.
85
+
86
+ - 2016-05-05: Version 1.2.4
87
+
88
+ - Fix: XSS in log message show if attacker can inject script into ENV
89
+
90
+ - 2016-05-05: Version 1.2.3
91
+
92
+ - Fix: clear_all now also clears rate limits
93
+ - Fix: protect against corrupt data in redis during clear
94
+
95
+ - 2016-03-22: Version 1.2.2
96
+
97
+ - Fix: Conflicting attributes and method name for `Logster::RedisStore#rate_limits`.
98
+ - Fix: Rate limit checker was tracking limits too early. It should only track when a message has been bumped or saved.
99
+
100
+ - 2016-03-22: Version 1.2.1
101
+
102
+ - Feature: Add method to retrieve current rate from rate limiters.
103
+ - Feature: Make `RedisStore#rate_limits` readable.
104
+ - Feature: Make `RedisRateLimiter#callback` and `RedisRateLimiter#duration` readable.
105
+
106
+ - 2016-03-18: Version 1.2.0
107
+
108
+ - Fix: Move Redis configuration into RedisStore.
109
+ - Feature: Allow `RedisStore#redis_prefix` to either be a String or a Proc.
110
+
111
+ - 2016-02-11: Version 1.1.1
112
+
113
+ - Feature: Error rate can now be tracked in one minute and one hour buckets.
114
+
115
+ - 2015-11-27: Version 1.0.1
116
+
117
+ - New assets and logster logo
118
+ - Added favicon
119
+ - Added title
120
+ - Use rails logger instead of invoking store
121
+
122
+ - 2015-08-18: Version 0.9.9
123
+
124
+ - This marks the largest release of Logster to date, it has been in production use for quite a while, hence the version bump.
125
+ - Feature: automatically group errors in production mode, can be manually controlled via Logster.config.allow_grouping
126
+ - Feature: automatically track application version, can be manually controlled via Logster.config.application_version
127
+ - Feature: Font Awesome icons used throughout
128
+ - Feature: Ember upgrade to 1.13
129
+ - Feature: you can now "solve" a class of errors, if error has an application_version and backtrace. Once an error is solved it will no longer be reported for the "solved" application_versions
130
+ - Feature: allow users to delete a single error
131
+ - UX: use table for env
132
+ - Feature: display "protected" state of message in list
133
+ - Feature: use local times as opposed to relative times in time column
134
+ - UX: use Google Roboto font as opposed to system fonts
135
+ - UX: remove pointless titles from log table
136
+ - Feature: If Logster is in a background tab only poll once every 60 seconds (as opposed to 3)
137
+ - Fix: protect/unprotect redirected to show page
138
+
139
+ - 2015-06-16: Version 0.8.3
140
+
141
+ - Chained loggers now respect chain ignore
142
+ - Add hostname and process_id to env on all messages
143
+
144
+ - 2015-06-10: Version 0.8.2
145
+
146
+ - Add hostname and process_id to env on all messages
147
+
148
+ - 2015-05-01: Version 0.8.1
149
+
150
+ - Don't crash out logging routine if redis is down or stderr is closed
151
+
152
+ - 2015-04-16: Version 0.8.0
153
+
154
+ - Improve formatting of /show page
155
+ - Big version bump cause it is quite stable
156
+
157
+ - 2015-02-27: Version 0.1.7
158
+
159
+ - Fix invalid request on ?test
160
+
161
+ - 2014-08-05: Version 0.1.3
162
+
163
+ - Automatically include ignore filter
164
+
165
+ - 2014-08-13: Version 0.1.6
166
+
167
+ - Simplify install process
168
+ - Fix crash on 404 in /logs dir
169
+
170
+ - 2014-08-10: Version 0.1.5
171
+
172
+ - Fix crash in Rails 3
173
+
174
+ - 2014-08-08: Version 0.1.4
175
+
176
+ - Fix crash in ignore filter
177
+
178
+ - 2014-07-17: Version 0.1.1
179
+
180
+ - Refactored report method into base_store.rb - will be easier to make a new log store
181
+ - Add link in UI to clear all (non-protected) logs
182
+ - Add example of submitting logs from Sidekiq jobs
183
+ - Show Protect/Share links on all tabs
184
+ - Render hashes provided via Logster.add_to_env
185
+
186
+ - 2014-07-04: Version 0.0.12
187
+
188
+ - Feature: Able to share logs, at /logs/show/(hexdigits)
189
+ - Add protecting logs, so they aren't deleted when old (for use with sharing)
190
+ - Restructured Redis data model
191
+
192
+ - 2014-05-24: Version 0.0.10
193
+
194
+ - Correct context for error reporting
195
+ - Clean up backtraces of reported exceptions
196
+
197
+ - 2014-05-13: Version 0.0.9
198
+
199
+ - Stray debugger message removed, add window.location logging to js
200
+
201
+ - 2014-05-13: Version 0.0.8
202
+
203
+ - Fix pacakging binstubs by mistake
204
+
205
+ - 2014-05-13: Version 0.0.7
206
+
207
+ - Add support for javascript exception logging
208
+
209
+ - 2014-05-12: Version 0.0.6
210
+
211
+ - Add referer to env
212
+
213
+ - 2014-05-12: Version 0.0.5
214
+
215
+ - Feature: We now log basic rack environment with the messages
216
+ - Add your own with Logster.add_to_env(env, key, value)
217
+
218
+ - 2014-05-07: Version 0.0.4
219
+
220
+ - Feature: Ability to ignore patterns with Logster.store.ignore = [/regex/]
221
+ - Feature: Store backtraces, allow people to view them in the GUI
222
+
223
+ - 2014-05-07: Started changelog :)
224
+ - Report params in env tab