From 9389f0bab01786796be256e95a9dc6911fa0fc34 Mon Sep 17 00:00:00 2001 From: Samuel Gillespie Date: Thu, 19 Jun 2025 21:52:55 +1000 Subject: [PATCH 1/2] Allow newer versions of HTTP::HPACK Recent patches to the community maintained HTTP::HPACK module fix issues preventing the installation of the module on windows. This change allows Cro::HTTP to use the current version of the dependancy, making the installation of Cro on windows a little easier. --- META6.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/META6.json b/META6.json index 110924d..725acab 100644 --- a/META6.json +++ b/META6.json @@ -13,7 +13,7 @@ "OO::Monitors", "IO::Path::ChildSecure", "Base64", - "HTTP::HPACK:ver<1.0.1>", + "HTTP::HPACK:ver<1.0.1+>", "Cro::Core:ver<0.8.10+>:api<0>:auth", "Cro::TLS:ver<0.8.10+>:api<0>:auth", "JSON::Fast", From 6d1b48a662e459ef0ae5ebd95a488de8f1783e79 Mon Sep 17 00:00:00 2001 From: Samuel Gillespie Date: Thu, 19 Jun 2025 22:04:54 +1000 Subject: [PATCH 2/2] Update Changes --- Changes | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Changes b/Changes index e72ab89..2e92e06 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Cro::HTTP +{{$NEXT}} + - Permit use of updated HTTP::Pack module, Samuel Gillespie++ + 0.8.10 - Add two `Response` convenience methods: `not-supported` (500) and `server-error` (505).