From 1e1ca82ba53780bf7dcacf6c3fc46dba2f26aae6 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 6 May 2026 12:24:55 +0000 Subject: [PATCH] :books: Add missing changelog entry and document changelog locations Add changelog entry for the fix-incorrect-invitation-token-handling change (PR #9380) under `## 2.15.0 (Unreleased)` > `:bug: Bugs fixed`. Add a `## Changelogs` section to AGENTS.md documenting both changelog locations (main project: `CHANGES.md`, plugins: `plugins/CHANGELOG.md`). Signed-off-by: Andrey Antukh --- AGENTS.md | 11 +++++++++++ CHANGES.md | 1 + 2 files changed, 12 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 842cd15022..dac88e8261 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -32,6 +32,17 @@ precision while maintaining a strong focus on maintainability and performance. 5. When searching code, prefer `ripgrep` (`rg`) over `grep` — it respects `.gitignore` by default. +## Changelogs + +The project has two changelogs: + +- **Main project changelog**: `CHANGES.md` (root of the repository). Tracks changes for the core Penpot application (backend, frontend, common, render-wasm, exporter, mcp). +- **Plugins changelog**: `plugins/CHANGELOG.md`. Tracks changes for the plugins subproject only. + +When making changes, add a changelog entry to the appropriate file under the +`## (Unreleased)` section in the correct category +(`:sparkles: New features & Enhancements` or `:bug: Bugs fixed`). + ## GitHub Operations To obtain the list of repository members/collaborators: diff --git a/CHANGES.md b/CHANGES.md index f4b0796667..b7e85343a2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -10,6 +10,7 @@ ### :bug: Bugs fixed +- Fix incorrect invitation token handling on register process [Github #9380](https://github.com/penpot/penpot/pull/9380) - Fix incorrect handling of version restore operation [Github #9041](https://github.com/penpot/penpot/pull/9041) - Fix false “text editing” warning when applying tokens [Github #6346](https://github.com/penpot/penpot/issues/9346)