From 3675ee1bdf73d16b25d79c16e89885493d8e8fa8 Mon Sep 17 00:00:00 2001 From: webiny-bot Date: Wed, 3 Jun 2026 14:41:06 +0000 Subject: [PATCH 1/3] chore: generate changelog for 6.4.2 --- docs/release-notes/6.4.2/upgrade-guide.mdx | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 docs/release-notes/6.4.2/upgrade-guide.mdx diff --git a/docs/release-notes/6.4.2/upgrade-guide.mdx b/docs/release-notes/6.4.2/upgrade-guide.mdx new file mode 100644 index 000000000..c52d0490d --- /dev/null +++ b/docs/release-notes/6.4.2/upgrade-guide.mdx @@ -0,0 +1,61 @@ +--- +id: 5wp2gdq4 +title: Upgrade from 6.4.x to 6.4.2 +description: Learn how to upgrade Webiny from 6.4.x to 6.4.2. +--- + +import { Alert } from "@/components/Alert"; +import { AdditionalNotes } from "@/components/upgrade/AdditionalNotes"; + + + +- how to upgrade Webiny from 6.4.x to 6.4.2 + + + + + +Make sure to check out the [6.4.2 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.2 --debug +``` + +Note that the command above will run upgrades for all available versions of Webiny up to 6.4.2. 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.2**. + + + +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.2 --debug +``` + + + +### 2. Deploy Your Project + +Proceed by redeploying your Webiny project: + +```bash +# Execute in your project root. +yarn webiny deploy --env {environment} +``` + + From 213b167a65e3a56d6ba9a6dcff98f80b709a72dc Mon Sep 17 00:00:00 2001 From: webiny-bot Date: Wed, 3 Jun 2026 18:25:23 +0000 Subject: [PATCH 2/3] chore: regenerate release notes for 6.4.2 --- docs/release-notes/6.4.2/upgrade-guide.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release-notes/6.4.2/upgrade-guide.mdx b/docs/release-notes/6.4.2/upgrade-guide.mdx index c52d0490d..7b662fbf5 100644 --- a/docs/release-notes/6.4.2/upgrade-guide.mdx +++ b/docs/release-notes/6.4.2/upgrade-guide.mdx @@ -1,5 +1,5 @@ --- -id: 5wp2gdq4 +id: 1s63m2ds title: Upgrade from 6.4.x to 6.4.2 description: Learn how to upgrade Webiny from 6.4.x to 6.4.2. --- From e182e508efbbcd67fc212fbdca8274096bdcce68 Mon Sep 17 00:00:00 2001 From: webiny-bot Date: Wed, 3 Jun 2026 18:51:05 +0000 Subject: [PATCH 3/3] chore: regenerate release notes for 6.4.2 --- docs/release-notes/6.4.2/changelog.ai.txt | 8 ++++++++ docs/release-notes/6.4.2/changelog.mdx | 22 ++++++++++++++++++++++ docs/release-notes/6.4.2/upgrade-guide.mdx | 2 +- 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 docs/release-notes/6.4.2/changelog.ai.txt create mode 100644 docs/release-notes/6.4.2/changelog.mdx diff --git a/docs/release-notes/6.4.2/changelog.ai.txt b/docs/release-notes/6.4.2/changelog.ai.txt new file mode 100644 index 000000000..e7b4bcf84 --- /dev/null +++ b/docs/release-notes/6.4.2/changelog.ai.txt @@ -0,0 +1,8 @@ +AI Context: 6.4.2 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 + +## Manual Rewrites diff --git a/docs/release-notes/6.4.2/changelog.mdx b/docs/release-notes/6.4.2/changelog.mdx new file mode 100644 index 000000000..9f43001c1 --- /dev/null +++ b/docs/release-notes/6.4.2/changelog.mdx @@ -0,0 +1,22 @@ +--- +id: n2xj47qb +title: Webiny 6.4.2 Changelog +description: See what's new in Webiny version 6.4.2 +--- + +import { GithubRelease } from "@/components/GithubRelease"; +import { Alert } from "@/components/Alert"; + + + +## Headless CMS + +### Fixed Publishing a Previously Unpublished Revision ([#5268](https://github.com/webiny/webiny-js/pull/5268)) + +When a published CMS entry revision was unpublished and then you attempted to publish it again, the operation would fail because the record was incorrectly marked as locked. This has been fixed — you can now re-publish previously unpublished revisions without issues. + +## Admin + +### Fixed Date Formatting Compatibility ([#5270](https://github.com/webiny/webiny-js/pull/5270)) + +Relative date formatting (e.g., "2 hours ago") in the Admin UI was using the Temporal API, which isn't fully supported across all browsers. This has been replaced with a more compatible implementation to ensure consistent behavior. diff --git a/docs/release-notes/6.4.2/upgrade-guide.mdx b/docs/release-notes/6.4.2/upgrade-guide.mdx index 7b662fbf5..4f09f6898 100644 --- a/docs/release-notes/6.4.2/upgrade-guide.mdx +++ b/docs/release-notes/6.4.2/upgrade-guide.mdx @@ -1,5 +1,5 @@ --- -id: 1s63m2ds +id: swate5pw title: Upgrade from 6.4.x to 6.4.2 description: Learn how to upgrade Webiny from 6.4.x to 6.4.2. ---