From 7b1e54c42870315fa829c4106cfb226058fd7a7a Mon Sep 17 00:00:00 2001 From: Evan Jacobs Date: Fri, 24 Jul 2026 13:58:05 -0400 Subject: [PATCH] fix(changeset): load changelog-github via default export The package only exports default; named re-exports were undefined and broke `changeset version` on the Release workflow. --- .changeset/changelog.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/changelog.cjs b/.changeset/changelog.cjs index 20905ed..0dc2a17 100644 --- a/.changeset/changelog.cjs +++ b/.changeset/changelog.cjs @@ -1,6 +1,6 @@ /** Wraps `@changesets/changelog-github`, omitting self-thanks for the maintainer login while still thanking other contributors. */ -const github = require("@changesets/changelog-github"); +const github = require("@changesets/changelog-github").default; const NO_THANKS = new Set(["quantizor"]);