From cd9fa0b3d324e5912b6d5009d4dc0749a308545d Mon Sep 17 00:00:00 2001 From: Pig Fang Date: Tue, 20 Aug 2019 21:58:11 +0800 Subject: [PATCH] Update changelog [skip ci] --- resources/misc/changelogs/en/next.md | 3 +++ resources/misc/changelogs/zh_CN/next.md | 3 +++ 2 files changed, 6 insertions(+) diff --git a/resources/misc/changelogs/en/next.md b/resources/misc/changelogs/en/next.md index 687736d5..07172408 100644 --- a/resources/misc/changelogs/en/next.md +++ b/resources/misc/changelogs/en/next.md @@ -1,8 +1,11 @@ ## Added - Plugin system: `config.blade.php` as default config file name. +- Plugin system: Allow to registering service providers automatically. +- Plugin system: Added Filters API. - Allow to enable a plugin by running `php artisan plugin:enable {name}`. - Allow to disable a plugin by running `php artisan plugin:disable {name}`. +- Support multiple plugins directories. (Splited by comma in ".env" file.) ## Tweaked diff --git a/resources/misc/changelogs/zh_CN/next.md b/resources/misc/changelogs/zh_CN/next.md index e31f4eb1..9c13d7dd 100644 --- a/resources/misc/changelogs/zh_CN/next.md +++ b/resources/misc/changelogs/zh_CN/next.md @@ -1,8 +1,11 @@ ## 新增 - 插件系统:`config.blade.php` 为默认情况下配置视图文件名 +- 插件系统:支持自动注册服务容器(Service Provider) +- 插件系统:新增 Filters API - 支持以 `php artisan plugin:enable {name}` 的方式开启插件 - 支持以 `php artisan plugin:disable {name}` 的方式关闭插件 +- 支持指定多个插件目录(在 .env 文件中以逗号分隔) ## 调整