Skip to content

Commit

Permalink
docs: updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Sleon4 committed Jul 27, 2023
1 parent f1bfeb2 commit 320824e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
Expand Down

0 comments on commit 320824e

Please sign in to comment.