2022-09-30 11:39:35 -04:00
---
2022-11-07 10:27:58 -05:00
group: Migration
2022-11-04 17:41:12 -04:00
title: Updating Your CMS
2022-11-07 10:27:58 -05:00
weight: 100
2022-09-30 11:39:35 -04:00
---
2022-10-02 20:06:20 -04:00
The update procedure for your CMS depends upon the method you used to install Static CMS.
2022-09-30 11:39:35 -04:00
2022-11-04 17:41:12 -04:00
## Package Manager
2022-09-30 11:39:35 -04:00
If you are using a package manager like Yarn or NPM, use their standard procedure to update. This is how both the Hugo and Gatsby starters are set up.
2022-11-04 17:41:12 -04:00
## CDN
2022-09-30 11:39:35 -04:00
If you are using the CMS through a CDN like Unpkg, then that depends on the version tag you are using. You can find the version tag in the `/admin/index.html` file of your site.
2022-10-27 12:24:30 -04:00
- (Recommended) If you use `^1.0.0`, the CMS does all updates except major versions automatically.
- It upgrades to `1.0.1`, `1.1.0`, `1.1.1`.
- It does not upgrade to `2.0.0` or higher.
2022-09-30 11:39:35 -04:00
- It does not upgrade to beta versions.
2022-10-27 12:24:30 -04:00
- If you use `~1.0.0`, the CMS will do only patch updates automatically.
- It upgrades `1.0.1`, `1.0.2`.
- It does not upgrade to `1.1.0` or higher.
2022-09-30 11:39:35 -04:00
- It does not upgrade beta versions.