From 5d5dc4e627ff8007f8341f2e7816ac18714036d5 Mon Sep 17 00:00:00 2001 From: Wenbo Han Date: Thu, 22 Jun 2023 18:31:57 +0800 Subject: [PATCH] Upgrade v1.12.3 (#36) --- README.md | 2 +- getting-started/installation.md | 2 +- upgrade/v1.12.md | 14 +++++++++++++- zh/README.md | 2 +- zh/getting-started/installation.md | 2 +- zh/upgrade/v1.12.md | 18 ++++++++++++++++-- 6 files changed, 33 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6df1ae2..ce9ec27 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Welcome star, PR and issues! ## Roadmap -[For Detail](https://github.com/goravel/goravel/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) +[For Detail](https://github.com/goravel/goravel/issues?q=is%3Aissue+is%3Aopen) ## Excellent Extend Packages diff --git a/getting-started/installation.md b/getting-started/installation.md index 8698921..372f164 100644 --- a/getting-started/installation.md +++ b/getting-started/installation.md @@ -10,7 +10,7 @@ ```shell // Download framework -git clone git@github.com:goravel/goravel.git && rm -rf goravel/.git +git clone git@github.com:goravel/goravel.git && rm -rf goravel/.git* // Installation dependencies cd goravel && go mod tidy diff --git a/upgrade/v1.12.md b/upgrade/v1.12.md index ddec8c0..12baaf5 100644 --- a/upgrade/v1.12.md +++ b/upgrade/v1.12.md @@ -2,6 +2,12 @@ [[toc]] +## v1.12.3 + +### Bug Fixes 🐛 + +- [The Problem Of make:package Command Under Windows](#the-problem-of-make-package-command-under-windows) + ## v1.12.2 ### Bug Fixes 🐛 @@ -274,10 +280,16 @@ Version: v1.12.0 Version: v1.12.1 -Fix the panic problem caused by backslash when the `make` command automatically creates folders under windows. +Fix the panic problem caused by backslash when the `make` command automatically creates folders under Windows. ### The Problem Of facades.Gate() Return nil Version: v1.12.2 Fix the problem of `facades.Gate()` return nil + +### The Problem Of make:package Command Under Windows + +Version: v1.12.3 + +The file created by the `make:package` command has a wrong path under Windows. diff --git a/zh/README.md b/zh/README.md index 79d4849..4171769 100644 --- a/zh/README.md +++ b/zh/README.md @@ -23,7 +23,7 @@ Goravel 是一个功能完备、具有良好扩展能力的 Web 应用程序框 ## 路线图 -[For Detail](https://github.com/goravel/goravel/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) +[For Detail](https://github.com/goravel/goravel/issues?q=is%3Aissue+is%3Aopen) ## 优秀扩展包 diff --git a/zh/getting-started/installation.md b/zh/getting-started/installation.md index 3e4b757..4a8c07f 100644 --- a/zh/getting-started/installation.md +++ b/zh/getting-started/installation.md @@ -10,7 +10,7 @@ ```shell // 下载框架 -git clone git@github.com:goravel/goravel.git goravel && rm -rf goravel/.git +git clone git@github.com:goravel/goravel.git goravel && rm -rf goravel/.git* // 安装依赖 cd goravel && go mod tidy diff --git a/zh/upgrade/v1.12.md b/zh/upgrade/v1.12.md index eca5a12..bae0b70 100644 --- a/zh/upgrade/v1.12.md +++ b/zh/upgrade/v1.12.md @@ -2,6 +2,12 @@ [[toc]] +## v1.12.3 + +### Bug 修复 🐛 + +- [Windows 下 make:package 命令的问题](#windows-下-make-package-命令的问题) + ## v1.12.2 ### Bug 修复 🐛 @@ -12,7 +18,7 @@ ### Bug 修复 🐛 -- [windows 下因文件路径引发 panic 的问题](#windows-下因文件路径引发-panic-的问题) +- [Windows 下因文件路径引发 panic 的问题](#windows-下因文件路径引发-panic-的问题) ## v1.12.0 @@ -270,7 +276,7 @@ Version: v1.12.0 | make:job Goravel/Job | app/jobs/Goravel/job.go | | make:rule User/Phone | app/rules/User/phone.go | -### windows 下因文件路径引发 panic 的问题 +### Windows 下因文件路径引发 panic 的问题 Version: v1.12.1 @@ -281,3 +287,11 @@ Version: v1.12.1 Version: v1.12.2 修复 facades.Gate() 返回 nil 的问题。 + +### Windows 下 make:package 命令的问题 + +Version: v1.12.3 + +The file created by the `make:package` command has a wrong path under Windows. + +修复 Windows 下 make:package 命令创建的文件中的路径错误的问题。 \ No newline at end of file