search
HomePHP FrameworkLaravelLaravel 7.6 is released! ! !

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();

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())

Secondly, Mark also contributed the isNotEmpty() method

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

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;

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)

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;

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 <heroicon-o-bell></heroicon-o-bell> as an alias for that component, like this:

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

This is better than <svg name="heroicon-o-bell"></svg> 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);

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 逻辑
}

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.

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
This article is reproduced at:learnku. If there is any infringement, please contact admin@php.cn delete
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 methodLaravel framework installation latest methodMar 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 managementlaravel-admin menu managementMar 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 bestWhat version of laravel is the bestMar 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

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

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.