Skip to content

Commit ee98368

Browse files
gu-stavpwizla
andauthored
Create migration guide from 4.4.3 to 4.4.5 (#1245)
* Create migration guide from 4.4.3 to 4.4.5 * chore: Make 4.4.3 to 4.4.5 migration guide a bit more concise * Remove bullet point as we have only 1 item :) * Fix code block indentation to improve bullets content alignment * Add missing page link in migration guides homepage Co-authored-by: Pierre Wizla <[email protected]> Co-authored-by: Pierre Wizla <[email protected]>
1 parent 97b2c38 commit ee98368

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

docs/developer-docs/latest/update-migration-guides/migration-guides.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Migrations are necessary when upgrades to Strapi include breaking changes. The m
2020
- [Migration guide from 4.1.8+ to 4.1.10](migration-guides/v4/migration-guide-4.1.8-to-4.1.10.md)
2121
- [Migration guide from 4.2.x to 4.3.x](migration-guides/v4/migration-guide-4.2.x-to-4.3.x.md)
2222
- [Migration guide from 4.3.6 to 4.3.8](migration-guides/v4/migration-guide-4.3.6-to-4.3.8.md)
23+
- [Migration guide from 4.4.3 to 4.4.5](migration-guides/v4/migration-guide-4.4.3-to-4.4.5.md)
2324

2425
## v3 to v4 migration guides
2526

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
title: Migrate from 4.4.3 to 4.3.5 - Strapi Developer Docs
3+
description: Learn how you can migrate your Strapi application from 4.4.3 to 4.4.5.
4+
canonicalUrl: https://docs.strapi.io/developer-docs/latest/update-migration-guides/migration-guides/v4/migration-guide-4.4.3-to-4.4.5.html
5+
---
6+
7+
# v4.4.3 to v4.4.5 migration guide
8+
9+
The Strapi v4.4.3 to v4.4.5 migration guide upgrades v4.4.3 to v4.4.5. The migration changes the name of the favicon from `favicon.ico` to `favicon.png`.
10+
11+
:::caution
12+
This migration guide skips v4.4.4, which introduced a problem in `koa/cors` due to a missing dependency update.
13+
:::
14+
15+
## Upgrading the application dependencies
16+
17+
:::prerequisites
18+
Stop the server before starting the upgrade.
19+
:::
20+
21+
1. Upgrade all of the Strapi packages in `package.json` to `4.4.5`:
22+
23+
```json
24+
// path: package.json
25+
26+
{
27+
// ...
28+
"dependencies": {
29+
"@strapi/strapi": "4.4.5",
30+
"@strapi/plugin-users-permissions": "4.4.5",
31+
"@strapi/plugin-i18n": "4.4.5",
32+
// ...
33+
}
34+
}
35+
```
36+
37+
2. Save the edited `package.json` file.
38+
39+
3. Replace the existing `favicon.ico` with [`favicon.png`](https://user-images.githubusercontent.com/8593673/198366643-7261700d-c8c4-4ebb-83c8-792a330ab4a5.png):
40+
41+
4. Run either `yarn` or `npm install` to install the new version.
42+
43+
::: tip
44+
If the operation doesn't work, try removing your `yarn.lock` or `package-lock.json`. If that doesn't help, remove the `node_modules` folder as well and try again.
45+
:::
46+
47+
!!!include(developer-docs/latest/update-migration-guides/migration-guides/v4/snippets/Rebuild-and-start-snippet.md)!!!

0 commit comments

Comments
 (0)