Skip to content

Commit 9db5fa7

Browse files
committed
chore: release v3.6.3
1 parent 80bdaba commit 9db5fa7

31 files changed

Lines changed: 103 additions & 95 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [3.6.2](https://github.com/tempestphp/tempest-framework/compare/v3.6.1..3.6.2) — 2026-03-23
5+
## [3.6.3](https://github.com/tempestphp/tempest-framework/compare/v3.6.2..3.6.3) — 2026-03-23
6+
7+
### 🐛 Bug fixes
8+
9+
- **database**: fix is relation loaded and correctly unset properties (#2063) ([a0e1f36](https://github.com/tempestphp/tempest-framework/commit/a0e1f360db449cf35fd7762dbec5be74c977f646))
10+
- **database**: relations joins overshadowing if property name conflict in chain (#2064) ([80bdaba](https://github.com/tempestphp/tempest-framework/commit/80bdabaff50f08b7e17e0ab4d8aea98dbc2a9caf))
11+
12+
13+
## [3.6.2](https://github.com/tempestphp/tempest-framework/compare/v3.6.1..v3.6.2) — 2026-03-23
614

715
### 🐛 Bug fixes
816

packages/auth/composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"description": "A flexible authentication package for Tempest, providing authentication and authorization.",
44
"require": {
55
"php": "^8.5",
6-
"tempest/core": "3.x-dev",
7-
"tempest/router": "3.x-dev",
8-
"tempest/database": "3.x-dev",
9-
"tempest/mapper": "3.x-dev",
6+
"tempest/core": "3.6.3",
7+
"tempest/router": "3.6.3",
8+
"tempest/database": "3.6.3",
9+
"tempest/mapper": "3.6.3",
1010
"league/oauth2-client": "^2.8"
1111
},
1212
"require-dev": {

packages/cache/composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
"php": "^8.5",
66
"psr/cache": "^3.0",
77
"symfony/cache": "^7.3",
8-
"tempest/core": "3.x-dev",
9-
"tempest/clock": "3.x-dev",
10-
"tempest/kv-store": "3.x-dev",
11-
"tempest/container": "3.x-dev"
8+
"tempest/core": "3.6.3",
9+
"tempest/clock": "3.6.3",
10+
"tempest/kv-store": "3.6.3",
11+
"tempest/container": "3.6.3"
1212
},
1313
"require-dev": {
14-
"tempest/clock": "3.x-dev"
14+
"tempest/clock": "3.6.3"
1515
},
1616
"autoload": {
1717
"psr-4": {

packages/clock/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"require": {
55
"php": "^8.5",
66
"psr/clock": "^1.0.0",
7-
"tempest/datetime": "3.x-dev"
7+
"tempest/datetime": "3.6.3"
88
},
99
"autoload": {
1010
"psr-4": {

packages/command-bus/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"description": "A command bus component designed to dispatch commands to their respective handlers.",
44
"require": {
55
"php": "^8.5",
6-
"tempest/core": "3.x-dev",
7-
"tempest/console": "3.x-dev",
8-
"tempest/container": "3.x-dev"
6+
"tempest/core": "3.6.3",
7+
"tempest/console": "3.6.3",
8+
"tempest/container": "3.6.3"
99
},
1010
"autoload": {
1111
"files": [

packages/console/composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
"require": {
77
"php": "^8.5",
88
"symfony/filesystem": "^7.3",
9-
"tempest/core": "3.x-dev",
10-
"tempest/container": "3.x-dev",
11-
"tempest/generation": "3.x-dev",
9+
"tempest/core": "3.6.3",
10+
"tempest/container": "3.6.3",
11+
"tempest/generation": "3.6.3",
1212
"tempest/highlight": "^2.11.4",
13-
"tempest/log": "3.x-dev",
14-
"tempest/reflection": "3.x-dev",
15-
"tempest/support": "3.x-dev",
16-
"tempest/validation": "3.x-dev",
13+
"tempest/log": "3.6.3",
14+
"tempest/reflection": "3.6.3",
15+
"tempest/support": "3.6.3",
16+
"tempest/validation": "3.6.3",
1717
"ext-readline": "*"
1818
},
1919
"suggest": {

packages/container/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"minimum-stability": "dev",
66
"require": {
77
"php": "^8.5",
8-
"tempest/reflection": "3.x-dev",
8+
"tempest/reflection": "3.6.3",
99
"psr/container": "^2.0"
1010
},
1111
"autoload": {

packages/core/composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
"minimum-stability": "dev",
66
"require": {
77
"php": "^8.5",
8-
"tempest/container": "3.x-dev",
9-
"tempest/discovery": "3.x-dev",
10-
"tempest/reflection": "3.x-dev",
11-
"tempest/support": "3.x-dev",
8+
"tempest/container": "3.6.3",
9+
"tempest/discovery": "3.6.3",
10+
"tempest/reflection": "3.6.3",
11+
"tempest/support": "3.6.3",
1212
"vlucas/phpdotenv": "^5.6.1",
1313
"symfony/cache": "^7.3",
1414
"filp/whoops": "^2.15"
1515
},
1616
"require-dev": {
17-
"tempest/validation": "3.x-dev",
18-
"tempest/intl": "3.x-dev"
17+
"tempest/validation": "3.6.3",
18+
"tempest/intl": "3.6.3"
1919
},
2020
"autoload": {
2121
"psr-4": {

packages/core/src/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
interface Kernel
1010
{
11-
public const string VERSION = '3.6.2';
11+
public const string VERSION = '3.6.3';
1212

1313
public string $root { get; }
1414

packages/cryptography/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"minimum-stability": "dev",
66
"require": {
77
"php": "^8.5",
8-
"tempest/container": "3.x-dev",
9-
"tempest/support": "3.x-dev",
10-
"tempest/clock": "3.x-dev"
8+
"tempest/container": "3.6.3",
9+
"tempest/support": "3.6.3",
10+
"tempest/clock": "3.6.3"
1111
},
1212
"autoload": {
1313
"psr-4": {

0 commit comments

Comments
 (0)