Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

```shell
// Download framework
git clone [email protected]:goravel/goravel.git && rm -rf goravel/.git
git clone [email protected]:goravel/goravel.git && rm -rf goravel/.git*

// Installation dependencies
cd goravel && go mod tidy
Expand Down
14 changes: 13 additions & 1 deletion upgrade/v1.12.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 🐛
Expand Down Expand Up @@ -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.
2 changes: 1 addition & 1 deletion zh/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

## 优秀扩展包

Expand Down
2 changes: 1 addition & 1 deletion zh/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

```shell
// 下载框架
git clone [email protected]:goravel/goravel.git goravel && rm -rf goravel/.git
git clone [email protected]:goravel/goravel.git goravel && rm -rf goravel/.git*

// 安装依赖
cd goravel && go mod tidy
Expand Down
18 changes: 16 additions & 2 deletions zh/upgrade/v1.12.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

[[toc]]

## v1.12.3

### Bug 修复 🐛

- [Windows 下 make:package 命令的问题](#windows-下-make-package-命令的问题)

## v1.12.2

### Bug 修复 🐛
Expand All @@ -12,7 +18,7 @@

### Bug 修复 🐛

- [windows 下因文件路径引发 panic 的问题](#windows-下因文件路径引发-panic-的问题)
- [Windows 下因文件路径引发 panic 的问题](#windows-下因文件路径引发-panic-的问题)

## v1.12.0

Expand Down Expand Up @@ -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

Expand All @@ -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 命令创建的文件中的路径错误的问题。