From d7facb38b64383bc4bf71ed1ebffb381b8654af6 Mon Sep 17 00:00:00 2001 From: galangel Date: Tue, 18 Aug 2026 15:47:11 +0300 Subject: [PATCH] chore(release): 1.2.2 No source changes since 1.2.1. What ships differs anyway, because dependabot bumped vite from ^7.3.1 to ^8.2.1 in #22 and vite is what builds dist. Comparing the published 1.2.1 tarball against a fresh build: dist/index.mjs 101064 -> 94573 (-6491) dist/index.cjs 66917 -> 68068 (+1151) dist/styles.css unchanged type declarations unchanged So this is a rebuilt bundle rather than an empty version bump. It also gives 1.2.2 a valid provenance attestation. Stripping the Co-authored-by trailers rewrote main, so the attestation published for 1.2.1 names commit 005f7cac, which no longer exists in history. That cannot be re-signed, but once 1.2.2 is latest, the version people install has a provenance chain that verifies again. Merging this exercises three things that have never actually run: the registry-based publish gate, the bumped actions including action-gh-release@v3, and auto-publish on push to main without a dispatch. Verified locally with vite 8.2.1: npm ci, typecheck, lint, format:check, test:coverage (354 tests, 19 files), build, and build:storybook all pass. --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index aafbef3..cba3c9e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@galangel/react-tip-magic", - "version": "1.2.1", + "version": "1.2.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@galangel/react-tip-magic", - "version": "1.2.1", + "version": "1.2.2", "license": "Apache-2.0", "dependencies": { "@floating-ui/react": "^0.27.16", diff --git a/package.json b/package.json index 852009d..0e0cd77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@galangel/react-tip-magic", - "version": "1.2.1", + "version": "1.2.2", "description": "A sophisticated, elegant, and performant tooltip library for React with an intelligent floating helper system.", "type": "module", "main": "./dist/index.cjs",