2018-12-14 17:06:05 +01:00
# Migration guide from alpha.10 to alpha.11
2018-03-16 12:18:11 +01:00
**Here are the major changes:**
- Add plugin upload
2018-12-14 17:06:05 +01:00
< br >
2018-03-16 12:18:11 +01:00
2019-11-07 12:05:39 +01:00
::: tip
2018-12-14 17:06:05 +01:00
Feel free to [join us on Slack ](http://slack.strapi.io ) and ask questions about the migration process.
:::
< br >
2018-03-16 12:18:11 +01:00
## Getting started
Install Strapi `alpha.11.1` globally on your computer. To do so run `npm install strapi@3.0.0-alpha.11.1 -g` .
When it's done, generate a new empty project `strapi new myNewProject` (don't pay attention to the database configuration).
2018-12-14 17:06:05 +01:00
< br >
2018-03-16 12:18:11 +01:00
## Configurations
You will have to update just 1 file: `package.json`
- Edit the Strapi's dependencies version: (move Strapi's dependencies to `3.0.0-alpha.11.1` version) in `package.json` file
```json
{
"dependencies": {
"lodash": "4.x.x",
"strapi": "3.0.0-alpha.11.1",
"strapi-mongoose": "3.0.0-alpha.11.1"
}
}
```
2018-12-14 17:06:05 +01:00
< br >
2018-03-16 12:18:11 +01:00
## Update the Admin
Delete your old admin folder and replace it by the new one.
2018-12-14 17:06:05 +01:00
< br >
2018-03-16 12:18:11 +01:00
## Update the Plugins
Copy this file `/plugins/users-permissions/config/jwt.json` **from your old project** and paste it in the corresponding one in your new project.
2019-01-06 14:00:04 +01:00
Copy the fields and relations you had in your `/plugins/users-permissions/models/User.settings.json` and `/plugins/users-permissions/config/jwt.json` file in the new one.
2018-03-16 12:18:11 +01:00
Then, delete your old `plugins` folder and replace it by the new one.
2018-12-14 17:06:05 +01:00
< br >
2018-05-14 13:39:04 +02:00
## Update the Dependencies
Now let's update the dependencies in your `package.json` we edited earlier. Simply run `npm install` :
2018-03-16 12:18:11 +01:00
2018-03-19 12:14:25 +01:00
That's all, you have now upgraded to Strapi `alpha.11` .