From 58b65b02838ea65b924dc2778d44a63a8c52c105 Mon Sep 17 00:00:00 2001 From: vvillait88 Date: Thu, 27 Aug 2026 20:28:22 -0400 Subject: [PATCH] Release 2.8.0: the wallet screen fails closed when it cannot confirm an approval Minor rather than patch because runtime behavior changes. Both wallet-OFAC paths branched on decision == "deny", so everything that was not literally that string was permitted by structure, including a null decision from an unreadable response. On the compute-first path that would have settled the payment. Both now deny unless the decision is exactly "allow". No exported surface changes, so nothing to migrate. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 72847dc..99fc0eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "agentscore-commerce" -version = "2.7.2" +version = "2.8.0" description = "Agentic commerce SDK for Python: identity middleware (FastAPI, Flask, Django, AIOHTTP, Sanic, ASGI) + payment helpers + 402 builders + discovery + Stripe multichain. The full merchant-side toolkit for AgentScore-powered agentic commerce." readme = "README.md" license = "MIT"