logster 2.20.1 → 2.21.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.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -0
- data/CHANGELOG.md +3 -92
- data/Rakefile +1 -4
- data/assets/javascript/{chunk.524.c3042190e39d148beaf9.js → chunk.524.b7d0b89d25457a72409c.js} +4 -4
- data/assets/javascript/{chunk.582.695dcbfb11a784b110cd.js → chunk.582.5a04ae4713e692cd335a.js} +3 -3
- data/assets/javascript/client-app.js +298 -299
- data/assets/stylesheets/client-app.css +1 -1
- data/client-app/app/controllers/index.js +37 -18
- data/client-app/app/styles/app.css +69 -0
- data/client-app/app/templates/index.hbs +27 -0
- data/client-app/ember-cli-build.js +6 -0
- data/lib/logster/group.rb +2 -2
- data/lib/logster/message.rb +4 -4
- data/lib/logster/middleware/viewer.rb +1 -1
- data/lib/logster/version.rb +1 -1
- data/test/examples/test_sidekiq_reporter_example.rb +1 -1
- data/test/logster/test_group.rb +1 -1
- data/test/logster/test_message.rb +1 -1
- data/test/test_helper.rb +23 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 032bd6d934543680f2c4a2136ff9d3df2e413a98d9e7d411d59dc8dd2f52a976
|
|
4
|
+
data.tar.gz: 501ce97ec3873136ef87f9d7ae67e7b259982359fc96e5282382fae099c6df67
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec6e3e7127482c0619954f2141d687680a0f92a23414dfeae6c17c2bc3bf51f6cf875ca9331bef660b2c70661f564bfef09f464e7df3dc3a4e6a4ab5c886657a
|
|
7
|
+
data.tar.gz: 30eeec69d9543d38a2b2ce92c9bf6a1a069e6c18064ee689fb3edf438c9c2c22f3ef30b3df700b5599dce5589ddf7258898a08b7be488ab88187d8c5675162aa
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,156 +1,123 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
-
-
|
|
3
|
+
- 2026-04-29: 2.21.0
|
|
4
|
+
- FEATURE: Allow editing grouping pattern before submitting
|
|
4
5
|
|
|
6
|
+
- 2025-02-06: 2.20.1
|
|
5
7
|
- FIX: Don't break search when providing invalid regex characters
|
|
6
8
|
|
|
7
9
|
- 2024-07-05: 2.20.0
|
|
8
|
-
|
|
9
10
|
- Dropped support for Ruby 3.0
|
|
10
11
|
- Add `Logster::Logger#subscribe` which allows subscribing to log events from `Logster::Logger`.
|
|
11
12
|
|
|
12
13
|
- 2024-03-12: 2.19.1
|
|
13
|
-
|
|
14
14
|
- FIX: Don’t truncate backtrace on copying
|
|
15
15
|
|
|
16
16
|
- 2024-02-28: 2.19.0
|
|
17
|
-
|
|
18
17
|
- FIX: Add compatibility with Rails 7.1+
|
|
19
18
|
|
|
20
19
|
- 2024-02-19: 2.18.1
|
|
21
|
-
|
|
22
20
|
- UX: backlink in dark mode has a dark background
|
|
23
21
|
|
|
24
22
|
- 2024-02-15: 2.18.0
|
|
25
|
-
|
|
26
23
|
- FEATURE: Implement a default Content-Security-Policy
|
|
27
24
|
|
|
28
25
|
- 2024-02-15: 2.17.1
|
|
29
|
-
|
|
30
26
|
- UX: fixed top menu when backlink to the site exists
|
|
31
27
|
|
|
32
28
|
- 2024-02-15: 2.17.0
|
|
33
|
-
|
|
34
29
|
- FEATURE: backlink to site
|
|
35
30
|
|
|
36
31
|
- 2024-01-19: 2.16.0
|
|
37
|
-
|
|
38
32
|
- FEATURE: Add inline grouping pattern creation
|
|
39
33
|
|
|
40
34
|
- 2024-01-16: 2.15.0
|
|
41
|
-
|
|
42
35
|
- FEATURE: Add loading spinner
|
|
43
36
|
|
|
44
37
|
- 2024-01-15: 2.14.0
|
|
45
|
-
|
|
46
38
|
- FEATURE: Stop grouping logs with different messages
|
|
47
39
|
|
|
48
40
|
- 2023-11-01: 2.13.1
|
|
49
|
-
|
|
50
41
|
- FIX: Solve/remove buttons on 'share' page
|
|
51
42
|
|
|
52
43
|
- 2023-10-03: 2.13.0
|
|
53
|
-
|
|
54
44
|
- FEATURE: Format messages with Logster::Logger#formatter before storing
|
|
55
45
|
|
|
56
46
|
- 2023-03-10: 2.12.2
|
|
57
|
-
|
|
58
47
|
- FIX: Don't throw on non-gem backtrace lines
|
|
59
48
|
|
|
60
49
|
- 2023-03-10: 2.12.1
|
|
61
50
|
Note: 2.12.0 was yanked due to a release process error
|
|
62
|
-
|
|
63
51
|
- DEV: Upgrade to Ember 3.28
|
|
64
52
|
|
|
65
53
|
- 2023-01-30: 2.11.4
|
|
66
|
-
|
|
67
54
|
- DEV: Various dependencies upgrade
|
|
68
55
|
- FIX: Switch the `/messages.json` endpoint from `GET` to `POST`
|
|
69
56
|
|
|
70
57
|
- 2022-08-25: 2.11.3
|
|
71
|
-
|
|
72
58
|
- DEV: Avoid deprecation warning in Redis 4.8 (#166)
|
|
73
59
|
|
|
74
60
|
- 2022-04-28: 2.11.2
|
|
75
|
-
|
|
76
61
|
- FIX: store override level in thread local storage (Truffle Ruby compatibility)
|
|
77
62
|
|
|
78
63
|
- 2022-04-21: 2.11.1
|
|
79
|
-
|
|
80
64
|
- FIX: Redis pipelining deprecation (#159)
|
|
81
65
|
|
|
82
66
|
- 2022-03-12: 2.11.0
|
|
83
|
-
|
|
84
67
|
- FEATURE: Improve support for logging error objects (#153)
|
|
85
68
|
|
|
86
69
|
- 2021-11-26: 2.10.1
|
|
87
|
-
|
|
88
70
|
- UX: More dark-mode related changes
|
|
89
71
|
|
|
90
72
|
- 2021-11-26: 2.10.0
|
|
91
|
-
|
|
92
73
|
- FEATURE: Introduce dark mode
|
|
93
74
|
|
|
94
75
|
- 2021-10-27: 2.9.8
|
|
95
|
-
|
|
96
76
|
- FIX: We weren't properly memoizing the hostname
|
|
97
77
|
|
|
98
78
|
- 2021-07-01: 2.9.7
|
|
99
|
-
|
|
100
79
|
- FEATURE: Optionally use full hostname
|
|
101
80
|
|
|
102
81
|
- 2021-02-19: 2.9.6
|
|
103
|
-
|
|
104
82
|
- UX: Make `Warn` level visible by default
|
|
105
83
|
|
|
106
84
|
- 2021-01-21: 2.9.5
|
|
107
|
-
|
|
108
85
|
- FIX: Stop encoding errors when converting Message objects to JSON (#128)
|
|
109
86
|
- DEV: Bump dependencies
|
|
110
87
|
|
|
111
88
|
- 2020-09-01: 2.9.4
|
|
112
|
-
|
|
113
89
|
- FEATURE: Merge messages differing only by numbers (#118)
|
|
114
90
|
- DEV: Bump dependencies
|
|
115
91
|
- UX: Turn severities below `Error` off by default and remember changes using localStorage (#125)
|
|
116
92
|
|
|
117
93
|
- 2020-08-20: 2.9.3
|
|
118
|
-
|
|
119
94
|
- FIX: fix code that causes warning from recent redis gem
|
|
120
95
|
|
|
121
96
|
- 2020-08-11: 2.9.2
|
|
122
|
-
|
|
123
97
|
- FIX: `report_js_error` incorrectly denying logs when Redis#exists returns integer
|
|
124
98
|
|
|
125
99
|
- 2020-07-20: 2.9.1
|
|
126
|
-
|
|
127
100
|
- FIX: Missing application backtrace in chained loggers.
|
|
128
101
|
|
|
129
102
|
- 2020-06-11: 2.9.0
|
|
130
|
-
|
|
131
103
|
- FEATURE: Allows JS errors to specify a log severity
|
|
132
104
|
- DEV: Several dependencies upgrades
|
|
133
105
|
- FIX: Don't search if the phrase hasn't changed
|
|
134
106
|
- UX: Distinguish the value of the current env from the values of other envs in a merged message
|
|
135
107
|
|
|
136
108
|
- 2020-03-30: 2.8.0
|
|
137
|
-
|
|
138
109
|
- FEATURE: Upgrade icons to Font Awesome 5
|
|
139
110
|
|
|
140
111
|
- 2020-03-03: 2.7.1
|
|
141
|
-
|
|
142
112
|
- FIX: Stop env mutation to allow all chained loggers to have the same env (#110)
|
|
143
113
|
|
|
144
114
|
- 2020-02-26: 2.7.0
|
|
145
|
-
|
|
146
115
|
- FEATURE: Make log message max length configurable and bump the default to 2000 (#109)
|
|
147
116
|
|
|
148
117
|
- 2020-02-17: 2.6.3
|
|
149
|
-
|
|
150
118
|
- FIX: Respect redis namespace when fetching env using LUA
|
|
151
119
|
|
|
152
120
|
- 2020-02-09: 2.6.2
|
|
153
|
-
|
|
154
121
|
- FIX: Regression with rendering single env when `env_expandable_keys` config is present
|
|
155
122
|
- DEV: Fix Ember deprecations in tests
|
|
156
123
|
- DEV: Add more tests to env rendering
|
|
@@ -159,11 +126,9 @@
|
|
|
159
126
|
- FIX: Fetch env when navigating through grouped messages
|
|
160
127
|
|
|
161
128
|
- 2020-02-07: 2.6.1
|
|
162
|
-
|
|
163
129
|
- FIX: Fetch env when row is selected to allow copy to work on Firefox
|
|
164
130
|
|
|
165
131
|
- 2020-02-07: 2.6.0
|
|
166
|
-
|
|
167
132
|
- DEV: Bump handlebars from 4.1.2 to 4.5.3 in /client-app (#102)
|
|
168
133
|
- FEATURE: Linkify backtrace lines to github (#104)
|
|
169
134
|
- UX: Keep the 50 most recent envs rather than the first 50 (#103). Also introduces new config options `max_env_bytes` and `max_env_count_per_message`.
|
|
@@ -172,7 +137,6 @@
|
|
|
172
137
|
- DEV: Upgrade Ember to 3.15 and remove jQuery and lodash as dependencies (#107)
|
|
173
138
|
|
|
174
139
|
- 2019-12-13: 2.5.1
|
|
175
|
-
|
|
176
140
|
- DEV: Bump puma from 4.2.1 to 4.3.1 in /website (#100)
|
|
177
141
|
- FIX: Don't include messages that were removed from groups due to max size limit
|
|
178
142
|
- FIX: loadingEnv is an attribute of model
|
|
@@ -180,7 +144,6 @@
|
|
|
180
144
|
- UX: Group count attribute should be a long-running number of errors, not just the number of errors the group currently contains
|
|
181
145
|
|
|
182
146
|
- 2019-12-12: 2.5.0
|
|
183
|
-
|
|
184
147
|
- DEV: Update to latest version of gems
|
|
185
148
|
- FIX: when rate limiting return an object responding to each
|
|
186
149
|
- FEATURE: Expose the search phrase in query params
|
|
@@ -188,11 +151,9 @@
|
|
|
188
151
|
- FEATURE: Custom grouping patterns
|
|
189
152
|
|
|
190
153
|
- 2019-10-28: 2.4.2
|
|
191
|
-
|
|
192
154
|
- FIX: wrong number of arguments when adding message using a block (#98)
|
|
193
155
|
|
|
194
156
|
- 2019-10-17: 2.4.1
|
|
195
|
-
|
|
196
157
|
- PERF: Debounce search field so it doesn't fire a search query at every keystroke.
|
|
197
158
|
- PERF: Disallow search terms that are fewer than 2 characters long.
|
|
198
159
|
- PERF: Bypass refresh cycle if previous cycle hasn't finished.
|
|
@@ -200,63 +161,50 @@
|
|
|
200
161
|
- PERF: Cap message size to 60,000 bytes by default.
|
|
201
162
|
|
|
202
163
|
- 2019-10-10: 2.4.0
|
|
203
|
-
|
|
204
164
|
- FEATURE: Allow having retroactive affect when adding suppression patterns
|
|
205
165
|
- DEV: Bump JS dependencies
|
|
206
166
|
|
|
207
167
|
- 2019-10-08: 2.3.3
|
|
208
|
-
|
|
209
168
|
- FEATURE: keep track of message timestamp when it's merged into another message
|
|
210
169
|
|
|
211
170
|
- 2019-08-20: 2.3.2
|
|
212
|
-
|
|
213
171
|
- FEATURE: automatic 1 minute rate limiting for js error reporting per IP
|
|
214
172
|
|
|
215
173
|
- 2019-08-15: 2.3.1
|
|
216
|
-
|
|
217
174
|
- DEV: upgrade Ember to 3.8 and jQuery to 3.4.1 (#84)
|
|
218
175
|
- FIX: properly escape string ignore pattern (#88)
|
|
219
176
|
- FIX: scrub params if they have invalid encoding (#92)
|
|
220
177
|
|
|
221
178
|
- 2019-03-26: 2.3.0
|
|
222
|
-
|
|
223
179
|
- FEATURE: track count of suppressed logs for each pattern
|
|
224
180
|
|
|
225
181
|
- 2019-03-19: 2.2.0
|
|
226
|
-
|
|
227
182
|
- FEATURE: custom suppression patterns via UI
|
|
228
183
|
- UX: auto expand env keys when list length is <= 3
|
|
229
184
|
|
|
230
185
|
- 2019-03-14: Unreleased
|
|
231
|
-
|
|
232
186
|
- FIX: Logster message options missing when base logger is a sub-class of
|
|
233
187
|
`Logster::Logger`
|
|
234
188
|
|
|
235
189
|
- 2019-02-21: Version 2.1.2
|
|
236
|
-
|
|
237
190
|
- 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
|
|
238
191
|
|
|
239
192
|
- 2019-02-21: Version 2.1.1
|
|
240
|
-
|
|
241
193
|
- 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`
|
|
242
194
|
|
|
243
195
|
- 2019-02-13: Version 2.1.0
|
|
244
|
-
|
|
245
196
|
- FEATURE/DEV: adds a defer logger that will do logging asynchronously only in dev environments. It should speed things up a little in dev.
|
|
246
197
|
|
|
247
198
|
- 2019-02-05: Version 2.0.1
|
|
248
|
-
|
|
249
199
|
- FIX: env line height issue on iOS
|
|
250
200
|
|
|
251
201
|
- 2019-01-17: Version 2.0.0.pre
|
|
252
|
-
|
|
253
202
|
- FIX: don't merge any new env samples if there are 50 samples (1.4.0.pre regression)
|
|
254
203
|
- UX: make env navigation controls stick to the top when scrolled
|
|
255
204
|
- PERF: store env samples separately from the rest of message data
|
|
256
205
|
- DEV: Rubocop
|
|
257
206
|
|
|
258
207
|
- 2019-01-09: Version 1.4.0.pre
|
|
259
|
-
|
|
260
208
|
- FEATURE: allow navigation through merged errors
|
|
261
209
|
- FEATURE: search should look at env
|
|
262
210
|
- FIX: deselect message if new filtering doesn't include selected message
|
|
@@ -264,85 +212,67 @@
|
|
|
264
212
|
- FIX: hide "load more" when there are no more messages and filters/search applied
|
|
265
213
|
|
|
266
214
|
- 2018-12-30: Version 1.3.4
|
|
267
|
-
|
|
268
215
|
- FIX: linear-gradient issue on iOS
|
|
269
216
|
- FIX: actions menu should have highest z-index
|
|
270
217
|
|
|
271
218
|
- 2018-12-26: Version 1.3.3
|
|
272
|
-
|
|
273
219
|
- Fix: fix double lines logs when date is too long
|
|
274
220
|
|
|
275
221
|
- 2018-12-25: Version 1.3.2
|
|
276
|
-
|
|
277
222
|
- UX: improve usability on mobile
|
|
278
223
|
|
|
279
224
|
- 2018-11-09: Version 1.3.1
|
|
280
|
-
|
|
281
225
|
- Feature: auto scrub invalid messages reported to logger
|
|
282
226
|
|
|
283
227
|
- 2018-11-09: Version 1.3.0
|
|
284
|
-
|
|
285
228
|
- Feature: upgrade Ember to 3.5.1
|
|
286
229
|
- Feature: remove inline JS for CSP compliance
|
|
287
230
|
|
|
288
231
|
- 2018-08-13: Version 1.2.10
|
|
289
|
-
|
|
290
232
|
- Feature: expose chained loggers in Logster::Logger
|
|
291
233
|
|
|
292
234
|
- 2017-10-27: Version 1.2.8
|
|
293
|
-
|
|
294
235
|
- Fix: `Logster::Middleware::DebugExceptions` is passed a request in Rails 5 instead of the env.
|
|
295
236
|
|
|
296
237
|
- 2017-01-30: Version 1.2.7
|
|
297
|
-
|
|
298
238
|
- Feature: Add override_level to Logster::Logger allowing for threadsafe logger override
|
|
299
239
|
|
|
300
240
|
- 2016-10-24: Version 1.2.6
|
|
301
|
-
|
|
302
241
|
- Fix: Check if `Rails.env` is defined when using Logster in a none Rails project.
|
|
303
242
|
|
|
304
243
|
- 2016-07-11: Version 1.2.5
|
|
305
|
-
|
|
306
244
|
- Fix: Chained `Logster::Logger` logger now receives backtrace as well.
|
|
307
245
|
|
|
308
246
|
- 2016-05-05: Version 1.2.4
|
|
309
|
-
|
|
310
247
|
- Fix: XSS in log message show if attacker can inject script into ENV
|
|
311
248
|
|
|
312
249
|
- 2016-05-05: Version 1.2.3
|
|
313
|
-
|
|
314
250
|
- Fix: clear_all now also clears rate limits
|
|
315
251
|
- Fix: protect against corrupt data in redis during clear
|
|
316
252
|
|
|
317
253
|
- 2016-03-22: Version 1.2.2
|
|
318
|
-
|
|
319
254
|
- Fix: Conflicting attributes and method name for `Logster::RedisStore#rate_limits`.
|
|
320
255
|
- Fix: Rate limit checker was tracking limits too early. It should only track when a message has been bumped or saved.
|
|
321
256
|
|
|
322
257
|
- 2016-03-22: Version 1.2.1
|
|
323
|
-
|
|
324
258
|
- Feature: Add method to retrieve current rate from rate limiters.
|
|
325
259
|
- Feature: Make `RedisStore#rate_limits` readable.
|
|
326
260
|
- Feature: Make `RedisRateLimiter#callback` and `RedisRateLimiter#duration` readable.
|
|
327
261
|
|
|
328
262
|
- 2016-03-18: Version 1.2.0
|
|
329
|
-
|
|
330
263
|
- Fix: Move Redis configuration into RedisStore.
|
|
331
264
|
- Feature: Allow `RedisStore#redis_prefix` to either be a String or a Proc.
|
|
332
265
|
|
|
333
266
|
- 2016-02-11: Version 1.1.1
|
|
334
|
-
|
|
335
267
|
- Feature: Error rate can now be tracked in one minute and one hour buckets.
|
|
336
268
|
|
|
337
269
|
- 2015-11-27: Version 1.0.1
|
|
338
|
-
|
|
339
270
|
- New assets and logster logo
|
|
340
271
|
- Added favicon
|
|
341
272
|
- Added title
|
|
342
273
|
- Use rails logger instead of invoking store
|
|
343
274
|
|
|
344
275
|
- 2015-08-18: Version 0.9.9
|
|
345
|
-
|
|
346
276
|
- This marks the largest release of Logster to date, it has been in production use for quite a while, hence the version bump.
|
|
347
277
|
- Feature: automatically group errors in production mode, can be manually controlled via Logster.config.allow_grouping
|
|
348
278
|
- Feature: automatically track application version, can be manually controlled via Logster.config.application_version
|
|
@@ -359,46 +289,36 @@
|
|
|
359
289
|
- Fix: protect/unprotect redirected to show page
|
|
360
290
|
|
|
361
291
|
- 2015-06-16: Version 0.8.3
|
|
362
|
-
|
|
363
292
|
- Chained loggers now respect chain ignore
|
|
364
293
|
- Add hostname and process_id to env on all messages
|
|
365
294
|
|
|
366
295
|
- 2015-06-10: Version 0.8.2
|
|
367
|
-
|
|
368
296
|
- Add hostname and process_id to env on all messages
|
|
369
297
|
|
|
370
298
|
- 2015-05-01: Version 0.8.1
|
|
371
|
-
|
|
372
299
|
- Don't crash out logging routine if redis is down or stderr is closed
|
|
373
300
|
|
|
374
301
|
- 2015-04-16: Version 0.8.0
|
|
375
|
-
|
|
376
302
|
- Improve formatting of /show page
|
|
377
303
|
- Big version bump cause it is quite stable
|
|
378
304
|
|
|
379
305
|
- 2015-02-27: Version 0.1.7
|
|
380
|
-
|
|
381
306
|
- Fix invalid request on ?test
|
|
382
307
|
|
|
383
308
|
- 2014-08-05: Version 0.1.3
|
|
384
|
-
|
|
385
309
|
- Automatically include ignore filter
|
|
386
310
|
|
|
387
311
|
- 2014-08-13: Version 0.1.6
|
|
388
|
-
|
|
389
312
|
- Simplify install process
|
|
390
313
|
- Fix crash on 404 in /logs dir
|
|
391
314
|
|
|
392
315
|
- 2014-08-10: Version 0.1.5
|
|
393
|
-
|
|
394
316
|
- Fix crash in Rails 3
|
|
395
317
|
|
|
396
318
|
- 2014-08-08: Version 0.1.4
|
|
397
|
-
|
|
398
319
|
- Fix crash in ignore filter
|
|
399
320
|
|
|
400
321
|
- 2014-07-17: Version 0.1.1
|
|
401
|
-
|
|
402
322
|
- Refactored report method into base_store.rb - will be easier to make a new log store
|
|
403
323
|
- Add link in UI to clear all (non-protected) logs
|
|
404
324
|
- Add example of submitting logs from Sidekiq jobs
|
|
@@ -406,42 +326,33 @@
|
|
|
406
326
|
- Render hashes provided via Logster.add_to_env
|
|
407
327
|
|
|
408
328
|
- 2014-07-04: Version 0.0.12
|
|
409
|
-
|
|
410
329
|
- Feature: Able to share logs, at /logs/show/(hexdigits)
|
|
411
330
|
- Add protecting logs, so they aren't deleted when old (for use with sharing)
|
|
412
331
|
- Restructured Redis data model
|
|
413
332
|
|
|
414
333
|
- 2014-05-24: Version 0.0.10
|
|
415
|
-
|
|
416
334
|
- Correct context for error reporting
|
|
417
335
|
- Clean up backtraces of reported exceptions
|
|
418
336
|
|
|
419
337
|
- 2014-05-13: Version 0.0.9
|
|
420
|
-
|
|
421
338
|
- Stray debugger message removed, add window.location logging to js
|
|
422
339
|
|
|
423
340
|
- 2014-05-13: Version 0.0.8
|
|
424
|
-
|
|
425
341
|
- Fix packaging binstubs by mistake
|
|
426
342
|
|
|
427
343
|
- 2014-05-13: Version 0.0.7
|
|
428
|
-
|
|
429
344
|
- Add support for javascript exception logging
|
|
430
345
|
|
|
431
346
|
- 2014-05-12: Version 0.0.6
|
|
432
|
-
|
|
433
347
|
- Add referer to env
|
|
434
348
|
|
|
435
349
|
- 2014-05-12: Version 0.0.5
|
|
436
|
-
|
|
437
350
|
- Feature: We now log basic rack environment with the messages
|
|
438
351
|
- Add your own with Logster.add_to_env(env, key, value)
|
|
439
352
|
|
|
440
353
|
- 2014-05-07: Version 0.0.4
|
|
441
|
-
|
|
442
354
|
- Feature: Ability to ignore patterns with Logster.store.ignore = [/regex/]
|
|
443
355
|
- Feature: Store backtraces, allow people to view them in the GUI
|
|
444
356
|
|
|
445
357
|
- 2014-05-07: Started changelog :)
|
|
446
|
-
|
|
447
358
|
- Report params in env tab
|
data/Rakefile
CHANGED
|
@@ -12,10 +12,7 @@ task(default: :test)
|
|
|
12
12
|
desc "Starts Sinatra and Ember servers"
|
|
13
13
|
task :client_dev do
|
|
14
14
|
begin
|
|
15
|
-
pid =
|
|
16
|
-
spawn(
|
|
17
|
-
"cd website && LOGSTER_ENV=development BUNDLE_GEMFILE=Gemfile bundle exec rackup --host 0.0.0.0",
|
|
18
|
-
)
|
|
15
|
+
pid = spawn("cd website && LOGSTER_ENV=development BUNDLE_GEMFILE=Gemfile bundle exec puma")
|
|
19
16
|
pid2 = spawn("cd client-app && npx ember s --proxy http://localhost:9292")
|
|
20
17
|
Process.wait pid
|
|
21
18
|
Process.wait pid2
|
data/assets/javascript/{chunk.524.c3042190e39d148beaf9.js → chunk.524.b7d0b89d25457a72409c.js}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
var __ember_auto_import__
|
|
2
|
-
!function(){var e,r={
|
|
3
|
-
e.exports=(o=_eai_d,t=_eai_r,window.emberAutoImportDynamic=function(e){return 1===arguments.length?t("_eai_dyn_"+e):t("_eai_dynt_"+e)(Array.prototype.slice.call(arguments,1))},window.emberAutoImportSync=function(e){return t("_eai_sync_"+e)(Array.prototype.slice.call(arguments,1))},o("__v1-addons__early-boot-set__",[],(function(){})),void o("sinon",["__v1-addons__early-boot-set__"],(function(){return n(761)})))},
|
|
2
|
+
!function(){var e,r={281:function(e,r,n){var o,t
|
|
3
|
+
e.exports=(o=_eai_d,t=_eai_r,window.emberAutoImportDynamic=function(e){return 1===arguments.length?t("_eai_dyn_"+e):t("_eai_dynt_"+e)(Array.prototype.slice.call(arguments,1))},window.emberAutoImportSync=function(e){return t("_eai_sync_"+e)(Array.prototype.slice.call(arguments,1))},o("__v1-addons__early-boot-set__",[],(function(){})),void o("sinon",["__v1-addons__early-boot-set__"],(function(){return n(761)})))},428:function(e,r){window._eai_r=require,window._eai_d=define}},n={}
|
|
4
4
|
function o(e){var t=n[e]
|
|
5
5
|
if(void 0!==t)return t.exports
|
|
6
6
|
var i=n[e]={exports:{}}
|
|
@@ -17,6 +17,6 @@ var r=function(r,n){var t,i,u=n[0],_=n[1],a=n[2],f=0
|
|
|
17
17
|
if(u.some((function(r){return 0!==e[r]}))){for(t in _)o.o(_,t)&&(o.m[t]=_[t])
|
|
18
18
|
if(a)var c=a(o)}for(r&&r(n);f<u.length;f++)i=u[f],o.o(e,i)&&e[i]&&e[i][0](),e[i]=0
|
|
19
19
|
return o.O(c)},n=self.webpackChunk_ember_auto_import_=self.webpackChunk_ember_auto_import_||[]
|
|
20
|
-
n.forEach(r.bind(null,0)),n.push=r.bind(null,n.push.bind(n))}(),o.O(void 0,[761],(function(){return o(
|
|
21
|
-
var t=o.O(void 0,[761],(function(){return o(
|
|
20
|
+
n.forEach(r.bind(null,0)),n.push=r.bind(null,n.push.bind(n))}(),o.O(void 0,[761],(function(){return o(428)}))
|
|
21
|
+
var t=o.O(void 0,[761],(function(){return o(281)}))
|
|
22
22
|
t=o.O(t),__ember_auto_import__=t}()
|
data/assets/javascript/{chunk.582.695dcbfb11a784b110cd.js → chunk.582.5a04ae4713e692cd335a.js}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var __ember_auto_import__
|
|
2
|
-
!function(){var r,n={
|
|
2
|
+
!function(){var r,n={428:function(r,n){window._eai_r=require,window._eai_d=define},863:function(r,n,e){var t,o
|
|
3
3
|
r.exports=(t=_eai_d,o=_eai_r,window.emberAutoImportDynamic=function(r){return 1===arguments.length?o("_eai_dyn_"+r):o("_eai_dynt_"+r)(Array.prototype.slice.call(arguments,1))},window.emberAutoImportSync=function(r){return o("_eai_sync_"+r)(Array.prototype.slice.call(arguments,1))},t("__v1-addons__early-boot-set__",[],(function(){})),void t("qunit",["__v1-addons__early-boot-set__"],(function(){return e(747)})))}},e={}
|
|
4
4
|
function t(r){var o=e[r]
|
|
5
5
|
if(void 0!==o)return o.exports
|
|
@@ -17,6 +17,6 @@ var n=function(n,e){var o,i,_=e[0],u=e[1],a=e[2],c=0
|
|
|
17
17
|
if(_.some((function(n){return 0!==r[n]}))){for(o in u)t.o(u,o)&&(t.m[o]=u[o])
|
|
18
18
|
if(a)var f=a(t)}for(n&&n(e);c<_.length;c++)i=_[c],t.o(r,i)&&r[i]&&r[i][0](),r[i]=0
|
|
19
19
|
return t.O(f)},e=self.webpackChunk_ember_auto_import_=self.webpackChunk_ember_auto_import_||[]
|
|
20
|
-
e.forEach(n.bind(null,0)),e.push=n.bind(null,e.push.bind(e))}(),t.O(void 0,[747],(function(){return t(
|
|
21
|
-
var o=t.O(void 0,[747],(function(){return t(
|
|
20
|
+
e.forEach(n.bind(null,0)),e.push=n.bind(null,e.push.bind(e))}(),t.O(void 0,[747],(function(){return t(428)}))
|
|
21
|
+
var o=t.O(void 0,[747],(function(){return t(863)}))
|
|
22
22
|
o=t.O(o),__ember_auto_import__=o}()
|