Skip to content

Commit

Permalink
v0.36.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SonyPradana committed Sep 18, 2024
1 parent 8524245 commit 3e29c26
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 15 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.36.0] - 2024-09-18
### Added
- Added `HandleExceptions::class` for handle php error (#368), prevent production report.
- Added console write stream using `fwrite` (#369).
- Added Password hash (3 method) (#370) and hash facade (#377).
- Added Cache (`ArrayStorage`, `FileStorage`) and `CacheManager` use (like) psr cache (#378).
- Added `TemplatorDirective::class` to allow costume directive by user (#384).
- Added `JsonTemplator::class` to convert php array to json data (#386).

### Changed
- Changed `handler::class` using debug mode status, and added http response exception (#371).
- Changed http request global `__get()` (use `all()` instead of `source()`) (#382).
- Allowed Templator cache when geting content from file (#383).

## [0.35.6] - 2024-07-25
### Fixed
- Fixed container alias no load (#365).
Expand Down
2 changes: 1 addition & 1 deletion split-repo.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

return [
'tag_version' => '0.35.6',
'tag_version' => '^0.36.0',
'split_repositorys' => [
'sonypradana/cache' => '/src/System/Cache/',
'sonypradana/collection' => '/src/System/Collection/',
Expand Down
2 changes: 1 addition & 1 deletion src/System/Console/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"require": {
"php": "^8.0",
"sonypradana/validator": "^0.8",
"sonypradana/text": "^0.35.6"
"sonypradana/text": "^0.36.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/System/Database/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"require": {
"php": "^8.0",
"sonypradana/collection": "^0.35.6"
"sonypradana/collection": "^0.36.0"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/System/Http/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"require": {
"php": "^8.0",
"sonypradana/validator": "^0.8",
"sonypradana/collection": "^0.35.6",
"sonypradana/macroable": "^0.35.6",
"sonypradana/text": "^0.35.6"
"sonypradana/collection": "^0.36.0",
"sonypradana/macroable": "^0.36.0",
"sonypradana/text": "^0.36.0"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/System/Router/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
],
"require": {
"php": "^8.0",
"sonypradana/collection": "^0.35.6",
"sonypradana/http": "^0.35.6",
"sonypradana/text": "^0.35.6"
"sonypradana/collection": "^0.36.0",
"sonypradana/http": "^0.36.0",
"sonypradana/text": "^0.36.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/System/Support/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"require": {
"php": "^8.0",
"sonypradana/macroable": "^0.35.6"
"sonypradana/macroable": "^0.36.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/System/Text/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"require": {
"php": "^8.0",
"ext-mbstring": "*",
"sonypradana/macroable": "^0.35.6"
"sonypradana/macroable": "^0.36.0"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/System/Time/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
],
"require": {
"php": "^8.0",
"sonypradana/collection": "^0.35.6",
"sonypradana/support": "^0.35.6",
"sonypradana/text": "^0.35.6"
"sonypradana/collection": "^0.36.0",
"sonypradana/support": "^0.36.0",
"sonypradana/text": "^0.36.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/System/View/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"require": {
"php": "^8.0",
"sonypradana/http": "^0.35.6"
"sonypradana/http": "^0.36.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 3e29c26

Please sign in to comment.