From f6fbcf54aa467df7eb2f566f625db77e0df67370 Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 26 May 2025 06:07:21 +0200 Subject: [PATCH 1/2] Fix #10367 --- config/app.php | 2 ++ public/v1/js/.gitkeep | 0 2 files changed, 2 insertions(+) mode change 100644 => 100755 public/v1/js/.gitkeep diff --git a/config/app.php b/config/app.php index 35bb4daa8b..a7d1a23524 100644 --- a/config/app.php +++ b/config/app.php @@ -66,6 +66,7 @@ use Illuminate\Queue\QueueServiceProvider; use Illuminate\Redis\RedisServiceProvider; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Config; +use Illuminate\Support\Facades\Lang; use Illuminate\Support\Facades\Route; use Illuminate\Support\Facades\Session; use Illuminate\Support\Facades\URL; @@ -147,6 +148,7 @@ return [ 'Session' => Session::class, 'URL' => URL::class, 'Html' => Html::class, + 'Lang' => Lang::class, 'AccountForm' => AccountForm::class, 'CurrencyForm' => CurrencyForm::class, 'ExpandedForm' => ExpandedForm::class, diff --git a/public/v1/js/.gitkeep b/public/v1/js/.gitkeep old mode 100644 new mode 100755 From 568f71ce637275f3d846dd94a400822ba47824ba Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 26 May 2025 06:07:52 +0200 Subject: [PATCH 2/2] Update changelog. --- changelog.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/changelog.md b/changelog.md index cb43f9e7e1..a7d0fffcf8 100644 --- a/changelog.md +++ b/changelog.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 6.2.16 - 2025-xx-xx + +### Fixed + +- #10367 + ## 6.2.15 - 2025-05-26 ### Fixed