Skip to content

Commit 838e896

Browse files
committed
chore: release v3.13.2
1 parent 97a7811 commit 838e896

31 files changed

Lines changed: 107 additions & 95 deletions

File tree

CHANGELOG.md

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

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

5-
## [3.13.1](https://github.com/tempestphp/tempest-framework/compare/v3.13.0..3.13.1) — 2026-06-29
5+
## [3.13.2](https://github.com/tempestphp/tempest-framework/compare/v3.13.1..3.13.2) — 2026-07-07
6+
7+
### 🚀 Features
8+
9+
- **validation**: allow validation failures with messages (#2196) ([8838c1e](https://github.com/tempestphp/tempest-framework/commit/8838c1ecb7bf585b2e176d1163cf643c22999b82))
10+
11+
### 🐛 Bug fixes
12+
13+
- **router**: use `Json\encode` for encoding when sending json responses (#2199) ([97a7811](https://github.com/tempestphp/tempest-framework/commit/97a78116e23d5cb8a23a2dfb66f018c9bfb74e42))
14+
- **session**: age flash values at the start of the request (#2198) ([9e4a7eb](https://github.com/tempestphp/tempest-framework/commit/9e4a7eb7e0e1effc474ede6172d9291c2d75a1e7))
15+
16+
17+
## [3.13.1](https://github.com/tempestphp/tempest-framework/compare/v3.13.0..v3.13.1) — 2026-06-29
618

719
### 🐛 Bug fixes
820

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.13.2",
7+
"tempest/router": "3.13.2",
8+
"tempest/database": "3.13.2",
9+
"tempest/mapper": "3.13.2",
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.13.2",
9+
"tempest/clock": "3.13.2",
10+
"tempest/kv-store": "3.13.2",
11+
"tempest/container": "3.13.2"
1212
},
1313
"require-dev": {
14-
"tempest/clock": "3.x-dev"
14+
"tempest/clock": "3.13.2"
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.13.2"
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.13.2",
7+
"tempest/console": "3.13.2",
8+
"tempest/container": "3.13.2"
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.13.2",
10+
"tempest/container": "3.13.2",
11+
"tempest/generation": "3.13.2",
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.13.2",
14+
"tempest/reflection": "3.13.2",
15+
"tempest/support": "3.13.2",
16+
"tempest/validation": "3.13.2",
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.13.2",
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.13.2",
9+
"tempest/discovery": "3.13.2",
10+
"tempest/reflection": "3.13.2",
11+
"tempest/support": "3.13.2",
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.13.2",
18+
"tempest/intl": "3.13.2"
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.13.1';
11+
public const string VERSION = '3.13.2';
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.13.2",
9+
"tempest/support": "3.13.2",
10+
"tempest/clock": "3.13.2"
1111
},
1212
"autoload": {
1313
"psr-4": {

0 commit comments

Comments
 (0)