Skip to content

Commit e4341a5

Browse files
committed
chore: release v3.11.8
1 parent 86e87b4 commit e4341a5

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.11.7](https://github.com/tempestphp/tempest-framework/compare/v3.11.6..3.11.7) — 2026-06-16
5+
## [3.11.8](https://github.com/tempestphp/tempest-framework/compare/v3.11.7..3.11.8) — 2026-06-22
6+
7+
### 🐛 Bug fixes
8+
9+
- **database**: use correct return type for IsDatabaseModel::resolve (#2178) ([b01cd64](https://github.com/tempestphp/tempest-framework/commit/b01cd64d22b65a622a16bf504c4429b38e65f583))
10+
- **discovery**: ignore duplicate pest tests during discovery (#2177) ([86e87b4](https://github.com/tempestphp/tempest-framework/commit/86e87b4f2989eae6c713bdaecd5ba415495c70c0))
11+
12+
13+
## [3.11.7](https://github.com/tempestphp/tempest-framework/compare/v3.11.6..v3.11.7) — 2026-06-16
614

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

0 commit comments

Comments
 (0)