From 707f8699644a7b43ff5089ffb8ae097a8181637d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 07:15:11 +0000 Subject: [PATCH 1/2] Bump axios in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [axios](https://github.com/axios/axios). Updates `axios` from 0.25.0 to 1.15.2 - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v0.25.0...v1.15.2) --- updated-dependencies: - dependency-name: axios dependency-version: 1.15.2 dependency-type: direct:development dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7a9aecdf30..ffe70ccd56 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "production": "mix --production" }, "devDependencies": { - "axios": "^0.25", + "axios": "^1.15", "laravel-mix": "^6.0.6", "lodash": "^4.17.19", "postcss": "^8.1.14" From 7c60ba371bfc7b9cc1c157b401a471e34d65b558 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Thu, 23 Apr 2026 07:15:44 +0000 Subject: [PATCH 2/2] Apply fixes from StyleCI --- app/Api/v1/TokenAuthController.php | 4 ++-- app/Http/Controllers/Auth/ForgotPasswordController.php | 4 ++-- app/Http/Controllers/Auth/PasswordController.php | 4 ++-- app/Http/Controllers/Client/helpdesk/UnAuthController.php | 4 ++-- app/Http/Middleware/JwtAuthenticate.php | 1 + lang/es/lang.php | 1 + lang/es/pagination.php | 1 + lang/es/passwords.php | 1 + lang/es/validation.php | 1 + lang/nl/lang.php | 1 + lang/nl/pagination.php | 1 + lang/nl/passwords.php | 1 + lang/nl/validation.php | 1 + lang/pt-br/lang.php | 1 + lang/pt-br/pagination.php | 1 + lang/pt-br/passwords.php | 1 + lang/pt-br/validation.php | 1 + lang/pt/pagination.php | 1 + lang/pt/passwords.php | 1 + lang/pt/validation.php | 1 + lang/zh-hans/lang.php | 1 + lang/zh-hans/pagination.php | 1 + lang/zh-hans/password.php | 1 + lang/zh-hans/validation.php | 1 + public/ckeditor/samples/old/sample_posteddata.php | 1 + routes/update.php | 1 + 26 files changed, 30 insertions(+), 8 deletions(-) diff --git a/app/Api/v1/TokenAuthController.php b/app/Api/v1/TokenAuthController.php index a913282e72..395127b2c1 100644 --- a/app/Api/v1/TokenAuthController.php +++ b/app/Api/v1/TokenAuthController.php @@ -176,8 +176,8 @@ public function forgotPassword(Request $request) $password_reset_table = \DB::table('password_resets')->where('email', '=', $user->email)->first(); if (isset($password_reset_table)) { $password_reset_table = \DB::table('password_resets')->where('email', '=', $user->email)->update(['token' => $code, 'created_at' => $date]); - // $password_reset_table->token = $code; - // $password_reset_table->update(['token' => $code]); + // $password_reset_table->token = $code; + // $password_reset_table->update(['token' => $code]); } else { $create_password_reset = \DB::table('password_resets')->insert(['email' => $user->email, 'token' => $code, 'created_at' => $date]); } diff --git a/app/Http/Controllers/Auth/ForgotPasswordController.php b/app/Http/Controllers/Auth/ForgotPasswordController.php index 3ede1033d5..c10a09bf78 100644 --- a/app/Http/Controllers/Auth/ForgotPasswordController.php +++ b/app/Http/Controllers/Auth/ForgotPasswordController.php @@ -58,8 +58,8 @@ public function sendResetLinkEmail(Request $request) $password_reset_table = DB::table('password_resets')->where('email', '=', $user->email)->first(); if (isset($password_reset_table)) { $password_reset_table = DB::table('password_resets')->where('email', '=', $user->email)->update(['token' => $code, 'created_at' => $date]); - // $password_reset_table->token = $code; - // $password_reset_table->update(['token' => $code]); + // $password_reset_table->token = $code; + // $password_reset_table->update(['token' => $code]); } else { $create_password_reset = DB::table('password_resets')->insert(['email' => $user->email, 'token' => $code, 'created_at' => $date]); } diff --git a/app/Http/Controllers/Auth/PasswordController.php b/app/Http/Controllers/Auth/PasswordController.php index 9c783fd5c7..437cc3b725 100644 --- a/app/Http/Controllers/Auth/PasswordController.php +++ b/app/Http/Controllers/Auth/PasswordController.php @@ -63,8 +63,8 @@ public function postEmail(Request $request) $password_reset_table = \DB::table('password_resets')->where('email', '=', $user->email)->first(); if (isset($password_reset_table)) { $password_reset_table = \DB::table('password_resets')->where('email', '=', $user->email)->update(['token' => $code, 'created_at' => $date]); - // $password_reset_table->token = $code; - // $password_reset_table->update(['token' => $code]); + // $password_reset_table->token = $code; + // $password_reset_table->update(['token' => $code]); } else { $create_password_reset = \DB::table('password_resets')->insert(['email' => $user->email, 'token' => $code, 'created_at' => $date]); } diff --git a/app/Http/Controllers/Client/helpdesk/UnAuthController.php b/app/Http/Controllers/Client/helpdesk/UnAuthController.php index b6b4d8edbf..b13c6f2f31 100755 --- a/app/Http/Controllers/Client/helpdesk/UnAuthController.php +++ b/app/Http/Controllers/Client/helpdesk/UnAuthController.php @@ -344,8 +344,8 @@ public static function changeLanguage($lang) // app()->setLocale($lang); \Cache::forever('language', $lang); - // dd(Cache::get('language')); - // dd() + // dd(Cache::get('language')); + // dd() } else { return false; } diff --git a/app/Http/Middleware/JwtAuthenticate.php b/app/Http/Middleware/JwtAuthenticate.php index 7b1a38006b..c3ed5af429 100644 --- a/app/Http/Middleware/JwtAuthenticate.php +++ b/app/Http/Middleware/JwtAuthenticate.php @@ -1,4 +1,5 @@
 
 -------------------------------------------------------------------------------------------
diff --git a/routes/update.php b/routes/update.php
index 344d54181d..4ba463e81c 100644
--- a/routes/update.php
+++ b/routes/update.php
@@ -1,4 +1,5 @@