Skip to content

Commit f7ab318

Browse files
committed
chore: release v2.3.0
1 parent 7398040 commit f7ab318

File tree

30 files changed

+102
-85
lines changed

30 files changed

+102
-85
lines changed

CHANGELOG.md

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

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

5-
## [2.2.1](https://github.com/tempestphp/tempest-framework/compare/v2.2.0..2.2.1) — 2025-10-03
5+
## [2.3.0](https://github.com/tempestphp/tempest-framework/compare/v2.2.1..2.3.0) — 2025-10-06
6+
7+
### 🚀 Features
8+
9+
- **console**: support variadic argument (#1572) ([b5f4185](https://github.com/tempestphp/tempest-framework/commit/b5f41858d6674efca092d71f3504323392a103f4))
10+
- **container**: support decorators (#1537) ([2d29bd5](https://github.com/tempestphp/tempest-framework/commit/2d29bd5452e2363b4e44b5218df9a9291f1798cf))
11+
- **http**: support database-based sessions (#1605) ([174044c](https://github.com/tempestphp/tempest-framework/commit/174044c7726d8d804465474ab2905c43cc0113df))
12+
- **view**: parse RSS feeds with tempest/view (#1617) ([7398040](https://github.com/tempestphp/tempest-framework/commit/7398040393997d886f59fb4a8ba6d351ee56f9ac))
13+
14+
### 🐛 Bug fixes
15+
16+
- **database**: handle loading circular eager relations (#1556) ([b2e0c75](https://github.com/tempestphp/tempest-framework/commit/b2e0c75c67eb46458d4c8c32f9ae289b4a7ad930))
17+
- **database**: multiple select fields in one statement (#1603) ([cd51bcf](https://github.com/tempestphp/tempest-framework/commit/cd51bcf9a8c9380d216295178517d4202b40561c))
18+
- **http**: improve failed request exception messages (#1598) ([a84ce29](https://github.com/tempestphp/tempest-framework/commit/a84ce292496175de43a3685aece3210863a1fc2d))
19+
- **http**: publish migration during database session driver installation (#1606) ([2d6fa1b](https://github.com/tempestphp/tempest-framework/commit/2d6fa1b843deaddc998f0cd59c9abbc5e03e982c))
20+
21+
22+
## [2.2.1](https://github.com/tempestphp/tempest-framework/compare/v2.2.0..v2.2.1) — 2025-10-03
623

724
### 🐛 Bug fixes
825

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.4",
6-
"tempest/core": "dev-main",
7-
"tempest/router": "dev-main",
8-
"tempest/database": "dev-main",
9-
"tempest/mapper": "dev-main",
6+
"tempest/core": "2.3.0",
7+
"tempest/router": "2.3.0",
8+
"tempest/database": "2.3.0",
9+
"tempest/mapper": "2.3.0",
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.4",
66
"psr/cache": "^3.0",
77
"symfony/cache": "^7.3",
8-
"tempest/core": "dev-main",
9-
"tempest/clock": "dev-main",
10-
"tempest/kv-store": "dev-main",
11-
"tempest/container": "dev-main"
8+
"tempest/core": "2.3.0",
9+
"tempest/clock": "2.3.0",
10+
"tempest/kv-store": "2.3.0",
11+
"tempest/container": "2.3.0"
1212
},
1313
"require-dev": {
14-
"tempest/clock": "dev-main"
14+
"tempest/clock": "2.3.0"
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.4",
66
"psr/clock": "^1.0.0",
7-
"tempest/datetime": "dev-main"
7+
"tempest/datetime": "2.3.0"
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.4",
6-
"tempest/core": "dev-main",
7-
"tempest/console": "dev-main",
8-
"tempest/container": "dev-main"
6+
"tempest/core": "2.3.0",
7+
"tempest/console": "2.3.0",
8+
"tempest/container": "2.3.0"
99
},
1010
"autoload": {
1111
"files": [

packages/console/composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
"minimum-stability": "dev",
66
"require": {
77
"php": "^8.4",
8-
"tempest/cache": "dev-main",
9-
"tempest/core": "dev-main",
10-
"tempest/container": "dev-main",
11-
"tempest/debug": "dev-main",
12-
"tempest/generation": "dev-main",
8+
"tempest/cache": "2.3.0",
9+
"tempest/core": "2.3.0",
10+
"tempest/container": "2.3.0",
11+
"tempest/debug": "2.3.0",
12+
"tempest/generation": "2.3.0",
1313
"tempest/highlight": "^2.11.4",
14-
"tempest/log": "dev-main",
15-
"tempest/reflection": "dev-main",
16-
"tempest/support": "dev-main",
17-
"tempest/validation": "dev-main",
14+
"tempest/log": "2.3.0",
15+
"tempest/reflection": "2.3.0",
16+
"tempest/support": "2.3.0",
17+
"tempest/validation": "2.3.0",
1818
"ext-readline": "*"
1919
},
2020
"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.4",
8-
"tempest/reflection": "dev-main"
8+
"tempest/reflection": "2.3.0"
99
},
1010
"autoload": {
1111
"files": [

packages/core/composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"minimum-stability": "dev",
66
"require": {
77
"php": "^8.4",
8-
"tempest/container": "dev-main",
9-
"tempest/discovery": "dev-main",
10-
"tempest/reflection": "dev-main",
11-
"tempest/support": "dev-main",
8+
"tempest/container": "2.3.0",
9+
"tempest/discovery": "2.3.0",
10+
"tempest/reflection": "2.3.0",
11+
"tempest/support": "2.3.0",
1212
"vlucas/phpdotenv": "^5.6.1",
1313
"symfony/cache": "^7.3",
1414
"filp/whoops": "^2.15"

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 = '2.2.1';
11+
public const string VERSION = '2.3.0';
1212

1313
public string $root {
1414
get;

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.4",
8-
"tempest/container": "dev-main",
9-
"tempest/support": "dev-main",
10-
"tempest/clock": "dev-main"
8+
"tempest/container": "2.3.0",
9+
"tempest/support": "2.3.0",
10+
"tempest/clock": "2.3.0"
1111
},
1212
"autoload": {
1313
"psr-4": {

0 commit comments

Comments
 (0)