Laravel 8.69 发布

发布日期:作者:

Laravel 8.69 Released image

Laravel 团队发布了 8.69 版本,其中包含枚举模型转换、枚举验证规则、Str 和 Stringable 的 mask() 方法以及 v8.x 分支中的最新更改。

枚举模型转换

Mohamed Said 为模型贡献了从 PHP 8.1 开始转换为/从 枚举 的能力。

以下是从 拉取请求 测试中得到的示例

 
enum StringStatus: string
{
case pending = 'pending';
case done = 'done';
}
 
enum IntegerStatus: int
{
case pending = 1;
case done = 2;
}
 
// Model
class EloquentModelEnumCastingTestModel extends Model
{
public $timestamps = false;
protected $guarded = [];
protected $table = 'enum_casts';
 
public $casts = [
'string_status' => StringStatus::class,
'integer_status' => IntegerStatus::class,
];
}

然后您可以在代码中将模型与枚举值进行比较,例如

if ($server->status == ServerStatus::provisioned){
// ...
}

枚举验证规则

Mohamed Said 贡献了一个 enum 验证规则,该规则确保数据在枚举中具有相应的 value。

validator(
['status' => 'pending'],
['status' => [new Enum(ServerStatus::class)]]
)->validate();

在身份验证尝试期间使用回调

@Italo 贡献了在 Auth::attempt() 调用凭据数组中使用回调的能力

Auth::attempt([
'email' => '[email protected]',
function ($builder) {
$builder->where('subscription_expires_at', '<', now());
}
]);

对 Str 和 Stringable 的 Mask 支持

@Italo 贡献了一个 mask() 方法,该方法用重复字符掩盖字符串的一部分

Str::mask('[email protected]', '*', 3);
// my******************
 
Str::mask('+56 9 87654321', '*', -8, 6);
// + 56 9 ******21

自定义 Stringable 转换

Louis-Gabriel 贡献了一个自定义的 AsStringable 转换,该转换将字符串转换为 Stringable 实例

// Illuminate\Support\Stringable instance
$model->title->kebab();

查看 拉取请求 #39410 以获取实现细节。

对 MariaDB 的 Skip Locked 支持

Dries Vints 为 MariaDB (MySQL) 引擎贡献了 SKIP LOCKED 支持。此更新提供了在从数据库中获取记录时跳过已锁定行的支持。

查看 拉取请求 #39396 以获取实现细节。

成功和失败命令断言

Roberto Aguilar 为测试中的命令退出代码贡献了一些便利的断言

// Before
$this->artisan(FooCommand::class)->assertExitCode(0);
$this->artisan(FooCommand::class)->assertExitCode(1);
 
// Using optional convenience methods
$this->artisan(FooCommand::class)->assertSuccessful();
// Assert exit code !== success (0)
$this->artisan(FooCommand::class)->assertFailed();

发行说明

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

v8.69.0

新增

  • 改进异常处理的内容协商 (#39385)
  • 添加对 MariaDB 的 SKIP LOCKED 支持 (#39396)
  • 将字符串转换为 Stringable 的自定义转换 (#39410)
  • 添加 Illuminate/Support/Str::mask() (#39393)
  • 允许将模型属性转换为/从枚举 (#39315)
  • 添加了枚举验证规则 (#39437)
  • 身份验证:允许在凭据数组中使用回调 (#39420)
  • 添加了成功和失败命令断言 (#39435)

修复

  • 修复更改列时 CURRENT_TIMESTAMP 作为默认值 (#39377)
  • 使 accept 标头比较不区分大小写 (#39413)
  • 修复了使用大写翻译参数的回归 (#39424)

更改

  • Illuminate/Foundation/Application::runningUnitTests() 中添加了对 env 解析的边界检查 (#39434)
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

使用经验丰富的 Laravel 开发人员为您的项目提供动力,他们拥有 4-6 年的经验,每月只需 2500 美元。获得 160 小时的专业知识和 15 天的免费试用。立即安排电话!

Bacancy
Lucky Media logo

Lucky Media

立即获得 Lucky - 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 应用程序中添加评论

阅读文章