Skip to content

Installing Beta Releases

Some Hyvä Commerce modules publish a beta version ahead of their stable release. Check the changelog to see whether a beta is available for the module you need, and what it includes.

Beta releases are pre-release

Beta versions are not final and may still change before the stable release. Review the linked changelog entry for what's included and any known issues before using a beta build.

Installing a Beta Version

To upgrade a single module to its beta version, require the exact beta tag:

composer require hyva-themes/commerce-module-<module>:<version>-beta<N>

If you have the Hyvä Commerce metapackage installed, alias the beta version to satisfy the metapackage's version constraint, using the module's current stable version as the alias target:

composer require hyva-themes/commerce-module-<module>:"<version>-beta<N> as <current-stable-version>"

Note: This assumes you are on the latest version of the metapackage.

Example: Hyvä CMS 1.2.0-beta2

Hyvä CMS 1.2.0-beta2 is available ahead of the 1.2.0 stable release. See the changelog entry for what it includes.

To upgrade Hyvä CMS on its own to the beta version:

composer require hyva-themes/commerce-module-cms:1.2.0-beta2

If you have installed the metapackage, alias it to the current stable CMS version (1.1.2):

composer require hyva-themes/commerce-module-cms:"1.2.0-beta2 as 1.1.2"