Upgrading Factor is easy. Normally it just involves upgrading your packages, but there are sometimes caveats.
yarn upgrade
# or
npm update
If you have issues, something may be caching or "locked" at an inappropriate version. To fix:
yarn.lock
or package-lock.json
node_modules
folderYour package.json
file is what specifies which version of Factor and its plugins should be installed. You can also manually update versions there if you prefer.
Understanding ^ in versions
Most versions inpackage.json
use the (^) "caret" marker. This specifies that the package should be upgraded unless the package is a major release. Since major releases are the only "breaking" releases, this is why using the (^) makes sense