From 6f176b3dad00237f4424b2238f11fc9a077ac44b Mon Sep 17 00:00:00 2001 From: Andreas Braun Date: Thu, 19 Sep 2024 08:25:35 +0200 Subject: [PATCH 1/2] Remove usage of deprecated E_STRICT (#1668) --- tests/utils/tools.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils/tools.php b/tests/utils/tools.php index 07142cc32..76d822a18 100644 --- a/tests/utils/tools.php +++ b/tests/utils/tools.php @@ -602,7 +602,7 @@ function severityToString(int $severity): string { 'E_USER_ERROR' => E_USER_ERROR, 'E_USER_WARNING' => E_USER_WARNING, 'E_USER_NOTICE' => E_USER_NOTICE, - 'E_STRICT' => E_STRICT, + 'E_STRICT' => 2048, // E_STRICT was deprecated in PHP 8.4 'E_RECOVERABLE_ERROR' => E_RECOVERABLE_ERROR, 'E_DEPRECATED' => E_DEPRECATED, 'E_USER_DEPRECATED' => E_USER_DEPRECATED, From 8d0323e420a6fe6b0ab739949836e9ce5e3fba87 Mon Sep 17 00:00:00 2001 From: Andreas Braun Date: Thu, 19 Sep 2024 08:25:51 +0200 Subject: [PATCH 2/2] Bump version to 1.21-dev (#1661) --- phongo_version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phongo_version.h b/phongo_version.h index 7356ba077..38727ac5f 100644 --- a/phongo_version.h +++ b/phongo_version.h @@ -22,9 +22,9 @@ * publishing a release. */ /* clang-format off */ -#define PHP_MONGODB_VERSION "1.20.0dev" +#define PHP_MONGODB_VERSION "1.21.0dev" #define PHP_MONGODB_STABILITY "devel" -#define PHP_MONGODB_VERSION_DESC 1,20,0,0 +#define PHP_MONGODB_VERSION_DESC 1,21,0,0 /* clang-format on */ #endif /* PHONGO_VERSION_H */