Laravel0Laravel 9.15 Released | Laravel News

[ad_1]

The Laravel team released 9.15 with the ability to list only vendor routes, check if a filesystem folder is empty/not empty, an isJson() string helper, and more:

Only vendors listed in route:list command

Ash Allen contributed a --only-vendor flag to the route:list command. Only vendor routes will appear in the terminal, and the command will ignore your application routes.

This flag is helpful to audit routes that packages may have installed that you’re not aware of otherwise or if you are curious about what routes packages register.

HTTP client “throw unless” method

Mahmoud Mohamed Ramadan contributed a throwUnless() function to the Laravel HTTP client. This method will throw an exception if a server or client error occurred and the given condition is false:

1$response = Http::post(/* ... */);

2$response->throwUnless($condition);

String isJson() method

Daniel Eckermann contributed an isJson() method to the Str and Stringable classes to determine if a string is valid json:

1Str::isJson($data);

2//=> boolean

3 

4Str::of($data)->isJson()

5//=> boolean

6 

7str($data)->isJson();

8//=> boolean

Check if a filesystem directory is empty

@DarkGhostHunter contributed two methods to determine if a filesystem directory is empty or not:

1use Illuminate\Support\Facades\File;

2 

3if (File::isDirectoryEmpty('john/photos')) {

4 return 'You do not have any photos';

5}

6 

7if (File::isDirectoryNotEmpty('john/videos', true)) {

8 return 'You may have one or more videos, even hidden ones.';

9}

Show route list counts

Ash Allen contributed a visual route count to the beginning and end of the route:list CLI output:

Support kebab case for slot name shortcut

Waghabond contributed kebab-case for slot names:

1<!-- /resources/views/components/my-layout.blade.php -->

2<html lang="en">

3 <body>

4 {{ $mySlot }}

5 </body>

6</html>

7 

8<!-- /resources/views/components/child.blade.php -->

9<x-my-layout>

10 {{-- kebab-case slot name --}}

11 <x-slot:my-slot>

12 <div>My super cool content</div>

13 </x-slot:my-slot>

14</x-my-layout>

Release Notes

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

v9.15.0

Added

  • Added –only-vendor option to route:list command (#42549)
  • Added Illuminate/Http/Client/PendingRequest::throwUnless() (#42556)
  • Added Illuminate/Support/Str::isJson() (#42545)
  • Added Illuminate/Filesystem/Filesystem::isEmptyDirectory() (#42559)
  • Added Add counts to route:list command (#42551)
  • Support kebab case for slot name shortcut (#42574)

Reverted

Fixed

  • Fix getting ‘0’ from route parameter in Authorize middleware (#42582)

Changed

  • Retain the original attribute value during validation of an array key with a dot for correct failure message (#42395)
  • Allow bootable test traits to teardown (#42521)
  • Pass thrown exception to $sleepMilliseconds closure in retry helper (#42532)
  • Make HasTimestamps::updateTimestamps chainable (#42533)
  • Remove meaningless parameter in Illuminate/View/Concerns/ManagesEvents (#42546)
  • Map integer parameter to parameter name when resolving binding field (#42571)
  • Conditionable should return HigherOrderWhenProxy only when the args number is exactly 1 (#42555)

[ad_2]

Source link

Leave a Reply

Your email address will not be published. Required fields are marked *