From 8ae99819cd35628da14855ffa2769f9892e520f2 Mon Sep 17 00:00:00 2001 From: pxlarified Date: Tue, 7 Jul 2026 22:06:37 +0000 Subject: [PATCH 1/2] Fix npm provenance failure by correcting repository URL npm publish --provenance validates that package.json repository.url matches the GitHub repo the build ran in. The URL pointed at the old mizius-studios/OpenBrowser slug while the build runs in miziusLabs/OpenBrowser, causing publish to fail with E422: Error verifying sigstore provenance bundle: Failed to validate repository information ... expected to match https://github.com/miziusLabs/OpenBrowser from provenance Point repository.url at the current repo and use the normalized git+https://...git form to also clear the npm pkg fix warning. Co-authored-by: Codesmith --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 517d13c..f373085 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Minimal local browser-control CLI for OpenBrowser.", "repository": { "type": "git", - "url": "https://github.com/mizius-studios/OpenBrowser" + "url": "git+https://github.com/miziusLabs/OpenBrowser.git" }, "type": "module", "bin": { From 7b52f67c9a869b52f9c629066bb6819e321480d7 Mon Sep 17 00:00:00 2001 From: pxlarified Date: Tue, 7 Jul 2026 22:07:40 +0000 Subject: [PATCH 2/2] Bump version to 2.1.1 Trigger a fresh release now that the provenance repository.url is corrected. The Release workflow's sync:version step will propagate this to extensions/manifest.json and the README badge during publish. Co-authored-by: Codesmith --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f373085..279d0ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pxlarified/browser", - "version": "2.1.0", + "version": "2.1.1", "description": "Minimal local browser-control CLI for OpenBrowser.", "repository": { "type": "git",