The Upgrader tool simplifies keeping projects up-to-date with Spryker releases.
The Upgrader updates projects via one of the following approaches:
- Release group(default) — uses Spryker release app as data provider.
- Composer update — uses
composer update
command; this is the default strategy that's describes below. At this step, the Upgrader updates the project to the latest version as follows:
- Checks if the target branch has been created on the remote repository. If the branch exists, the process stops.
- Checks if there are no uncommitted changes in the project. If there are uncommitted changes, the process stops.
- Updates Spryker modules and dependent libraries, including third-party ones.
- Triggers Integrator for adjust project classes.
- Commits the changed files.
- Pushes the changes to the remote repository.
- Create a PR in the remote repository.
- To enable Composer update strategy:
export UPGRADE_STRATEGY=composer
Composer install|update uses two strategies. By default Composer updates lock file with packages being downloaded.
- To enable the update of
composer.lock
file without packages being downloaded:
export COMPOSER_NO_INSTALL=true
In the strategy, Upgrader uses Spryker release app as a data provider to fetch data about Major, Minor, and Patch releases. Only Minor and Paths could be automatically applied, for now. In case when some major release is available, Upgrader put info about to PR description.
- To enable Release group strategy (default):
export UPGRADE_STRATEGY=release-app
In the strategy, Upgrader contains sequential (default) release group requiring processor (one by one release group).
- To enable Sequential release group processor (default):
export RELEASE_GROUP_PROCESSOR=sequential
Sequential release group processor contains threshold, by default 30 release groups for one Upgrader start.
- To change the threshold:
export THRESHOLD_RELEASE_GROUP=<number>
Soft major threshold, by default 0.
- To change soft major threshold:
export SOFT_THRESHOLD_MAJOR=<number>
Soft minor threshold, by default 10.
- To change soft minor threshold:
export SOFT_THRESHOLD_MINOR=<number>
Soft bugfix threshold, by default 30.
- To change soft patch threshold:
export SOFT_THRESHOLD_PATCH=<number>
To enable the Upgrader to execute this step, apply the following configuration:
- GitHub is default source code provider. If you want manually define it, use the next environment variable:
export SOURCE_CODE_PROVIDER=github
- Add a GitHub access token to the project repository with the permissions to push branches and create PRs:
export ACCESS_TOKEN=<GITHUB_TOKEN>
- Add the organization name owning the repository of the project you want to update:
export ORGANIZATION_NAME=<ORGANIZATION>
- Add the repository name of the project you want to update:
export REPOSITORY_NAME=<REPOSITORY>
To enable the Upgrader to execute this step, apply the following configuration:
- Enable GitLab source code provider:
export SOURCE_CODE_PROVIDER=gitlab
- Add a GitLab access token to the project repository with the permissions to push branches and create PRs:
export ACCESS_TOKEN=<GITLAB_TOKEN>
- Add the project id of the project you want to update:
export PROJECT_ID=<PROJECT_ID>
- Optional. For self-hosted source provider add url of your provider:
export SOURCE_CODE_PROVIDER_URL=<https://git.yourdomain.com>
To enable the Upgrader to execute this step, apply the following configuration:
- Enable Azure source code provider:
export SOURCE_CODE_PROVIDER=azure
- Add a Azure access token to the project repository with the permissions to push branches and create PRs:
export ACCESS_TOKEN=<AZURE_TOKEN>
- Add the organization name owning the repository of the project you want to update::
export ORGANIZATION_NAME=<ORGANIZATION_NAME>
- Add a project name or project id you want to update:
export PROJECT_NAME=<PROJECT_NAME>
# OR
export PROJECT_ID=<PROJECT_ID>
- Add a project's repository name or repository id:
export REPOSITORY_NAME=<REPOSITORY_NAME>
# OR
export REPOSITORY_ID=<REPOSITORY_ID>
- Optional. Defines execution environment for report statistics:
export APP_ENV=sprykerci
- Optional. Enable the report sending functionality. it’s disabled by default.
export REPORTING_ENABLED=true
- Optional. Secure token for remote server request authorization in report sending process.
export REPORT_SEND_AUTH_TOKEN=<TOKEN>
To update a project, run the following command from its directory:
bin/console upgradability:php:upgrade
- Turn on the specific behavior for the release group integrator (for internal usage).
export RELEASE_GROUP_INTEGRATOR_ENABLED=true
- Turn on specific behavior to minimize update 3rd-party dependencies.
export UPDATE_MINIMUM_DEPENDENCIES_ENABLED=true
- Turn on internal specific behavior to update features to dev-master.
export UPDATE_FEATURES_TO_DEV_MASTER=true
- Turn on integrator trigger after package update step
export INTEGRATOR_ENABLED=true
- Turn off installing new Spryker packages
export PACKAGE_UPGRADE_ONLY=true
- Turn on code compliance trigger after package update step
export EVALUATOR_ENABLED=true
- Specify release group to apply only it packages
export RELEASE_GROUP_ID=123
- Specify the GitHub user login to add as reviewers to the pull request
export PULL_REQUEST_REVIEWERS=<login_1,login_two,...>
For Spryker SDK installation instructions, see Spryker SDK