Skip to content
Tutorial emka
Menu
  • Home
  • Debian Linux
  • Ubuntu Linux
  • Red Hat Linux
Menu

Laravel 10.39 Dirilis, Ada fitur Roun-robin/Load-balancing Mailer, Max Tries Queue Job dll

Posted on January 7, 2024

Minggu ini, tim Laravel merilis v10.39 dengan round-robin mailer, maksimum percobaan dinamis pada pekerjaan antrian, dan lainnya. Berikut sedikit informasi tentang fitur-fitur baru yang diperkenalkan di Laravel v10.39 minggu ini:

Round-robin Mailer

Ahmed Shamim berkontribusi pada driver transport round-robin mailer yang mendistribusikan beban kerja pengiriman melalui beberapa transport:

Pada dasarnya, driver transport failover diperluas dari kelas driver transport roundrobin dengan hanya mengganti logika pemilihan transport berikutnya. Tetapi penggunaan kasus berbeda untuk kedua driver ini. Driver failover membantu mencapai ketersediaan tinggi dan roundrobin membantu mencapai load balancing.

Berikut adalah contoh pembaruan konfigurasi aplikasi pada file confi/mail.php di aplikasi Laravel Anda:

'roundrobin' => [
    'transport' => 'roundrobin',
    'mailers' => [
        'ses',
        'postmark',
    ],
],

Fitur ini didokumentasikan dalam dokumen resmi Mail mengenai konfigurasi round-robin. Terakhir, Anda dapat mempelajari lebih lanjut dalam dokumentasi load balancing Symfony’s Mailer dan Pull Request #49435.

Maksimum Percobaan Dinamis pada Pekerjaan Antrian

@Di berkontribusi pada kemampuan untuk menentukan maxTries secara dinamis untuk pekerjaan antrian, mirip dengan backoff(). Sebelumnya, Anda dapat menentukan nilai dinamis melalui properti $tries (yang masih memiliki prioritas), tetapi sekarang Anda dapat menentukan metode pada pekerjaan Anda:

class TestJob implements ShouldQueue
{
    use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
 
    // If the property is still defined, it precedes over the tries() method,
    // providing the same behavior as the backoff definition
    public $tries = 3;
 
    public function tries(): int
    {
        return config('test_job.retries'); // Example: Get the number of tries from config
    }
}

Catatan Rilis

Anda dapat melihat daftar lengkap fitur dan pembaruan baru di bawah ini dan perbedaan antara 10.38.0 dan 10.39.0 di GitHub. Catatan rilis berikut ini berasal langsung dari changelog:

v10.39.0

  • [9.x] Dukungan untuk phpredis 6.0.0 oleh @MichalHubatka di https://github.com/laravel/framework/pull/48380
  • [10.x] Maksimum percobaan dinamis untuk pekerjaan antrian oleh @mechelon di https://github.com/laravel/framework/pull/49473
  • [10.x] Hindari TypeError saat menggunakan aturan validasi json saat PHP < 8.3 oleh @Xint0 di https://github.com/laravel/framework/pull/49474
  • [10.x] Perbaiki kompilasi pernyataan use dalam templat Blade oleh @MrPunyapal di https://github.com/laravel/framework/pull/49479
  • [10.x] Izinkan pengujian validasi prompt oleh @cerbero90 di https://github.com/laravel/framework/pull/49447
  • [10.x] Tambahkan driver transport ‘Roundrobin’ Symfony mailer oleh @me-shaon di https://github.com/laravel/framework/pull/49435

Recent Posts

  • How to Fix Excel Formula Errors: Quick Fixes for #NAME
  • How to Clear Copilot Memory in Windows 11 Step by Step
  • How to Show Battery Percentage on Windows 11
  • How to Fix VMSp Service Failed to Start on Windows 10/11
  • How to Fix Taskbar Icon Order in Windows 11/10
  • How to Disable Personalized Ads in Copilot on Windows 11
  • What is the Microsoft Teams Error “We Couldn’t Connect the Call” Error?
  • Why Does the VirtualBox System Service Terminate Unexpectedly? Here is the Full Definition
  • Why is Your Laptop Touchpad Overheating? Here are the Causes and Fixes
  • How to Disable All AI Features in Chrome Using Windows 11 Registry
  • How to Avoid Problematic Windows Updates: A Guide to System Stability
  • What is Microsoft Visual C++ Redistributable and How to Fix Common Errors?
  • What is the 99% Deletion Bug? Understanding and Fixing Windows 11 File Errors
  • How to Add a Password to WhatsApp for Extra Security
  • How to Recover Lost Windows Passwords with a Decryptor Tool
  • How to Fix Python Not Working in VS Code Terminal: A Troubleshooting Guide
  • Game File Verification Stuck at 0% or 99%: What is it and How to Fix the Progress Bar?
  • Why Does PowerPoint Underline Hyperlinks? Here is How to Remove Them
  • AI Bug Hunting with Semgrep
  • What is the Excel Power Query 0xc000026f Error?
  • How to Build Your Own Homelab AI Supercomputer 2026
  • How to Enable SSH in Oracle VirtualBox for Beginners
  • How to Intercept Secret IoT Camera Traffic
  • Build Ultra-Fast and Tiny Desktop Apps with Electrobun: A Beginner’s Guide
  • The Ultimate 2026 Coding Roadmap: How to Master Software Engineering with AI Agents
  • Inilah Rahasia ReciMe, Potensi Sukses dari Aplikasi Resep Sederhana
  • Perkuat Kemandirian Industri Alat Kesehatan Nasional, Astra Komponen Indonesia Hadirkan Alat Kesehatan Berbasis Teknologi Digital
  • Vidrush, Solusi Produksi Video massal buat Channel Faceless
  • Inilah Higgsfield AI Audio, Trik Canggih Buat Voice Cloning dan Dubbing Video Youtube Otomatis!
  • Everything You Need to Know About Project X and the Rumored AI-Powered Remaster of The Sims 4
  • How to Use Orbax Checkpointing with Keras and JAX for Robust Training
  • How to Automate Any PDF Form Using the Power of Manus AI
  • How to Training Your Own YOLO26 Object Detection Model!
  • How to Build a Full-Stack Mobile App in Minutes with YouWare AI
  • How to Create Consistent Characters and Cinematic AI Video Production with Seedance
  • Apa itu Spear-Phishing via npm? Ini Pengertian dan Cara Kerjanya yang Makin Licin
  • Apa Itu Predator Spyware? Ini Pengertian dan Kontroversi Penghapusan Sanksinya
  • Mengenal Apa itu TONESHELL: Backdoor Berbahaya dari Kelompok Mustang Panda
  • Siapa itu Kelompok Hacker Silver Fox?
  • Apa itu CVE-2025-52691 SmarterMail? Celah Keamanan Paling Berbahaya Tahun 2025
©2026 Tutorial emka | Design: Newspaperly WordPress Theme