Laravel Cloud is here! Zero-config managed infrastructure for Laravel apps. Deploy now.

Laravel 8.82 Released

Published on by

Laravel 8.82 Released image

Never Miss a Laravel Release ๐Ÿš€

Sign up and get an email with each new Laravel release

The Laravel team released 8.82 with factory matrix sequences, a transliterate string helper, a new validation rule, and more:

Cross Join Sequences in Factories

@thomasowow contributed a new method and class that helps join multiple factory sequences.

Here's the newly merged approach for joining multiple sequences:

User::factory(4)
->state(
new MatrixSequence(
[['first_name' => 'Thomas'], ['first_name' => 'Agent']],
[['last_name' => 'Anderson'], ['last_name' => 'Smith']],
),
)
->create();
 
/* Results in:
[
['first_name' => 'Thomas', 'last_name' => 'Anderson'],
['first_name' => 'Thomas', 'last_name' => 'Smith'],
['first_name' => 'Agent', 'last_name' => 'Anderson'],
['first_name' => 'Agent', 'last_name' => 'Smith'],
]
*/

Previously, you'd call sequence multiple times:

User::factory(4)
->sequence([
['first_name' => 'Thomas'],
['first_name' => 'Thomas'],
['first_name' => 'Agent'],
['first_name' => 'Agent']
])
->sequence([
['last_name' => 'Anderson'],
['last_name' => 'Smith'],
['last_name' => 'Anderson'],
['last_name' => 'Smith'],
]);

Check out Pull Request #40542 for more examples and implementation details. You can learn more about sequences in the Database Testing documentation.

Transliterate String Helper

Liam Hackett contributed a Str::transliterate() method which transliterates a string to its closes ASCII representation:

$value = 'โ“โ“‘โ“’โ““โ“”โ“•โ“–โ“—โ“˜โ“™โ“šโ“›โ“œโ“โ“žโ“Ÿโ“ โ“กโ“ขโ“ฃโ“คโ“ฅโ“ฆโ“งโ“จโ“ฉ';
$this->assertSame(
'abcdefghijklmnopqrstuvwxyz',
Str::transliterate($value)
);

If you're interested in what prompted this addition, read the discussion on Pull Request #40681.

Required Array Keys Validation Rule

Andrew Arscott contributed a required_array_keys validation rule which allows you to define keys that are required in an array input:

$data = [
'baz' => [
'foo' => 'bar',
'fee' => 'faa',
'laa' => 'lee',
],
];
 
$rules = [
'baz' => [
'array',
'required_array_keys:foo,fee',
],
];
 
$validator = new Validator($trans, $data, $rules, [], []);
$validator->passes(); // true

Here's a failed validation attempt:

 
$data = [
'baz' => [
'foo' => 'bar',
'fee' => 'faa',
'laa' => 'lee',
],
];
 
$rules = [
'baz' => [
'array',
'required_array_keys:foo,fee,boo,bar',
],
];
 
$validator = new Validator($trans, $data, $rules, [], []);
 
$validator->passes(); // false
 
// 'The baz field must contain entries for foo, fee, boo, bar'
$validator->messages()->first('baz');

Release Notes

You can see the complete list of new features and updates below and the diff between 8.81.0 and 8.82.0 on GitHub. The following release notes are directly from the changelog:

v8.82.0

Added

  • Added class and method to create cross joined sequences for factories (#40542)
  • Added Transliterate shortcut to the Str helper (#40681)
  • Added array_keys validation rule (#40720)

Fixed

  • Prevent job serialization error in Queue (#40625)
  • Fixed autoresolving model name from factory (#40616)
  • Fixed : strtotime Epoch doesn't fit in PHP int (#40690)
  • Fixed Stringable ucsplit (#40694, #40699)

Changed

  • Server command: Allow xdebug auto-connect to listener feature (#40673)
  • respect null driver in QueueServiceProvider (9435827, 56d433a)
  • Allow to push and prepend config values on new keys (#40723)
Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.

image
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review
Bacancy logo

Bacancy

Supercharge your project with a seasoned Laravel developer with 4-6 years of experience for just $3200/month. Get 160 hours of dedicated expertise & a risk-free 15-day trial. Schedule a call now!

Bacancy
Tinkerwell logo

Tinkerwell

The must-have code runner for Laravel developers. Tinker with AI, autocompletion and instant feedback on local and production environments.

Tinkerwell
Get expert guidance in a few days with a Laravel code review logo

Get expert guidance in a few days with a Laravel code review

Expert code review! Get clear, practical feedback from two Laravel devs with 10+ years of experience helping teams build better apps.

Get expert guidance in a few days with a Laravel code review
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Shift logo

Shift

Running an old Laravel version? Instant, automated Laravel upgrades and code modernization to keep your applications fresh.

Shift
Harpoon: Next generation time tracking and invoicing logo

Harpoon: Next generation time tracking and invoicing

The next generation time-tracking and billing software that helps your agency plan and forecast a profitable future.

Harpoon: Next generation time tracking and invoicing
Lucky Media logo

Lucky Media

Get Lucky Now - the ideal choice for Laravel Development, with over a decade of experience!

Lucky Media
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS Starter Kit

SaaSykit is a Multi-tenant Laravel SaaS Starter Kit that comes with all features required to run a modern SaaS. Payments, Beautiful Checkout, Admin Panel, User dashboard, Auth, Ready Components, Stats, Blog, Docs and more.

SaaSykit: Laravel SaaS Starter Kit

The latest

View all →
Generate Secure, Memorable Passphrases in PHP with PHP Passphrase image

Generate Secure, Memorable Passphrases in PHP with PHP Passphrase

Read article
FrankenPHP v1.11.2 Released With 30% Faster CGO, 40% Faster GC, and Security Patches image

FrankenPHP v1.11.2 Released With 30% Faster CGO, 40% Faster GC, and Security Patches

Read article
Capture Web Page Screenshots in Laravel with Spatie's Laravel Screenshot image

Capture Web Page Screenshots in Laravel with Spatie's Laravel Screenshot

Read article
Nimbus: An In-Browser API Testing Playground for Laravel image

Nimbus: An In-Browser API Testing Playground for Laravel

Read article
Laravel 12.51.0 Adds afterSending Callbacks, Validator whenFails, and MySQL Timeout image

Laravel 12.51.0 Adds afterSending Callbacks, Validator whenFails, and MySQL Timeout

Read article
Handling Large Datasets with Pagination and Cursors in Laravel MongoDB image

Handling Large Datasets with Pagination and Cursors in Laravel MongoDB

Read article