Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/release-notes/6.4.7/changelog.ai.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
AI Context: 6.4.7 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
31 changes: 31 additions & 0 deletions docs/release-notes/6.4.7/changelog.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
id: f8avotn5
title: Webiny 6.4.7 Changelog
description: See what's new in Webiny version 6.4.7
---

import { GithubRelease } from "@/components/GithubRelease";

<GithubRelease version={"6.4.7"} />

## Headless CMS

### Fixed Scheduler Updates Failing When AWS Event Does Not Exist ([#5558](https://github.com/webiny/webiny-js/pull/5558))

When updating a scheduled action, the operation would fail if the underlying AWS EventBridge Scheduler event had been deleted or did not exist. The scheduler now checks whether the event exists before attempting an update — if it's missing, a new event is created instead.

### Fixed Folder Drag-and-Drop Confirmation Not Blocking Visual Update ([#5560](https://github.com/webiny/webiny-js/pull/5560))

When using the `Browser.Folder.DropConfirmation` configuration to require confirmation before moving folders, the folder would visually move to its new position before the confirmation dialog appeared. If you cancelled the dialog, the folder would snap back — a confusing experience. The visual update now waits until you confirm or cancel the move, and cancelling leaves the folder in its original position.

### Fixed Dynamic Zone Template Edit Dialog and Description Overflow ([#5564](https://github.com/webiny/webiny-js/pull/5564))

Clicking **Edit** on a collapsed Dynamic Zone template accordion item now correctly opens the edit dialog. Previously, the dialog would only open when the accordion was already expanded.

Additionally, long template descriptions in the "Insert a template" dialog no longer break the layout. In list view, text now wraps naturally; in grid view, descriptions are clamped to 2 lines with an ellipsis.

## Admin

### Fixed Sidebar Menu Overflow with Long Content Model Names ([#5561](https://github.com/webiny/webiny-js/pull/5561))

Long content model names in the sidebar navigation were pushing the menu wider than its container, hiding the expand/collapse chevrons on parent groups. Sub-menu item text now truncates with an ellipsis instead of overflowing, and the pin icon on hover no longer overlaps with the truncated text.
61 changes: 61 additions & 0 deletions docs/release-notes/6.4.7/upgrade-guide.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
id: e7eaoh5i
title: Upgrade from 6.4.x to 6.4.7
description: Learn how to upgrade Webiny from 6.4.x to 6.4.7.
---

import { Alert } from "@/components/Alert";
import { AdditionalNotes } from "@/components/upgrade/AdditionalNotes";

<Alert type="success" title="What you'll learn">

- how to upgrade Webiny from 6.4.x to 6.4.7

</Alert>

<Alert type="info">

Make sure to check out the [6.4.7 changelog](./changelog) to get familiar with the changes introduced in this release.

</Alert>

## Step-by-Step Guide

### 1. Upgrade Webiny Packages

Upgrade all Webiny packages by running the following command:

```bash
yarn webiny upgrade 6.4.7 --debug
```

Note that the command above will run upgrades for all available versions of Webiny up to 6.4.7. 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.7**.

<Alert type="info">

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.7 --debug
```

</Alert>

### 2. Deploy Your Project

Proceed by redeploying your Webiny project:

```bash
# Execute in your project root.
yarn webiny deploy --env {environment}
```

<AdditionalNotes />
Loading