Skip to content

Commit e71ee91

Browse files
github-actions[bot]webiny-bot
andauthored
feat: 6.4.2 release (#796)
Co-authored-by: webiny-bot <webiny-bot@webiny.com>
1 parent 19a45a9 commit e71ee91

3 files changed

Lines changed: 97 additions & 0 deletions

File tree

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
AI Context: 6.4.2 Changelog (changelog.mdx)
2+
3+
This file tracks manual edits made after the generation script ran.
4+
The script reads the "Skipped PRs" section to avoid re-adding removed entries.
5+
6+
## Skipped PRs
7+
8+
## Manual Rewrites
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
id: n2xj47qb
3+
title: Webiny 6.4.2 Changelog
4+
description: See what's new in Webiny version 6.4.2
5+
---
6+
7+
import { GithubRelease } from "@/components/GithubRelease";
8+
import { Alert } from "@/components/Alert";
9+
10+
<GithubRelease version={"6.4.2"} />
11+
12+
## Headless CMS
13+
14+
### Fixed Publishing a Previously Unpublished Revision ([#5268](https://github.com/webiny/webiny-js/pull/5268))
15+
16+
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.
17+
18+
## Admin
19+
20+
### Fixed Date Formatting Compatibility ([#5270](https://github.com/webiny/webiny-js/pull/5270))
21+
22+
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.
23+
24+
## Website Builder
25+
26+
### Visual Improvements in Page Editor ([#5272](https://github.com/webiny/webiny-js/pull/5272))
27+
28+
Several UI inconsistencies in the Website Builder page editor have been addressed. Input fields now render with consistent sizing and styling. Additionally, the orange selection border that previously shifted position when scrolling is now stable and remains fixed in place.
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
id: h20auv85
3+
title: Upgrade from 6.4.x to 6.4.2
4+
description: Learn how to upgrade Webiny from 6.4.x to 6.4.2.
5+
---
6+
7+
import { Alert } from "@/components/Alert";
8+
import { AdditionalNotes } from "@/components/upgrade/AdditionalNotes";
9+
10+
<Alert type="success" title="What you'll learn">
11+
12+
- how to upgrade Webiny from 6.4.x to 6.4.2
13+
14+
</Alert>
15+
16+
<Alert type="info">
17+
18+
Make sure to check out the [6.4.2 changelog](./changelog) to get familiar with the changes introduced in this release.
19+
20+
</Alert>
21+
22+
## Step-by-Step Guide
23+
24+
### 1. Upgrade Webiny Packages
25+
26+
Upgrade all Webiny packages by running the following command:
27+
28+
```bash
29+
yarn webiny upgrade 6.4.2 --debug
30+
```
31+
32+
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.
33+
34+
You can omit the version to upgrade to the latest available:
35+
36+
```bash
37+
yarn webiny upgrade --debug
38+
```
39+
40+
Once the upgrade has finished, running the `yarn webiny --version` command in your terminal should return **6.4.2**.
41+
42+
<Alert type="info">
43+
44+
If the above command fails or is not available in your setup, you can run the upgrade script directly via `npx`:
45+
46+
```bash
47+
npx https://github.com/webiny/webiny-upgrades-v6 6.4.2 --debug
48+
```
49+
50+
</Alert>
51+
52+
### 2. Deploy Your Project
53+
54+
Proceed by redeploying your Webiny project:
55+
56+
```bash
57+
# Execute in your project root.
58+
yarn webiny deploy --env {environment}
59+
```
60+
61+
<AdditionalNotes />

0 commit comments

Comments
 (0)