From beb3e49d58d268877f7784912ab8e3f5299882e5 Mon Sep 17 00:00:00 2001 From: "Bruno R. Morillo" <111511828+brmorillo@users.noreply.github.com> Date: Wed, 17 Jun 2026 16:33:11 -0300 Subject: [PATCH 1/2] fix: correct repository URL in package.json (util -> utils) npm provenance validation compares package.json repository.url against the actual GitHub repo. The URL had a typo ("util" instead of "utils"), causing E422 Unprocessable Entity on every publish attempt. Co-Authored-By: Claude Opus 4.8 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e148ccc..9e5ab51 100644 --- a/package.json +++ b/package.json @@ -106,7 +106,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/brmorillo/util.git" + "url": "git+https://github.com/brmorillo/utils.git" }, "bugs": { "url": "https://github.com/brmorillo/utils/issues" From 05292ae129baf2fee297fc5763e511059836d0da Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jun 2026 20:02:23 +0000 Subject: [PATCH 2/2] chore(release): 14.0.1 --- CHANGELOG.md | 8 ++++++++ package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54a3b0c..21e2f0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. +## [14.0.1](https://github.com/brmorillo/util/compare/v12.0.0...v14.0.1) (2026-06-17) + + +### Bug Fixes + +* correct repository URL in package.json (util -> utils) ([beb3e49](https://github.com/brmorillo/util/commit/beb3e49d58d268877f7784912ab8e3f5299882e5)) +* dist path ([efd332e](https://github.com/brmorillo/util/commit/efd332e761ec752a9da36fcdf7215845507fc8c1)) + ## [14.0.0](https://github.com/brmorillo/util/compare/v12.0.0...v14.0.0) (2026-06-17) diff --git a/package.json b/package.json index 9e5ab51..ad3d845 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@brmorillo/utils", - "version": "14.0.0", + "version": "14.0.1", "description": "Utility library for JavaScript/TypeScript projects", "main": "dist/index.js", "types": "dist/index.d.ts",