Laravel 10.38 发布,新增 Blade @session 指令

发布于 作者

本周,Laravel 团队发布了 v10.38,其中包含 fromRoute() 测试助手、Blade @session 指令、SQLite 的基本 whereJsonContains 支持等等。

作为 Laravel 每周发布的一部分,该团队还将 Vite 5 支持推广到所有 Laravel 一方软件包。例如,当您运行 laravel new 创建新的 Laravel 应用程序或安装 Breeze 时,您将默认使用 Vite 5!

以下是对本周 Laravel 10.38 中引入的新功能的更多信息

添加 fromRoute() 测试助手

@fragkp 为在功能测试中断言重定向响应贡献了 fromRoute() 测试助手。此方法是将路由传递给 from() 测试用例方法的语法糖

// Using the `from()` method
$this->from(route('index'))
->get(route('language', ['language' => 'de']))
->assertRedirectToRoute('index');

现在,您可以将字符串传递给 fromRoute() 方法以方便使用

$this->fromRoute('index') // changed
->get(route('language', ['language' => 'de']))
->assertRedirectToRoute('index');

添加 charsetcollation 方法到 Blueprint

@gcazin 为架构 Blueprint 类贡献了两种用于定义字符集和排序规则的新方法

// via property
Schema::table('foo', function (Blueprint $table) {
$table->charset = 'utf8mb4';
$table->collation = 'utf8mb4_unicode_ci';
 
// ...
});
 
// New methods
Schema::table('foo', function (Blueprint $table) {
$table->charset('utf8mb4');
$table->collation('utf8mb4_unicode_ci');
 
// ...
});

这些是新方法,因此现有的属性赋值将按预期继续工作。

添加 Blade @session 指令

Jared Lewis 贡献了 @session blade 指令来检查会话值是否存在。它还支持嵌入式 @session 使用

{{-- Before --}}
@if(session('status'))
<div class="alert alert-success" role="alert">
{{ session('status') }}
</div>
@endif
 
{{-- After --}}
@session('status')
<div class="alert alert-success" role="alert">
{{ $value }}
</div>
@endsession

添加 SQLite 对 whereJsonContains 的支持

Daniele Ambrosino 贡献了使用 SQLite 数据库的 whereJsonContains 支持

SQLite 从 3.38.0 版本开始默认添加了 JSON 支持。但是,SQLiteGrammar 目前不支持 whereJsonContainswhereJsonDoesntContain 方法,无论 SQLite 版本如何。

以下是从拉取请求描述中的示例

$users = DB::table('users')
->whereJsonContains('options->languages', 'en')
->get();
 
/*
select * from "users"
where exists (select 1 from json_each("options", '$."languages"') where "json_each"."value" is ?)
*/
 
//
$users = DB::table('users')
->whereJsonContains('options->languages', false);
// the `where` part would look like: `where "json_each"."value" is false`

添加 Conditionable 到 Pipeline

@shane-zeng 贡献了将 Conditionable 特性添加到管道,这使您能够编写没有奇怪条件的管道。

以下是如何在 Laravel 10.38 之前编写带条件的管道的方式

$pipeline = Pipeline::send($user)
->through([
GenerateProfilePhoto::class,
]);
 
if (! $user->isAdmin) {
$pipeline->pipe([
SendWelcomeEmail::class,
ActivateSubscription::class,
]);
}
 
$user = $pipeline->then(fn (User $user) => $user);

现在,您可以使用 Conditionablewhenunless 方法无缝地链接管道逻辑

$user = Pipeline::send($user)
->through([
GenerateProfilePhoto::class,
])
->when(! $user->isAdmin, function (Pipeline $pipeline) {
$pipeline->pipe([
SendWelcomeEmail::class,
ActivateSubscription::class,
]);
})
->then(fn (User $user) => $user);

提高 Arr::dot() 性能

