rails_error_dashboard 0.11.2 → 0.11.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c470ccb09f844bb6187fff2f3519d00370e3a0d188319cba49beed93c1bc139d
4
- data.tar.gz: a1adc23940e22ffe6f35d00a161c7ec6494a07cc3576ca1a0b541cc28605e108
3
+ metadata.gz: ca64d9f0169fc1dd0b900fbd5460377d5b086d45849e61ca1945045db6c10e4e
4
+ data.tar.gz: e9c09c9c4d5c9b716bf4da5aec37d28780aa2bcbd8d2d80cdacbdd9fb171a0b4
5
5
  SHA512:
6
- metadata.gz: dabde3ae967ff2d0615b0fa91477f3706490ef2fe8975fa26a364727905c646e393605a6d6c0bca2c1e614eb311b550d192a3f7d632bd19626407f586cd016ba
7
- data.tar.gz: c0f5e711dac845b70506151dc56f2b4c079eb8dfe2dc85b491dfef4ae011d488d55c758fc0a0aee18ac64faf949253a1be3cb6c421e9315a62cbccef823d6f9d
6
+ metadata.gz: 51d6dc61b08748427205b7d3a838ec14e968f01898b395fa9f678c7aca3dd4647b32bc37f0e91fa1d99782b89242707d20604441a81ce7c7ca8bc2cbaa47d1e4
7
+ data.tar.gz: da69121a17eff452ea3b0d31c909b765da9e607cb1a80c5ae304a6fbb4c45473a88d3c6d7c927762d64ed1dd76630ca2dc4b9b37813cdd5213fbec9b7063fe29
@@ -31,7 +31,26 @@ module RailsErrorDashboard
31
31
  "Claude-User" => /Claude-User/i,
32
32
  "Claude Code" => /Claude-?Code/i,
33
33
  "Perplexity-User" => /Perplexity-User/i,
34
- "Gemini-User" => /Gemini-User/i
34
+ "Gemini-User" => /Gemini-User/i,
35
+ # Observed in production traffic by the reporter of #170:
36
+ # "GitHubCopilotRuntime-WebFetch", 7 requests from 5 IPs. Classified as
37
+ # an assistant rather than a crawler because it fetches a specific URL a
38
+ # developer's Copilot session asked for, one page at a time — not a bulk
39
+ # corpus crawl.
40
+ #
41
+ # The pattern is deliberately anchored on "GitHubCopilot" rather than a
42
+ # bare /Copilot/i. Microsoft applies the Copilot brand very broadly, and
43
+ # its Copilot features are documented as riding Bingbot infrastructure or
44
+ # sending ordinary Edge/Chromium user agents with no bot signal — so a
45
+ # loose pattern would mislabel plain browser traffic as an AI agent,
46
+ # which is exactly the wrong-attribution failure this class avoids.
47
+ #
48
+ # No authoritative UA documentation exists for this agent: it is absent
49
+ # from GitHub's own docs, from ai-robots-txt/ai.robots.txt, and from the
50
+ # Dark Visitors catalogue as of 2026-08-29. The pattern therefore matches
51
+ # only what has actually been observed, plus the "-WebFetch" sibling
52
+ # suffix, instead of guessing at variants.
53
+ "GitHub Copilot" => /GitHubCopilot/i
35
54
  }.freeze
36
55
 
37
56
  AI_CRAWLERS = {
@@ -1,3 +1,3 @@
1
1
  module RailsErrorDashboard
2
- VERSION = "0.11.2"
2
+ VERSION = "0.11.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_error_dashboard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.2
4
+ version: 0.11.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anjan Jagirdar
@@ -219,24 +219,43 @@ dependencies:
219
219
  - - "~>"
220
220
  - !ruby/object:Gem::Version
221
221
  version: '0.15'
222
- description: 'Rails Error Dashboard (RED) is an open-source, self-hosted Rails engine
223
- for investigating production exceptions without sending error data to a monitoring
222
+ description: |
223
+ == Rails-native failure investigation
224
+
225
+ Rails Error Dashboard (RED) is an open-source, self-hosted Rails engine for
226
+ investigating production exceptions without sending error data to a monitoring
224
227
  vendor. It groups errors and records request context and cause chains and, when
225
- enabled, breadcrumbs plus local and instance variables captured before Ruby unwinds
226
- the stack. RED attaches Rails and Ruby runtime health to the error record on every
227
- captured occurrence, including Active Record pool, Puma, background jobs, GC, memory,
228
- threads, file descriptors and system pressure. Built-in storm protection progressively
229
- sheds expensive context and I/O during error floods while retaining useful exemplars
230
- and exact occurrence counts. Run RED with your application''s database or an isolated
231
- error database. It supports PostgreSQL, MySQL/Trilogy and SQLite, and includes workflow,
232
- notifications (Slack, Email, Discord, PagerDuty, webhooks), two-way issue sync with
233
- GitHub, GitLab, Codeberg and Linear, Copy as RSpec/curl/LLM, swallowed-exception
234
- detection, LLM observability without prompt capture, OpenTelemetry span export and
235
- Rails-specific operational views. The dashboard is translated into 11 languages
236
- (machine-translated outside English, awaiting native review). A self-hosted Sentry
237
- alternative that keeps error data in your own database. The gem is MIT and free
238
- forever. Supports Rails 7.0-8.1 and Ruby 3.2-4.0. Beta: APIs may change before 1.0.
239
- Live demo: https://rails-error-dashboard.anjan.dev'
228
+ enabled, breadcrumbs plus local and instance variables captured before Ruby
229
+ unwinds the stack.
230
+
231
+ == What it records
232
+
233
+ * Rails and Ruby runtime health on the error record, refreshed on every captured
234
+ occurrence: Active Record pool, Puma, background jobs, GC, memory, threads,
235
+ file descriptors and system pressure
236
+ * Built-in storm protection that progressively sheds expensive context and I/O
237
+ during error floods while retaining useful exemplars and exact occurrence
238
+ counts
239
+ * Copy as RSpec, curl or LLM prompt; swallowed-exception detection; LLM
240
+ observability without prompt capture; OpenTelemetry span export
241
+ * Workflow, notifications (Slack, Email, Discord, PagerDuty, webhooks) and
242
+ two-way issue sync with GitHub, GitLab, Codeberg and Linear
243
+ * Rails-specific operational views: jobs, database, cache, Action Cable, Active
244
+ Storage, Rack::Attack and deprecations
245
+
246
+ == Running it
247
+
248
+ Run RED with your application's database or an isolated error database, on
249
+ PostgreSQL, MySQL/Trilogy or SQLite. The dashboard is translated into 11
250
+ languages (machine-translated outside English, awaiting native review). A
251
+ self-hosted Sentry alternative that keeps error data in your own database. The
252
+ gem is MIT and free forever.
253
+
254
+ Supports Rails 7.0-8.1 and Ruby 3.2-4.0. Beta: APIs may change before 1.0.
255
+
256
+ Live demo: https://rails-error-dashboard.anjan.dev
257
+
258
+ Documentation: https://AnjanJ.github.io/rails_error_dashboard
240
259
  email:
241
260
  - anjan.jagirdar@gmail.com
242
261
  executables: []
@@ -556,7 +575,7 @@ metadata:
556
575
  funding_uri: https://github.com/sponsors/AnjanJ
557
576
  post_install_message: |
558
577
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
559
- RED (Rails Error Dashboard) v0.11.2
578
+ RED (Rails Error Dashboard) v0.11.3
560
579
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
561
580
 
562
581
  First install: