Skip to content

Commit

Permalink
Update migration-guide-4.14.0-to-4.15.6.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pwizla authored Dec 15, 2023
1 parent 99593ac commit 534d873
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
title: Migrate from 4.14.0 to 4.15.6
title: Migrate from 4.14.0 to 4.15.5
displayed_sidebar: devDocsSidebar
description: Learn how you can migrate your Strapi application from 4.14.0 to 4.15.6.
description: Learn how you can migrate your Strapi application from 4.14.0 to 4.15.5.
---

import PluginsCaution from '/docs/snippets/migrate-plugins-extension-caution.md'
import BuildCommand from '/docs/snippets/build-npm-yarn.md'
import DevelopCommand from '/docs/snippets/develop-npm-yarn.md'
import InstallCommand from '/docs/snippets/install-npm-yarn.md'

# v4.14.0 to v4.15.6 migration guide
# v4.14.0 to v4.15.5 migration guide

The present migration guide upgrades Strapi v4.14.0 to v4.15.6. Strapi v4.15.6 updated the [loading order](/dev-docs/configurations/middlewares#loading-order) of the middlewares, ensuring the [`logger` middleware](/dev-docs/configurations/middlewares#logger) is loaded first. The migration guide consists of:

Expand All @@ -20,21 +20,21 @@ The present migration guide upgrades Strapi v4.14.0 to v4.15.6. Strapi v4.15.6 u
<PluginsCaution components={props.components} />


## Upgrading the application dependencies to 4.15.6
## Upgrading the application dependencies to 4.15.5

:::prerequisites
Stop the server before starting the upgrade.
:::

1. Upgrade all of the Strapi packages in `package.json` to `4.15.6`:
1. Upgrade all of the Strapi packages in `package.json` to `4.15.5:

```json title="path: package.json"
{
// ...
"dependencies": {
"@strapi/strapi": "4.15.6",
"@strapi/plugin-users-permissions": "4.15.6",
"@strapi/plugin-i18n": "4.15.6"
"@strapi/strapi": "4.15.5",
"@strapi/plugin-users-permissions": "4.15.5",
"@strapi/plugin-i18n": "4.15.5"
// ...
}
}
Expand Down

0 comments on commit 534d873

Please sign in to comment.