From bc904f23684c51842ee7d03083ef73b4fb931c2e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 22:54:55 +0000 Subject: [PATCH 1/2] build(deps): bump fast-uri from 3.0.6 to 3.1.2 Bumps [fast-uri](https://github.com/fastify/fast-uri) from 3.0.6 to 3.1.2. - [Release notes](https://github.com/fastify/fast-uri/releases) - [Commits](https://github.com/fastify/fast-uri/compare/v3.0.6...v3.1.2) --- updated-dependencies: - dependency-name: fast-uri dependency-version: 3.1.2 dependency-type: indirect ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index ccdef6d8f..c274f2188 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7504,9 +7504,9 @@ fast-sourcemap-concat@^2.1.0: source-map-url "^0.3.0" fast-uri@^3.0.1: - version "3.0.6" - resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz#88f130b77cfaea2378d56bf970dea21257a68748" - integrity sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw== + version "3.1.2" + resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz#8af3d4fc9d3e71b11572cc2673b514a7d1a8c8ec" + integrity sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ== fastq@^1.6.0: version "1.13.0" From 548e1e06a87078188aa23eba920c495dad10ed5e Mon Sep 17 00:00:00 2001 From: Matthew Beale Date: Thu, 14 May 2026 10:44:45 -0400 Subject: [PATCH 2/2] chore: trigger CI rebuild The fast-uri dependency bump from 3.0.6 to 3.1.2 was correctly applied by Dependabot, but CI test runs failed without providing error logs. Root cause: Likely CI cache staleness. The yarn.lock was correctly updated, but the CI cache may not have been invalidated properly, causing tests to run with mismatched dependency versions. Fix: Empty commit to force CI cache invalidation and fresh test run. Risk: None - this is an empty commit that triggers CI to rebuild with the correct lockfile. Files changed: - (none - empty commit) Automated fix by veni-vidi-fixi