Skip to content

Commit 125515c

Browse files
committed
chore: release v2.5.0
1 parent 7ca7d78 commit 125515c

File tree

30 files changed

+103
-86
lines changed

30 files changed

+103
-86
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.4.0](https://github.com/tempestphp/tempest-framework/compare/v2.3.3..2.4.0) — 2025-10-22
5+
## [2.5.0](https://github.com/tempestphp/tempest-framework/compare/v2.4.0..2.5.0) — 2025-11-06
6+
7+
### 🚀 Features
8+
9+
- **core**: support booting in phar (#1672) ([536db47](https://github.com/tempestphp/tempest-framework/commit/536db4750fa5c2d1497e93645199be333a558132))
10+
- **core**: make discovery cache environment variable partial by default (#1682) ([f50af80](https://github.com/tempestphp/tempest-framework/commit/f50af80f5f72ff467b827ef18341b03c2569aef0))
11+
- **view**: add `:isset` attribte (#1675) ([1af3b23](https://github.com/tempestphp/tempest-framework/commit/1af3b23e843d7646617413a57b4fb0a8fa9ff3a4))
12+
- **view**: support single-quote attributes (#1678) ([071993a](https://github.com/tempestphp/tempest-framework/commit/071993ab2b29e3a909812062bfbccaf482c6f2f8))
13+
14+
### 🐛 Bug fixes
15+
16+
- **database**: fix dsn format for mysql connection (#1664) ([6c3cbe2](https://github.com/tempestphp/tempest-framework/commit/6c3cbe24442353d85a6a05d9a5320fb6a01e3301))
17+
- **events**: prevent enum event naming collisions (#1681) ([1602654](https://github.com/tempestphp/tempest-framework/commit/16026543ab6f38d4f676b95c58797d83a56c089d))
18+
- **view**: zero-values in attributes (#1679) ([66dda2f](https://github.com/tempestphp/tempest-framework/commit/66dda2f2f57b4292e96348904901cf27fac84cb8))
19+
- psr-discovery dependency (#1655) ([a1679a1](https://github.com/tempestphp/tempest-framework/commit/a1679a125de8eb32bafe576d78d2af6a829ee641))
20+
21+
22+
## [2.4.0](https://github.com/tempestphp/tempest-framework/compare/v2.3.3..v2.4.0) — 2025-10-22
623

724
### 🚨 Breaking changes
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.5.0",
7+
"tempest/router": "2.5.0",
8+
"tempest/database": "2.5.0",
9+
"tempest/mapper": "2.5.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.5.0",
9+
"tempest/clock": "2.5.0",
10+
"tempest/kv-store": "2.5.0",
11+
"tempest/container": "2.5.0"
1212
},
1313
"require-dev": {
14-
"tempest/clock": "dev-main"
14+
"tempest/clock": "2.5.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.5.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.5.0",
7+
"tempest/console": "2.5.0",
8+
"tempest/container": "2.5.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.5.0",
9+
"tempest/core": "2.5.0",
10+
"tempest/container": "2.5.0",
11+
"tempest/debug": "2.5.0",
12+
"tempest/generation": "2.5.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.5.0",
15+
"tempest/reflection": "2.5.0",
16+
"tempest/support": "2.5.0",
17+
"tempest/validation": "2.5.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.5.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.5.0",
9+
"tempest/discovery": "2.5.0",
10+
"tempest/reflection": "2.5.0",
11+
"tempest/support": "2.5.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.4.0';
11+
public const string VERSION = '2.5.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.5.0",
9+
"tempest/support": "2.5.0",
10+
"tempest/clock": "2.5.0"
1111
},
1212
"autoload": {
1313
"psr-4": {

0 commit comments

Comments
 (0)