From 320824e00e61ef364288b5af7ad82d3150698969 Mon Sep 17 00:00:00 2001 From: Sergio Leon Date: Thu, 27 Jul 2023 11:51:06 -0500 Subject: [PATCH] docs: updated changelog --- .env.example | 2 +- CHANGELOG.md | 6 +++++- routes/web.php | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 4cd99cea..001acccd 100644 --- a/.env.example +++ b/.env.example @@ -1,7 +1,7 @@ ######################################################### ##### SERVER INFORMATION -------------------------- ##### ######################################################### -APP_NAME="Lion-Framework" +APP_NAME="Lion App" SERVER_DATE_TIMEZONE="America/Bogota" SERVER_URL="http://127.0.0.1:8000" SERVER_URL_AUD="http://127.0.0.1:5173" diff --git a/CHANGELOG.md b/CHANGELOG.md index e7417155..47d596e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,16 @@ # Release Notes -## [v14.29.1](https://github.com/Lion-Packages/framework/compare/v14.29.0...v14.29.1) (2023-07-24) +## [v14.29.1](https://github.com/Lion-Packages/framework/compare/v14.29.0...v14.29.1) (2023-07-27) ### Added - echo function has been added to display data from the terminal with output and store the string in logger +- multiple requests with the same name for collections in postman have been supported ### Changed - output to run migrations has been modified +- lion/route library v8.7.0 has been updated +- resource has been updated to display available routes +- json output format has been modified to generate postman collections ### Fixed - fixed validation to add generated elements in migrations diff --git a/routes/web.php b/routes/web.php index 2d3036e6..4e885b22 100644 --- a/routes/web.php +++ b/routes/web.php @@ -19,7 +19,7 @@ Route::post("user-registration", [UsersController::class, 'createUsers']); Route::prefix('auth', function() { - Route::match(["get", "post"], 'login', [LoginController::class, 'auth']); + Route::post('login', [LoginController::class, 'auth']); Route::middleware(['jwt-without-signature', 'jwt-authorize', 'session'], function() { Route::match(['get', 'post'], 'refresh', [SessionController::class, 'refresh']);