Home PHP Framework Laravel Laravel 7.6 is released! ! !

Laravel 7.6 is released! ! !

Apr 21, 2020 pm 01:11 PM

The Laravel team released v7.6.0 yesterday, which contains 13 new features and the latest fixes and changes for the 7.x branch:

Added "until" method to collections

Jason McCreary contributed the Collection::until() method, which can loop through the collection until the element meets the condition and then return the element:

// Before
[$before, $after] = $primes->partition(function ($item) {
    return $item < 11;
});
$before->dump();
// Using until
$passed = $primes->until(11)->dump();
Copy after login

This method uses a closure Or a value compared to a collection.

String Empty Methods

Mark van den Broek provides some convenience methods for Stringable and HtmlString. The first one, the HtmlString::isEmpty() method makes it easier for us to detect empty instances:

$string = new \Illuminate\Support\HtmlString(&#39;&#39;); 
// Previously
if (empty($string->toHtml()))
// Using isEmpty
if ($string->isEmpty())
Copy after login

Secondly, Mark also contributed the isNotEmpty() method

use Illuminate\Support\Stringable;
(new Stringable())->isNotEmpty(); // false
(new Stringable(&#39;Hello World&#39;))->isNotEmpty(); // true
Copy after login

Trim method of Stringable class

Ryan Chandler contributed the ltrim and rtrim methods to the Stringable class, which can trim the characters at the beginning and end of the string:

use Illuminate\Support\Stringable;
echo (new Stringable(&#39; Hello World&#39;))->ltrim(); // &#39;Hello World&#39;
echo (new Stringable(&#39;Hello World &#39;))->rtrim(); // &#39;Hello World&#39;
echo (new Stringable(&#39;/example/&#39;))->rtrim(&#39;/&#39;); // &#39;/example&#39;
Copy after login

Ignore middleware for specific routes

@dsazup provides the functionality to skip middleware when defining routes:

Route::get(&#39;/something&#39;)
    ->skipMiddleware(VerifyCsrfToken::class)
Route::get(&#39;/teams/create&#39;)
    ->skipMiddleware(VerifyUserHasTeam::class)
Copy after login

Http client: Get JSON response As an object

Adrian Nürnberger contributed the object() method, which returns the JSON response body as an object instead of an associative array:

// Array access
Http::get(&#39;some-api.wip&#39;)[&#39;result&#39;];
// Using json()
$response = Http::get(&#39;some-api.wip&#39;)->json();
$response[&#39;result&#39;]
// New option
$response = Http::get(&#39;some-api.wip&#39;)->object();
$response->result;
Copy after login

Component Aliasing

Contributed by Dries Vints Setting an alias for a component:

I came across a scenario where I needed to conditionally render the contents of a component based on its alias. For example, when you have an Svg component and use <x:heroicon-o-bell /> as an alias for that component, like this:

Blade::component(Svg::class, &#39;heroicon-o-bell&#39;);
Copy after login

This is better than <x:svg name="heroicon-o-bell"/> This way is more concise. Adding aliases to the Component class will add many new uses and possibilities for Blade components...

Append Attributes Across an Eloquent Collection

Niels Faurskov Contributed an eloquent collection method append(), which can append specific attributes to the collection:

// Before Laravel 7.6
$collection->each(function($model) {
    $model->append($attribute)
});
// Append method
$collection->append($attribute);
Copy after login

Supports Retry-After method

@RyanDaDeng contributed a method level Support, he can supplement the retryAfter of the queue listener to apply to more advanced use cases:

// listener implementation
public function retryAfter()
{
    // 自定义 retryAfter 逻辑
}
Copy after login

Support Composer new version installed.json format

Jakub Arbet support Snapshot functionality in new versions of Composer 2 (not yet stable), but still backwards compatible with older versions of composer:

Changed in the latest snapshot version of composervendor/composer/installed.json format, thus destroying the function of automatically discovering packages. This PR addresses this issue through backward compatibility with earlier versions of composer.

UUID supports change

Mathieu Tudisco supports the use of the change() method in the uuid column. Before this, the following error would occur:

Unknown column type “uuid” requested.
Copy after login

Release Notes

You can check out the full list of new features and updates on GitHub below along with 7.5.0 and 7.6.0](https:// github.com/laravel/framework/compare/v7.5.0...v7.6.0). The complete release notes for Laravel 7.x can be found in the latest v7 changelog:

v7.6.0

New

● Added Collection::until() Method (#32262)

● Added HtmlString::isEmpty () Method (#32289, #32300)

● Added Illuminate\Support\Stringable::isNotEmpty() Method (#32293)

Illuminate\Support\Stringable Added new classes ltrim() and rtrim() Method (#32288)

● Added the function of ignoring middleware (#32347, 412261c)

● Added Illuminate\Http\Client\Response::object() method (#32341)

● Support setting component alias (#32346)

● Added Illuminate\Database\Eloquent\Collection::append() method (#32324)

● The pivot column of BelongsToMany adds a new "between" statement (#32364)

● Queue monitoring supports retryAfter() method (#32370 )

● Added format support for composer’s new version of installed.json (#32310)

● Added support for uuid changes in database migration files (#32316)

● Allow saving resources to postgresql bytea (#32319)

Fixed

● Fix the *scan method of phpredis (#32336)

● Fix Illuminate\Auth\Notifications\ResetPassword::toMail() (#32345)

● In Illuminate\Translation\Translator::__construct() call setLocale (1c6a504)

● Use mapping to prevent unnecessary array accessin Illuminate\Http\Resources\Json\PaginatedResourceResponse::toResponse() (#32296)

● When pivot is not Prevent timestamp update when modified (#32311)

● Fix the precision bug of CURRENT_TIMESTAMP in Illuminate\Database\Schema\Grammars\MySqlGrammar (#32298)

Modify

● The constructor of HtmlString increases the default value (#32290)

● Use BindingResolutionException to indicate container resolution problems (#32349)

Illuminate\Validation\Concerns\ValidatesAttributes.php :: validateUrl() Use Symfony/Validator 5.0.7 Match (#32315)

Deprecated

● Deprecated elixir function (#32366)

This article is reprinted:

Original address: https://learnku.com /laravel/t/43480

The above is the detailed content of Laravel 7.6 is released! ! !. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to Build a RESTful API with Advanced Features in Laravel? How to Build a RESTful API with Advanced Features in Laravel? Mar 11, 2025 pm 04:13 PM

This article guides building robust Laravel RESTful APIs. It covers project setup, resource management, database interactions, serialization, authentication, authorization, testing, and crucial security best practices. Addressing scalability chall

Laravel framework installation latest method Laravel framework installation latest method Mar 06, 2025 pm 01:59 PM

This article provides a comprehensive guide to installing the latest Laravel framework using Composer. It details prerequisites, step-by-step instructions, troubleshooting common installation issues (PHP version, extensions, permissions), and minimu

laravel-admin menu management laravel-admin menu management Mar 06, 2025 pm 02:02 PM

This article guides Laravel-Admin users on menu management. It covers menu customization, best practices for large menus (categorization, modularization, search), and dynamic menu generation based on user roles and permissions using Laravel's author

How to Implement OAuth2 Authentication and Authorization in Laravel? How to Implement OAuth2 Authentication and Authorization in Laravel? Mar 12, 2025 pm 05:56 PM

This article details implementing OAuth 2.0 authentication and authorization in Laravel. It covers using packages like league/oauth2-server or provider-specific solutions, emphasizing database setup, client registration, authorization server configu

How do I use Laravel's components to create reusable UI elements? How do I use Laravel's components to create reusable UI elements? Mar 17, 2025 pm 02:47 PM

The article discusses creating and customizing reusable UI elements in Laravel using components, offering best practices for organization and suggesting enhancing packages.

What version of laravel is the best What version of laravel is the best Mar 06, 2025 pm 01:58 PM

This article guides Laravel developers in choosing the right version. It emphasizes the importance of selecting the latest Long Term Support (LTS) release for stability and security, while acknowledging that newer versions offer advanced features.

How can I create and use custom validation rules in Laravel? How can I create and use custom validation rules in Laravel? Mar 17, 2025 pm 02:38 PM

The article discusses creating and using custom validation rules in Laravel, offering steps to define and implement them. It highlights benefits like reusability and specificity, and provides methods to extend Laravel's validation system.

What Are the Best Practices for Using Laravel in a Cloud-Native Environment? What Are the Best Practices for Using Laravel in a Cloud-Native Environment? Mar 14, 2025 pm 01:44 PM

The article discusses best practices for deploying Laravel in cloud-native environments, focusing on scalability, reliability, and security. Key issues include containerization, microservices, stateless design, and optimization strategies.

See all articles