From 73f5789bacd126783319a4ee9647a3748c311db7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 18 Jun 2026 06:17:03 +0200 Subject: [PATCH 1/3] Fix brick/math support --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd66ee1a..f76839af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Fixed * Upgrade brick/math to support versions `^0.14` to `^0.17`; fixed in [#638](https://github.com/ramsey/uuid/pull/638). -* Add support for brick/match `^0.18`. +* Add support for brick/math `^0.18`. ## 4.9.2 - 2025-12-14 From f095bb170314ad664c5bfd77edc4a362a98d5d48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 18 Jun 2026 04:27:55 +0000 Subject: [PATCH 2/3] Fix brick/math version constraint --- composer.json | 2 +- composer.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 8bcb745e..8593ef92 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ ], "require": { "php": "^8.0", - "brick/math": ">=0.8.16 <=0.18", + "brick/math": "^0.8.16 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14 || ^0.15 || ^0.16 || ^0.17 || ^0.18", "ramsey/collection": "^1.2 || ^2.0" }, "require-dev": { diff --git a/composer.lock b/composer.lock index 60185211..07dd7717 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "032f922f13db0cd07e56623afae58dbc", + "content-hash": "371e4cba3635faead1726944b141ec18", "packages": [ { "name": "brick/math", From 7111551ac2800814e6c5017562874db18ff41d26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 18 Jun 2026 06:33:47 +0200 Subject: [PATCH 3/3] Fix typos in CHANGELOG.md --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f76839af..3deeb181 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -421,7 +421,7 @@ The following will be removed in ramsey/uuid 5.0.0: Thrown to indicate that an error occurred while attempting to hash a namespace and name. * `Exception\NodeException` - - Throw to indicate that attempting to fetch or create a node ID encountered + Thrown to indicate that attempting to fetch or create a node ID encountered an error. * `Exception\RandomSourceException` - Thrown to indicate that the source of random data encountered an error. @@ -1195,7 +1195,7 @@ versions leading up to this release.* for generating random bytes (version 4) or time-based (version 1) UUIDs * `CombGenerator` to allow generation of sequential UUIDs * `OpenSslGenerator` to generate random bytes on systems where - `openssql_random_pseudo_bytes()` is present + `openssl_random_pseudo_bytes()` is present * `MtRandGenerator` to provide a fallback in the event other random generators are not present * `RandomLibAdapter` to allow use of [ircmaxell/random-lib]