mirror of
https://github.com/strapi/strapi.git
synced 2025-09-27 01:09:49 +00:00
Update the update-version guide (#8505)
Signed-off-by: MattieBelt <mattiasvandenbelt@gmail.com>
This commit is contained in:
parent
0d3edd8f67
commit
3479c27fcc
@ -1,55 +1,55 @@
|
|||||||
# Update Strapi version
|
# Update Strapi version
|
||||||
|
|
||||||
How to upgrade your application to the latest version of Strapi.
|
With this guide you will know how to upgrade your application to the latest version of Strapi.<br>
|
||||||
|
Before you start make sure **your server is not running until the end** of the guide.
|
||||||
|
|
||||||
## Upgrading your dependencies
|
## Upgrade your dependencies
|
||||||
|
|
||||||
Start by upgrading all your Strapi package version.
|
Start by upgrading all your Strapi packages in your `package.json`.<br>
|
||||||
|
For example upgrading from `3.2.4` to `3.2.5`:
|
||||||
For example moving from `3.0.4` to `3.0.5`
|
|
||||||
|
|
||||||
:::: tabs
|
:::: tabs
|
||||||
|
|
||||||
::: tab 3.0.5
|
::: tab 3.2.4
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
//...
|
//...
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"strapi": "3.0.5",
|
"strapi": "3.2.4",
|
||||||
"strapi-admin": "3.0.5",
|
"strapi-admin": "3.2.4",
|
||||||
"strapi-connector-bookshelf": "3.0.5",
|
"strapi-connector-bookshelf": "3.2.4",
|
||||||
"strapi-plugin-content-manager": "3.0.5",
|
"strapi-plugin-content-manager": "3.2.4",
|
||||||
"strapi-plugin-content-type-builder": "3.0.5",
|
"strapi-plugin-content-type-builder": "3.2.4",
|
||||||
"strapi-plugin-email": "3.0.5",
|
"strapi-plugin-email": "3.2.4",
|
||||||
"strapi-plugin-graphql": "3.0.5",
|
"strapi-plugin-graphql": "3.2.4",
|
||||||
"strapi-plugin-settings-manager": "3.0.5",
|
"strapi-plugin-upload": "3.2.4",
|
||||||
"strapi-plugin-upload": "3.0.5",
|
"strapi-plugin-users-permissions": "3.2.4",
|
||||||
"strapi-plugin-users-permissions": "3.0.5",
|
"strapi-utils": "3.2.4"
|
||||||
"strapi-utils": "3.0.5"
|
//...
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
:::
|
:::
|
||||||
|
|
||||||
::: tab 3.0.6
|
::: tab 3.2.5
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
//...
|
//...
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"strapi": "3.0.6",
|
"strapi": "3.2.5",
|
||||||
"strapi-admin": "3.0.6",
|
"strapi-admin": "3.2.5",
|
||||||
"strapi-connector-bookshelf": "3.0.6",
|
"strapi-connector-bookshelf": "3.2.5",
|
||||||
"strapi-plugin-content-manager": "3.0.6",
|
"strapi-plugin-content-manager": "3.2.5",
|
||||||
"strapi-plugin-content-type-builder": "3.0.6",
|
"strapi-plugin-content-type-builder": "3.2.5",
|
||||||
"strapi-plugin-email": "3.0.6",
|
"strapi-plugin-email": "3.2.5",
|
||||||
"strapi-plugin-graphql": "3.0.6",
|
"strapi-plugin-graphql": "3.2.5",
|
||||||
"strapi-plugin-settings-manager": "3.0.6",
|
"strapi-plugin-upload": "3.2.5",
|
||||||
"strapi-plugin-upload": "3.0.6",
|
"strapi-plugin-users-permissions": "3.2.5",
|
||||||
"strapi-plugin-users-permissions": "3.0.6",
|
"strapi-utils": "3.2.5"
|
||||||
"strapi-utils": "3.0.6"
|
//...
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@ -58,70 +58,41 @@ For example moving from `3.0.4` to `3.0.5`
|
|||||||
|
|
||||||
::::
|
::::
|
||||||
|
|
||||||
Install the specified version:
|
After editing the file run either `yarn install` or `npm install` to install the specified version.
|
||||||
:::: tabs
|
|
||||||
|
|
||||||
::: tab yarn
|
|
||||||
|
|
||||||
```bash
|
|
||||||
yarn install
|
|
||||||
```
|
|
||||||
|
|
||||||
:::
|
|
||||||
|
|
||||||
::: tab npm
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm install
|
|
||||||
```
|
|
||||||
|
|
||||||
:::
|
|
||||||
|
|
||||||
::::
|
|
||||||
|
|
||||||
::: tip
|
::: tip
|
||||||
If the operation doesn't work, you should probably remove your `yarn.lock` or `package-lock.json`. If it still does not work, let's run the hard mode `rm -Rf node_modules`
|
If the operation doesn't work, you should probably remove your `yarn.lock` or `package-lock.json`. If it still does not work, try again after also removing the folder `node_modules`.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
## Building your administration panel
|
## Rebuild your administration panel
|
||||||
|
|
||||||
New releases can introduce changes to the administration panel that require a rebuild.
|
New releases can introduce changes to the administration panel that require a rebuild.
|
||||||
|
Rebuild the admin panel with one of the following commands:
|
||||||
Start by deleting your current build:
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
rm -rf build
|
yarn build --clean
|
||||||
|
# or
|
||||||
|
npm run build -- --clean
|
||||||
```
|
```
|
||||||
|
|
||||||
Build the administration panel:
|
## Extensions
|
||||||
:::: tabs
|
|
||||||
|
|
||||||
::: tab yarn
|
If you are using [extensions](../concepts/customization.md) to create custom code or modify existing code, you will need to update your code and compare your version to the new changes on the repository. Not updating your extensions can **break your app** in unexpected ways we cannot predict.
|
||||||
|
|
||||||
```bash
|
|
||||||
yarn build
|
|
||||||
```
|
|
||||||
|
|
||||||
:::
|
|
||||||
|
|
||||||
::: tab npm
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm run build
|
|
||||||
```
|
|
||||||
|
|
||||||
:::
|
|
||||||
|
|
||||||
::::
|
|
||||||
|
|
||||||
::: tip
|
|
||||||
If the operation doesn't work, you should probably remove the `.cache` folder too.
|
|
||||||
:::
|
|
||||||
|
|
||||||
## Migration guides
|
## Migration guides
|
||||||
|
|
||||||
Sometimes Strapi introduces changes that need more than just the previous updates.
|
Sometimes Strapi introduces **breaking changes** that need more than just the previous steps.
|
||||||
|
That is the reason for the [Migration guides](../migration-guide/README.md) page.
|
||||||
That is the reason for the [Migration Guide](../migration-guide/README.md) page.
|
|
||||||
|
|
||||||
Just make sure when you update your version that a migration guide exists or not.
|
Just make sure when you update your version that a migration guide exists or not.
|
||||||
|
|
||||||
|
## Start your application
|
||||||
|
|
||||||
|
If you have followed the information above, you can start your application with:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
yarn develop
|
||||||
|
# or
|
||||||
|
npm run develop
|
||||||
|
```
|
||||||
|
|
||||||
|
🎉 Congrats, your application has been migrated!
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Migrations guides
|
# Migrations guides
|
||||||
|
|
||||||
Please also refer to the following [documentation](../guides/update-version.md) for a better understanding of how to update your project.
|
Please also refer to the following [update guide](../guides/update-version.md) for a better understanding of how to update your project.
|
||||||
|
|
||||||
## Instructions
|
## Instructions
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user