From ceae8c52724442e475560ac8d07ad6fa9267fd05 Mon Sep 17 00:00:00 2001 From: Piotr Tomczewski Date: Fri, 3 Apr 2026 19:24:24 +0200 Subject: [PATCH] feat: add contributor attribution to changelog via changelog-github Switches from the default changelog generator to @changesets/changelog-github, which adds contributor names and PR links to each changelog entry automatically. Co-Authored-By: Claude Sonnet 4.6 --- .changeset/config.json | 2 +- package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.changeset/config.json b/.changeset/config.json index 6e13655..e8c0f50 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -1,6 +1,6 @@ { "$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json", - "changelog": "@changesets/cli/changelog", + "changelog": ["@changesets/changelog-github", { "repo": "callstackincubator/agent-react-devtools" }], "commit": false, "fixed": [], "linked": [], diff --git a/package.json b/package.json index 2296277..cac17c6 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,7 @@ "release": "bun run build && changeset publish" }, "devDependencies": { + "@changesets/changelog-github": "^0.6.0", "@changesets/cli": "^2.27.0" } }