solid_errors icon indicating copy to clipboard operation
solid_errors copied to clipboard

Results 31 solid_errors issues
Sort by recently updated
recently updated
newest added

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. Release notes Sourced from actions/checkout's releases. v4.0.0 What's Changed Update default runtime to node20 by @​takost in actions/checkout#1436 Support fetching without the --progress option...

dependencies

Hi, I added SolidError to my app, and when I run failing minitest system test, I get ``` Error: EventsTest#test_showing_dialog_with_day_details: ActiveRecord::StatementInvalid: Mysql2::Error: Table 'kucharka_test.solid_errors' doesn't exist ``` and not getting...

Forgive me if I'm missing something obvious but I couldn't find a way to configure email summaries, or "debouncing" of sorts. For example, Solid Errors is sending emails for errors...

I can't figure what's going on here, I originally had solid_errors working fine when I had the tables living in my primary database. I'm trying to move them to a...

Closes #76 This PR aims to remove ActionMailer as a dependency so solid_errors can be used also in Rails Apps that don't have it as a dependency. I find `solid_errors`...

I recently setup `solid_errors` in a rails minimal app. When rails is setup with `--minimal` ActionMailer is not required (i.e. `require "action_mailer/railtie"` is commented out). This causes problems when Zeitwerk...

Since ruby 3.4.0, backtrace string format has changed to use single quote instead of backtick. https://github.com/ruby/ruby/commit/25d74b9527cd525042ad0b612b794fa331d3a318 https://bugs.ruby-lang.org/issues/16495

https://github.com/fractaledmind/solid_errors/blob/b75251b35c28e53f4339cc01f2ed519367c7a6f0/lib/solid_errors/engine.rb#L15-L17 This line works on every RAILS_ENV. I wrote ugly workaround on my `config/environments/test.rb` ```ruby config.after_initialize do Rails.error.unsubscribe(SolidErrors::Subscriber) end ``` Which solution would be better? 1. Hard cord: `Rails.error.subscribe(SolidErrors::Subscriber.new) unless...

Motivation: It would be nice to use a specific controller from my application as the Solid Errors base controller, the same way that [Mission Control Jobs](https://github.com/rails/mission_control-jobs?tab=readme-ov-file#authentication-and-base-controller-class) does. For example, if...

This PR adds a new `destroy_after` property, and also introduces the `SolidErrors::Cleaner` model to handle the work. **Motivation:** It would be nice if Solid Errors could be "self cleaning" by...