Skip to content

Commit 9ff2ff5

Browse files
committed
v5.0.1 updates
1 parent fab6a1e commit 9ff2ff5

File tree

5 files changed

+58
-107
lines changed

5 files changed

+58
-107
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- `Fixed` for any bug fixes.
1313
- `Security` in case of vulnerabilities
1414

15+
## [5.0.1]- 2024.09.09
16+
17+
### Changed
18+
19+
- Updated all dependencies.
20+
1521
## [5.0.0]- 2024.09.04
1622

1723
### Added

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"bayfrontmedia/encryptor": "^2.0",
3838
"bayfrontmedia/php-array-helpers": "^2.0",
3939
"bayfrontmedia/php-hooks": "^2.0",
40-
"bayfrontmedia/php-http-request": "^v3.0",
40+
"bayfrontmedia/php-http-request": "^v3.1",
4141
"bayfrontmedia/php-http-response": "^2.0",
4242
"bayfrontmedia/php-time-helpers": "^2.0",
4343
"bayfrontmedia/route-it": "^3.1",

composer.lock

+49-104
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Abstracts/ExceptionHandler.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ protected function getDataArray(Response $response, Throwable $e): array
3636
'message' => $message,
3737
'type' => get_class($e),
3838
'code' => (string)$e->getCode(),
39-
'path' => (App::getInterface() == App::INTERFACE_HTTP) ? Request::getRequest('path') : '',
39+
'path' => (App::getInterface() == App::INTERFACE_HTTP) ? Request::getRequest(Request::PART_PATH) : '',
4040
'timestamp' => date('c')
4141
]
4242
];

src/Bones.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public function start(string $interface): void
150150
Constants::define('APP_STORAGE_PATH', Constants::get('APP_BASE_PATH') . '/storage');
151151
Constants::define('BONES_BASE_PATH', rtrim(dirname(__FILE__, 2), '/'));
152152
Constants::define('BONES_RESOURCES_PATH', Constants::get('BONES_BASE_PATH') . '/resources');
153-
Constants::define('BONES_VERSION', '5.0.0');
153+
Constants::define('BONES_VERSION', '5.0.1');
154154

155155
// ------------------------- Load environment variables -------------------------
156156

0 commit comments

Comments
 (0)