Laravel 8.34 新增 JSON 类型断言和“禁止”验证规则

发布日期:作者:

JSON Type Assertions and a "prohibited" Validation rule Are Now In Laravel 8.34 image

Laravel 团队发布了 8.34 版本,其中包含流畅 JSON API 中的类型断言、一个“禁止”验证规则、一个新的事件模拟断言,以及 8.x 分支的最新更改。

route:list 命令中的排除路径选项

@JUNO_OKYOroute:list 命令贡献了一个 --without-path 标志。此标志将接受一个逗号分隔的路由路径列表,用于排除这些路径。一些软件包添加了可能与使用软件包的应用程序开发人员无关的路由。在这种情况下,他们可以使用

php artisan route:list --exclude-path=telescope

字符串 remove() 方法

Luke DowningIlluminate\Support 中的 StrStringable 类贡献了一个 remove() 方法。remove() 方法将接受要从字符串中删除的字符串字符。

// Fbar
Str::remove('o', 'Foobar');
Str::of('Foobar')->remove('o');
 
// Fbr
Str::remove(['o', 'a'], 'Foobar');
Str::of('Foobar')->remove(['o', 'a']);
 
// oobar (case-insensitive)
Str::remove('f', 'Foobar', false);
Str::of('Foobar')->remove('f', false);

流畅 JSON 断言中的断言类型

Sven Luijten 为流畅 JSON 断言 API 贡献了 whereTypewhereAllType 方法。

$response->assertJson(fn (Assert $json) => $json
->whereType('name', 'string')
->whereAllType(['name' => 'string', 'age' => 'integer'])
);
 
// Union types are supported
$response->assertJson(fn (Assert $json) => $json
->whereType('name', 'string|null')
->whereType('age', ['integer', 'null'])
);

禁止验证规则

Philo Hermans 贡献了一个新的 禁止验证规则,如果请求体中存在禁止字段(不可变),则该规则将使验证失败。如果您有一个不应该更改的不可变值,但您的 API 在用户尝试更新该值时没有失败,这将非常有用。

相反,如果您在 API 请求中检测到不可变属性,您可以返回验证错误。

// PUT /api/licenses/123-456
// {"name":"hello-world", "key":"random-key"}
 
$validated = $request->validate([
'name' => 'required|max:255',
'key' => 'prohibited',
]);
 
// Response: 422
// The key field is prohibited

对 Distinct 验证规则的严格验证

@gilbertorussidistinct 验证规则贡献了一个 strict 参数。distinct 规则使用 PHP 的 in_array 函数,如果您传递 strict 参数,则 in_array 检查将变为严格。以下是来自 拉取请求 的一个示例。

$v = new Validator(
$trans,
['foo' => ['0100', '100']],
['foo.*' => 'distinct:strict']
);
 
// Without strict the above data would fail validation.
$this->assertTrue($v->passes());

断言事件监听器

Luís Dalmolin 贡献了断言事件监听器是否已附加到预期事件的功能。

Event::fake();
 
Event::assertListening(
Registered::class,
SendEmailVerificationNotification::class
);
 
Event::assertListening(
Illuminate\Auth\Events\Login::class,
[UserEventSubscriber::class, 'handleUserLogin']
);

延迟查询构建方法

Joseph Silber 为查询构建器贡献了 lazy()lazyById() 方法,它们将“在幕后分块结果,并返回单个 LazyCollection 结果”。

$lazyCollection = User::lazy();
 
User::lazy()->each->greet();
User::lazy()->map->calculateOutstandingBalance();

有关 lazy() 的文档将很快发布,但现在,我建议您查看 拉取请求 #36699,以了解有关此方法为何有用及其工作原理的更多详细信息。

发布说明

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

v8.34.0

鼓舞人心

  • 添加了更多鼓舞人心的语录 (92b7bde)

添加

  • 添加了用于检测连接丢失的 WSREP 通信链路故障 (#36668)
  • route:list 命令添加了“exclude-path”选项 (#36619, 76e11ee)
  • 添加了 Illuminate\Support\Str::remove()Illuminate\Support\Stringable::remove() 方法 (#36639, 7b0259f, 20e2470)
  • 添加了 Illuminate\Database\Eloquent\Relations\MorphPivot::getMorphType() (#36640, 7e08215)
  • 添加了断言以验证 JSON 中键的类型 (#36638)
  • 添加了禁止验证规则 (#36667)
  • 为 distinct 验证规则添加了严格比较 (#36669)
  • 添加了 Illuminate\Translation\FileLoader::getJsonPaths() (#36689)
  • 添加了 Illuminate\Support\Testing\Fakes\EventFake::assertAttached() (#36690)
  • Illuminate\Database\Concerns\BuildsQueries 添加了 lazy()lazyById() 方法 (#36699)

修复

  • 修复了使用 PhpRedis 和集群 Redis 实例时使用 cache:clear 的问题。(#36665)
  • 修复了在 Illuminate\Validation\Concerns\FormatsMessages::getDisplayableValue() 中将必需的 :input 替换为 PHP 8.1 中的 null 的问题 (#36622)
  • 修复了 artisan schema:dump 错误 (#36698)

变更

  • 调整流畅断言 (#36620)
  • 为 schedule:work artisan 命令输出添加了时间戳引用 (#36621)
  • 期望自定义 Markdown 可邮件主题位于 mail 子目录中 (#36673)
  • 在无法创建 LockableFile 时抛出异常 (#36674)

重构

  • 始终优先使用类型安全字符串比较 (#36657)
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 是来自不妥协播客的两位经验丰富的开发人员,现在可以为您的 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

将 Swagger UI 添加到您的 Laravel 应用程序

阅读文章
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 应用程序添加评论

阅读文章