Error Reporting Fix and Queue Classic Deprecation
Rails improved streaming error reporting to integrate with error monitoring services and deprecated the queue_classic Active Job adapter due to lack of maintenance.
Duration: PT1M25S
Episode overview
This episode is a short developer briefing from Rails Daily.
It explains recent repository work in plain language.
- Show: Rails Daily
- Published: 2026-01-17T11:04:49Z
- Audio duration: PT1M25S
Transcript excerpt
This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.
Good morning, this is Rails Daily for January 17th, 2026.
Two notable changes merged to Rails core yesterday.
Jean Boussier merged a fix for streaming template error reporting. Previously, when errors occurred during view streaming, they would only be logged and wouldn't reach error monitoring services like Sentry or Bugsnag that typically hook into Rails middleware. The change updates the streaming template renderer to use…
Morgoth merged the deprecation of the queue_classic Active Job adapter. The queue_classic gem hasn't seen activity in two years, and an attempt to upstream the adapter directly to that project received no response. This marks the final Active Job adapter to be removed from Rails core as part of the ongoing effort to…
Both changes include appropriate test coverage and changelog entries.
What's next: Developers using streaming views should see improved error visibility in their monitoring systems. Teams relying on queue_classic should plan migration to supported job backends before the next major Rails release.