From aa1bc2bcf997c57f644193836d6871192b068917 Mon Sep 17 00:00:00 2001 From: Oliver Windall Juhl <59018053+olivermrbl@users.noreply.github.com> Date: Tue, 9 May 2023 16:05:55 +0200 Subject: [PATCH] docs: Add 1.10.1 upgrade guide (#4053) * Add guide * Update docs/content/upgrade-guides/medusa-core/1-10-1.md Co-authored-by: Shahed Nasser --------- Co-authored-by: Shahed Nasser --- .../upgrade-guides/medusa-core/1-10-1.md | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 docs/content/upgrade-guides/medusa-core/1-10-1.md diff --git a/docs/content/upgrade-guides/medusa-core/1-10-1.md b/docs/content/upgrade-guides/medusa-core/1-10-1.md new file mode 100644 index 0000000000..b6b93918e8 --- /dev/null +++ b/docs/content/upgrade-guides/medusa-core/1-10-1.md @@ -0,0 +1,37 @@ +--- +description: 'Actions Required for v.1.10.1' +sidebar_custom_props: + iconName: 'server-stack-solid' +--- + +# v1.10.1 + +Version 1.10.1 of Medusa introduces database schema changes that require you run the migrations command. + +## Overview + +This release contains a migration that extends the `ReservationItem` and `InventoryItem` entities with additional properties. + +--- + +## How to Update + +Run the following command in the root directory of your Medusa Backend: + +```bash npm2yarn +npm install @medusajs/medusa@1.10.1 +``` + +To avoid unexpected issues with dependencies, it is also recommended to update all other Medusa plugins or packages you have installed. + +--- + +## Actions Required + +### Run Migrations + +After updating your Medusa server and before running it, run the following command to run the latest migrations: + +```bash +medusa migrations run +```