In addition to snoozing notifications for a number of occurrences or a fixed period, we have introduced a new way of snoozing errors. You can now snooze errors per application version. In this blog post, you'll learn all about it.
Snoozing options in Flare
Flare has powerful options to notify you when something goes wrong in your app. We provide notifications via email, Slack, SMS (through Nexmo), Discord, Microsoft Teams and webhooks.
For each of these channels, you can choose which notifications should be sent through them. These are the events we can notify you of
-
when an error occurs for the very first time
-
when an error occurs for the 1st, 10th, 100th, 1000th, 2000th, ... time
-
when an error that was marked as resolved, occurs again
-
...
Snoozing errors per application version
If you are aware of an error in an application, you might temporary not want to receive notifications concerning a particular error anymore. You do want to get notified again after you've deployed a fix for the error.
You can achieve this by sending the version number of your app whenever an error occurs. In Laravel projects, you can do this by calling determineVersionUsing on the Flare facade.
// in a service provider
use Facade\Ignition\Facades\Flare;
Flare::determineVersionUsing(function() {
return '1.0'; // return your version number here.
});
With Flare being aware of your application version, you can now snooze any errors sent to Flare for a particular version.

You will only get notified when the error comes in with another version number (probably after you've redeployed your app).
Automatically determining a version number
If you don't set a version number explicitly using determineVersionUsing, we can use a short commit hash if your application is served via a git repo.
For this to work, you'll need to set the reporting.collect_git_information to value true in the flare config file, so git information is sent to Flare.
Continue reading
Why we removed AI solutions from Flare
AI generated solutions are dead, long live AI generated solutions! We removed the old one-shot fixes from a model that could only see the stack trace. It simply couldn't compete with modern agentic AI. In their place, Flare works with the agentic AI tools you already use: an MCP server that handles real triage, a CLI with an agent skill, quick Copy for AI prompts in the UI and docs served as markdown. Hosted agents are in the works too.
Alex
Flare now uses OAuth for MCP, the CLI, and API
Connect MCP clients like Claude and Cursor to Flare by logging in from your browser, no more copying API tokens. Every connection gets its own permissions, so you can give your AI read-only access to a single project. The CLI signs in the same way, and new personal access tokens with scopes and expiry cover scripts and CI.
Alex
Subscribe to Backtrace, our quarterly Flare newsletter
No spam, just news & product updates