@bastien-phi 贡献了一个更新,改进了 Arr::dot() 性能;在某些情况下,随着数组项数量的增加,它似乎极大地改善了性能。有关更多详细信息,请参阅 拉取请求 #49386

发布说明

您可以在下面看到新功能和更新的完整列表,以及 10.37.0 和 10.38.0 之间的差异。以下发布说明直接来自 变更日志

v10.38.0

Paul Redmond photo

Laravel 新闻的撰稿人。全栈 Web 开发人员和作家。

归档于
Cube

Laravel 时事通讯

加入 40,000 多名其他开发者,绝不错过任何新的技巧、教程等等。

Laravel Forge logo

Laravel Forge

轻松创建和管理您的服务器,并在几秒钟内部署您的 Laravel 应用程序。

Laravel Forge
Tinkerwell logo

Tinkerwell

Laravel 开发者必备的代码运行器。使用 AI、自动完成和对本地和生产环境的即时反馈进行调试。

Tinkerwell
No Compromises logo

不妥协

Joel 和 Aaron,来自 No Compromises 播客的两名经验丰富的开发者,现在可以为您的 Laravel 项目雇用。 ⬧ 固定费用 7500 美元/月。 ⬧ 无冗长的销售流程。 ⬧ 无合同。 ⬧ 100%退款保证。

不妥协
Kirschbaum logo

Kirschbaum

提供创新和稳定性,以确保您的 Web 应用程序取得成功。

Kirschbaum
Shift logo

Shift

运行旧版本的 Laravel?即时、自动的 Laravel 升级和代码现代化,使您的应用程序保持新鲜。

Shift
Bacancy logo

Bacancy

只需每月 2500 美元,即可为您的项目配备经验丰富的 Laravel 开发者(拥有 4-6 年的经验)。获得 160 小时的专业知识和 15 天的无风险试用。立即预约电话!

Bacancy
Lucky Media logo

Lucky Media

立即获得幸运 - Laravel 开发的理想选择,拥有超过十年的经验!

Lucky Media
Lunar: Laravel E-Commerce logo

Lunar: Laravel 电子商务

Laravel 的电子商务。一个开源软件包,将现代无头电子商务功能的强大功能带入 Laravel。

Lunar: Laravel 电子商务
LaraJobs logo

LaraJobs

官方 Laravel 职位网站

LaraJobs
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS 启动工具包

SaaSykit 是一个 Laravel SaaS 启动工具包,包含运行现代 SaaS 所需的所有功能。支付、精美结账、管理面板、用户仪表板、身份验证、准备好的组件、统计数据、博客、文档等等。

SaaSykit: Laravel SaaS 启动工具包
Rector logo

Rector

您无缝 Laravel 升级的合作伙伴,降低成本,加速创新,助力企业成功。

Rector
MongoDB logo

MongoDB

通过 MongoDB 和 Laravel 的强大集成增强您的 PHP 应用程序,使开发人员能够轻松高效地构建应用程序。支持事务、搜索、分析和移动用例,同时使用熟悉的 Eloquent API。了解 MongoDB 的灵活、现代数据库如何改变您的 Laravel 应用程序。

MongoDB
Maska is a Simple Zero-dependency Input Mask Library image

Maska 是一个简单的零依赖输入掩码库。

阅读文章
Add Swagger UI to Your Laravel Application image

在您的 Laravel 应用程序中添加 Swagger UI

阅读文章
Assert the Exact JSON Structure of a Response in Laravel 11.19 image

在 Laravel 11.19 中断言响应的精确 JSON 结构

阅读文章
Build SSH Apps with PHP and Laravel Prompts image

使用 PHP 和 Laravel Prompts 构建 SSH 应用程序

阅读文章
Building fast, fuzzy site search with Laravel and Typesense image

使用 Laravel 和 Typesense 构建快速、模糊的网站搜索

阅读文章
Add Comments to your Laravel Application with the Commenter Package image

使用 Commenter 包为您的 Laravel 应用程序添加评论

阅读文章