Skip to content

Commit a546cfb

Browse files
committed
v0.37.0
1 parent b402f0e commit a546cfb

File tree

10 files changed

+33
-15
lines changed

10 files changed

+33
-15
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.37.0] - 2025-01-07
10+
### Added
11+
- Added support for `ON DUPLICATE KEY UPDATE` in `Insert` class (#414).
12+
- Implemented `Replace` query functionality (#413).
13+
- Added join support for delete and update queries with alias handling (#411).
14+
- Enhanced sorting functionality with multi-order support and null checks (#410).
15+
- Implemented `groupBy` method for SQL queries and updated tests (#404).
16+
- Added support for sub query builder (#403).
17+
- Added `ComponentTemplator` (#402).
18+
- Added set date default timezone configuration (#400).
19+
20+
### Changed
21+
- Refactored to remove backtick query builder (#407).
22+
- Changed `Now::$age` manual age calculation (#408).
23+
24+
### Fixed
25+
- Corrected age calculation and improved code formatting (#405).
26+
927
## [0.36.6] - 2024-10-28
1028
### Fixed
1129
- Fixed dilimater of sql builder alter raname (#398).

split-repo.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
return [
6-
'tag_version' => '^0.36.6',
6+
'tag_version' => '^0.37.0',
77
'split_repositorys' => [
88
'sonypradana/cache' => '/src/System/Cache/',
99
'sonypradana/collection' => '/src/System/Collection/',

src/System/Console/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"require": {
1111
"php": "^8.0",
1212
"sonypradana/validator": "^0.8",
13-
"sonypradana/text": "^0.36.6"
13+
"sonypradana/text": "^0.37.0"
1414
},
1515
"autoload": {
1616
"psr-4": {

src/System/Database/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/collection": "^0.36.6"
12+
"sonypradana/collection": "^0.37.0"
1313
},
1414
"autoload": {
1515
"psr-4": {

src/System/Http/composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"require": {
1111
"php": "^8.0",
1212
"sonypradana/validator": "^0.8",
13-
"sonypradana/collection": "^0.36.6",
14-
"sonypradana/macroable": "^0.36.6",
15-
"sonypradana/text": "^0.36.6"
13+
"sonypradana/collection": "^0.37.0",
14+
"sonypradana/macroable": "^0.37.0",
15+
"sonypradana/text": "^0.37.0"
1616
},
1717
"autoload": {
1818
"psr-4": {

src/System/Router/composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/collection": "^0.36.6",
13-
"sonypradana/http": "^0.36.6",
14-
"sonypradana/text": "^0.36.6"
12+
"sonypradana/collection": "^0.37.0",
13+
"sonypradana/http": "^0.37.0",
14+
"sonypradana/text": "^0.37.0"
1515
},
1616
"autoload": {
1717
"psr-4": {

src/System/Support/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/macroable": "^0.36.6"
12+
"sonypradana/macroable": "^0.37.0"
1313
},
1414
"autoload": {
1515
"psr-4": {

src/System/Text/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"require": {
1111
"php": "^8.0",
1212
"ext-mbstring": "*",
13-
"sonypradana/macroable": "^0.36.6"
13+
"sonypradana/macroable": "^0.37.0"
1414
},
1515
"autoload": {
1616
"psr-4": {

src/System/Time/composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/collection": "^0.36.6",
13-
"sonypradana/support": "^0.36.6",
14-
"sonypradana/text": "^0.36.6"
12+
"sonypradana/collection": "^0.37.0",
13+
"sonypradana/support": "^0.37.0",
14+
"sonypradana/text": "^0.37.0"
1515
},
1616
"autoload": {
1717
"psr-4": {

src/System/View/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/http": "^0.36.6"
12+
"sonypradana/http": "^0.37.0"
1313
},
1414
"autoload": {
1515
"psr-4": {

0 commit comments

Comments
 (0)