From e9778a968ef746ecf6f8a58b40e7e431f590e3a5 Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Tue, 23 Jul 2024 20:39:12 +0200 Subject: [PATCH 1/2] Update deprecation notice Updates for the new changes in https://github.com/hydephp/develop/pull/1890 --- packages/framework/src/Foundation/Kernel/Hyperlinks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/framework/src/Foundation/Kernel/Hyperlinks.php b/packages/framework/src/Foundation/Kernel/Hyperlinks.php index 0c485b20405..1e352060001 100644 --- a/packages/framework/src/Foundation/Kernel/Hyperlinks.php +++ b/packages/framework/src/Foundation/Kernel/Hyperlinks.php @@ -162,7 +162,7 @@ public function url(string $path = ''): string } // User is trying to get the base URL, but it's not set - // This exception is deprecated and will be removed in v2.0.0, and we will return null instead. + // This exception is deprecated and will be removed in v2.0.0, and we will throw a BadMethodCallException instead. throw new BaseUrlNotSetException(); } From 95190028fe6131da90eb078110f273d702331ecf Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Tue, 23 Jul 2024 20:47:35 +0200 Subject: [PATCH 2/2] Framework version v1.7.3 --- packages/framework/src/Foundation/HydeKernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/framework/src/Foundation/HydeKernel.php b/packages/framework/src/Foundation/HydeKernel.php index acb3719bda6..e6789e939ee 100644 --- a/packages/framework/src/Foundation/HydeKernel.php +++ b/packages/framework/src/Foundation/HydeKernel.php @@ -58,7 +58,7 @@ class HydeKernel implements SerializableContract use Serializable; use Macroable; - final public const VERSION = '1.7.2'; + final public const VERSION = '1.7.3'; protected static self $instance;