diff --git a/docs/release-notes/6.4.1/changelog.ai.txt b/docs/release-notes/6.4.1/changelog.ai.txt
new file mode 100644
index 000000000..fe6b73ff4
--- /dev/null
+++ b/docs/release-notes/6.4.1/changelog.ai.txt
@@ -0,0 +1,12 @@
+AI Context: 6.4.1 Changelog (changelog.mdx)
+
+This file tracks manual edits made after the generation script ran.
+The script reads the "Skipped PRs" section to avoid re-adding removed entries.
+
+## Skipped PRs
+
+(none)
+
+## Manual Rewrites
+
+- **createWebhookVerifyPayload** — Written manually. No GitHub PR exists for this change; the commit was made directly to the release branch. The change exports `createWebhookVerifyPayload` from `@webiny/sdk/webhooks` (not the root barrel, which is browser-safe).
diff --git a/docs/release-notes/6.4.1/changelog.mdx b/docs/release-notes/6.4.1/changelog.mdx
new file mode 100644
index 000000000..4ce0f283d
--- /dev/null
+++ b/docs/release-notes/6.4.1/changelog.mdx
@@ -0,0 +1,21 @@
+---
+id: t4x9p2ks
+title: Webiny 6.4.1 Changelog
+description: See what's new in Webiny version 6.4.1
+---
+
+import { GithubRelease } from "@/components/GithubRelease";
+
+
+
+## Webhooks
+
+### Exported `createWebhookVerifyPayload` from `@webiny/sdk/webhooks`
+
+The `createWebhookVerifyPayload` function is now exported from `@webiny/sdk/webhooks`. It was previously inaccessible, making it impossible to verify webhook payloads in API-only code.
+
+It is intentionally not re-exported from the root `@webiny/sdk` barrel because it is API-only — the rest of the SDK is also safe to use in the browser and admin UI.
+
+```typescript
+import { createWebhookVerifyPayload } from "@webiny/sdk/webhooks";
+```
diff --git a/docs/release-notes/6.4.1/upgrade-guide.mdx b/docs/release-notes/6.4.1/upgrade-guide.mdx
new file mode 100644
index 000000000..d230e4e57
--- /dev/null
+++ b/docs/release-notes/6.4.1/upgrade-guide.mdx
@@ -0,0 +1,61 @@
+---
+id: ujigrskc
+title: Upgrade from 6.4.x to 6.4.1
+description: Learn how to upgrade Webiny from 6.4.x to 6.4.1.
+---
+
+import { Alert } from "@/components/Alert";
+import { AdditionalNotes } from "@/components/upgrade/AdditionalNotes";
+
+
+
+- how to upgrade Webiny from 6.4.x to 6.4.1
+
+
+
+
+
+Make sure to check out the [6.4.1 changelog](./changelog) to get familiar with the changes introduced in this release.
+
+
+
+## Step-by-Step Guide
+
+### 1. Upgrade Webiny Packages
+
+Upgrade all Webiny packages by running the following command:
+
+```bash
+yarn webiny upgrade 6.4.1 --debug
+```
+
+Note that the command above will run upgrades for all available versions of Webiny up to 6.4.1. If there are upgrades for 6.4.1, 6.4.5, they will be ran.
+
+You can omit the version to upgrade to the latest available:
+
+```bash
+yarn webiny upgrade --debug
+```
+
+Once the upgrade has finished, running the `yarn webiny --version` command in your terminal should return **6.4.1**.
+
+
+
+If the above command fails or is not available in your setup, you can run the upgrade script directly via `npx`:
+
+```bash
+npx https://github.com/webiny/webiny-upgrades-v6 6.4.1 --debug
+```
+
+
+
+### 2. Deploy Your Project
+
+Proceed by redeploying your Webiny project:
+
+```bash
+# Execute in your project root.
+yarn webiny deploy --env {environment}
+```
+
+