From af1c72df016f7b360b04cfb95facc0055feeac32 Mon Sep 17 00:00:00 2001 From: Dominik Jain Date: Sat, 2 May 2026 12:21:56 +0200 Subject: [PATCH] :books: Add memory on commit creation --- .serena/memories/creating-commits.md | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .serena/memories/creating-commits.md diff --git a/.serena/memories/creating-commits.md b/.serena/memories/creating-commits.md new file mode 100644 index 0000000000..e61161e2d0 --- /dev/null +++ b/.serena/memories/creating-commits.md @@ -0,0 +1,32 @@ +# Creating Commits + +## Message Format + +``` +:emoji: Subject line (imperative, capitalized, no period, ≤70 chars) + +Body (clear, concise description) + +Co-authored-by: +``` + +## Commit Type Emojis + +`:bug:` bug fix · `:sparkles:` enhancement · `:tada:` new feature · `:recycle:` refactor · `:lipstick:` cosmetic · `:ambulance:` critical fix · `:books:` docs · `:construction:` WIP · `:boom:` breaking · `:wrench:` config · `:zap:` perf · `:whale:` docker · `:paperclip:` other · `:arrow_up:` dep upgrade · `:arrow_down:` dep downgrade · `:fire:` removal · `:globe_with_meridians:` translations · `:rocket:` epic/highlight + +## Changelog (CHANGES.md) + +Update `CHANGES.md` for user-facing or notable changes. Add entry under the current unreleased version in the matching section (`### :boom:`, `### :sparkles:`, `### :bug:`, etc.). + +Entry format: +``` +- Description of change [Taiga #NNNN](https://tree.taiga.io/project/penpot/us/NNNN) +``` +or for GitHub issues/PRs: +``` +- Description of change [Github #NNNN](https://github.com/penpot/penpot/issues/NNNN) +``` + +Changes that affect the JavaScript plugin API must additionally be documented in `plugins/CHANGELOG.md`: + * Add an entry at the top of the file (unreleased section) + * Prefix entries that change the types/signatures in the API with `**plugin-types:**` and changes affecting the runtime with `**plugin-runtime:**`.