Skip to content

Latest commit

 

History

History
61 lines (38 loc) · 1.4 KB

File metadata and controls

61 lines (38 loc) · 1.4 KB
id dopsvqwj
title Upgrade from 6.4.x to 6.5.0
description Learn how to upgrade Webiny from 6.4.x to 6.5.0.

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

  • how to upgrade Webiny from 6.4.x to 6.5.0

Make sure to check out the 6.5.0 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:

yarn webiny upgrade 6.5.0 --debug

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

yarn webiny upgrade --debug

Once the upgrade has finished, running the yarn webiny --version command in your terminal should return 6.5.0.

If the above command fails or is not available in your setup, you can run the upgrade script directly via npx:

npx https://github.com/webiny/webiny-upgrades-v6 6.5.0 --debug

2. Deploy Your Project

Proceed by redeploying your Webiny project:

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