---
title: "Debounceable Queued Jobs in Laravel 13.6.0"
url: https://daily.dev/posts/debounceable-queued-jobs-in-laravel-13-6-0-po9ifu40t
source_url: https://laravel-news.com/laravel-13-6-0
type: article
source: "Laravel News"
published: 2026-04-22T13:13:25.124Z
updated: 2026-04-22T13:13:50.399Z
tags: ["testing", "php", "laravel"]
reading_time: 4
upvotes: 26
comments: 3
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Debounceable Queued Jobs in Laravel 13.6.0

**[Laravel News](https://daily.dev/sources/ln)** · 4 min read · 26 upvotes · 3 comments

## Summary

Laravel 13.6.0 ships several notable features. The headline addition is debounceable queued jobs via the #[DebounceFor] attribute — when the same job is dispatched multiple times within a time window, only the last dispatch executes. A maxWait parameter prevents indefinite deferral. The release also adds JSON response support for the built-in /up health route (useful for API-only apps and load balancers), a new JsonFormatter for structured logging compatible with ELK/Datadog, and Cloudflare Email Service integration. Testing improvements include multi-record assertions for assertDatabaseHas/assertDatabaseMissing, and the hasAttached factory method now accepts arrays of pivot arrays. Additional fixes cover validation rules, enum support in BroadcastManager, PasswordBrokerManager, and NotificationChannelManager, plus SQS named credential providers.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://laravel-news.com/laravel-13-6-0>

## Community discussion

Top comments from developers on daily.dev.

**@allinonetools** · 3 upvotes

> The debounceable jobs feature is really useful, especially for handling repeated events without overloading the queue. Also nice to see improvements in logging and health checks — small things that help a lot in real projects.

**@bennamanemourad** · 0 upvotes

> Laraval is a good framework as I know

**@destor77** · 0 upvotes

> tahks

## Similar posts on daily.dev

- [Read-Through Disks and Debounced Listeners in Laravel 13.26](https://daily.dev/posts/read-through-disks-and-debounced-listeners-in-laravel-13-26-dwsybwxb0) · Laravel News · 10 upvotes · 0 comments
- [Debounced Queued Event Listeners in Laravel](https://daily.dev/posts/debounced-queued-event-listeners-in-laravel-a1mn3fme0) · Laravel News · 17 upvotes · 0 comments

---

Tags: [#testing](https://daily.dev/tags/testing), [#php](https://daily.dev/tags/php), [#laravel](https://daily.dev/tags/laravel)

[View this post on daily.dev](https://daily.dev/posts/debounceable-queued-jobs-in-laravel-13-6-0-po9ifu40t)
