Upgrading to ME 1.18
Elentra ME 1.18 was released on May 12th, 2020
Upgrade Instructions
Please note that Elentra ME v1.18.1+ requires PHP 7.3 or higher.
ElentraAPI is now on Version 5. If you have a branded API, please ensure to upgrade your API to version 5.
app.json has been moved, please read this section and implement the change after you upgrade
Part 1: Source Code Update
From within Sourcetree on your developer workstation, open your existing local Elentra ME Branded Edition (i.e.,
uni-elentra-1x-me) repository.If you do not currently have an
consortiumGit remote that points to the Consortium Editionelentra-1x-merepository, then ensure that you add one:git remote add consortium [email protected]:ElentraProject/elentra-1x-me.gitClick the "Fetch" button (ensuring that "Fetch from all remotes" and "Prune tracking branches no longer present on remote(s)" options are checked) or type
git fetch consortium.Checkout your Branded Edition staging branch (e.g.,
uni/staging) and create a new branch based on this branch (e.g.,uni/staging-v117) just for easy restore purposes in case it's needed. Once that branch has been created, checkout the original Branded Edition staging branch (e.g.,uni/staging) and continue.Within the "Remotes" section in Sourcetree sidebar, expand the
consortiumremote, then right click onrelease/1.18and clickPull consortium/release/1.18 into uni/staging. At this point, you may be asked to resolve any merge conflicts that have been created by making modifications to your Branded Edition that conflict with changes that have been made to the Consortium Edition. Depending on your level of conflict, this could be as simple as a minor modification to thecomposer.lockfile or something much more complex. If you require assistance, please book an appointment with the Elentra Consortium Core Team, or chat with us on Slack in the #developers channel and we will provide you with some guidance on moving forward. As a point of note, we always recommend that Consortium Participants follow the Contribution best practices defined in our documentation, which may help reduce the number of conflicts that you encounter.Once the conflicts have been resolved, commit the merge to your
uni/stagingbranch and continue to Part 2 of the instructions.
We would recommend against pushing your changes to your origin remote at this point. Wait until Part 2 has been completed and have finished some initial local testing.
Updating a Branded API
To update your branded Elentra API, first clone or checkout the master branch of your Branded API to your local environment using Sourcetree.
Click the "Fetch" button (ensuring that "Fetch from all remotes" and "Prune tracking branches no longer present on remote(s)" options are checked) or type
git fetch consortium.Within the "Remotes" section in Sourcetree sidebar, expand the
consortiumremote, then right click onmasterand clickPull consortium/master into uni/master. There may be merge conflicts that must be resolved if customizations made to your branded API.Resolve any merge conflicts and commit the changes to the
masterbranch of your Branded API. Push any changes to your Branded API remote.Using Sourcetree or your project service of choice, create a new tag that follows semantic versioning. For example at the time of writing, the latest tagged release of the api is
v4.0.2and thecomposer.jsonprovided with Elentra ME 1.18 specifies that the major version of API version must be~4.0. Create a new tag where the current date follows the patch version:4.0.2.20200512. More information about tagging API releases can be found here.In your Branded Edition of Elentra ME, run
composer update elentrapackages/elentra-1x-apiand commit the changes to thecomposer.lockfile.
Part 2: Configuration and Branding Update
Using a tool like Araxis Merge, compare
www-root/core/config/settings.inc.phpwith thesettings-staging.inc.phpandsettings-production.inc.phpfiles in the same directory. If you have alternatively named or additional settings files, use those instead. When you compare the Consortium Editionsettings.inc.phpfile with your Branded Edition files, you are looking to add additional settings that have been added to the stocksettings.inc.phpfile and remove any settings that have been removed from the stocksettings.inc.phpfile. In most cases, your Branded Edition settings files should have the same lines (albeit potentially different settings values) as the Consortium Edition. Once you have compared your settings files, commit the changes to youruni/stagingbranch.Using a tool like Araxis Merge, compare the
www-root/templates/defaultdirectory with your own Branded Edition templates (e.g.,www-root/templates/uni). In many cases, you will want to add missing files, update your language files, add any additions to the CSS files, add modifications to yourheader.tpl.phpfiles, etc. This process can take a bit of time and should be repeated for each additional template that you have created. Once you have compared your templates, commit the changes to youruni/stagingbranch.
Part 3: Testing Locally
Now that you have upgraded your source code and updated your settings and templates. You should begin reviewing and testing the upgrade on your developer work station. Before testing can begin we need to do a few things.
Log into your local
elentra-developerDocker container, and change to youruni-elentra-1x-medirectory:docker exec -it elentra-developer bash cd /var/www/vhosts/uni-elentra-1x-meEnsure that the latest Composer dependencies installed:
composer installEnsure that the database migrations are completed:
php elentra migrate --upProviding these steps were successful, you should now be able to visit https://uni-elentra-1x-me.localhost in your web browser and being your review.
At this point, providing you're satisfied with your local testing, we would recommend that you push your changes to your origin remote.
Part 4: Testing on Staging
Providing that you have pushed the changes to your uni/staging branch to your origin remote, you can now deploy the upgrade to your staging environment from within your Docker container.
Log into your local
elentra-developerDocker container, and change to yourdeploymentdirectory:docker exec -it elentra-developer bash cd /var/www/vhosts/uni-elentra-1x-me/deploymentDeploy changes to your staging server:
cap staging deployProviding the deployment was successful, you should now be able to visit https://elentra-staging.med.university.edu in your web browser to begin a thorough review of your upgraded Branded Edition implementation of Elentra ME.
Part 5: Deploy to Production
Providing that you have thoroughly tested your upgraded Branded Edition implementation of Elentra ME on within your staging environment, it is safe to proceed with a production upgrade.
From within Sourcetree on your developer workstation, open your existing local Elentra ME Branded Edition (i.e.,
uni-elentra-1x-me) repository.Checkout your
uni/productionbranch.Right click on your
uni/stagingbranch and click "Merge uni/staging into uni/production". This will merge all of the commits that have gone into creating the upgrade, into youruni/productionbranch.Push the commits in the
uni/productionbranch to youroriginremote.Log into your localelentra-developerDocker container, and change to yourdeploymentdirectory:docker exec -it elentra-developer bash cd /var/www/vhosts/uni-elentra-1x-me/deploymentDeploy changes to your production server:
cap production deployProviding the deployment was successful, you should now be able to visit https://elentra.med.university.edu in your web browser and enjoy the fact that you are now running the latest version of Elentra ME.
Additional Changes
Quizzes Module
The quizzes module has been disabled by default. We now recommend using the Exams module instead. You can however re-enable the Quizzes module in settings.inc.php by re-adding the quizzes declaration in the $MODULES array, like so:
$MODULES["quizzes"] = array("title" => "Manage Quizzes", "resource" => "quiz", "permission" => "update");
Absence Management Module
This new module allows users to upload files, which are stored in www-root/core/storage/app/absence-files. You will need to create the folder in your staging and production, otherwise file uploads will fail.
Profile Menu Item Order
Version 1.18 includes a new setting user_menu_ordering which allows you to order the menu items in the User Profile Dropdown in the Navbar. The setting comes loaded with a default, however you may edit those values as you see fit.
app.json has been moved
As of March 22nd, 2021, the ElentraAPI has been upgraded to Laravel 6, which changes the location of the app.json file. If you pull from the release branch, or if you're upgrading for the first time, please run these commands on your servers
rm /var/www/vhosts/host.name.edu/storage/app/modules/app.json
ln -s /var/www/vhosts/host.name.edu/current/www-root/core/storage/app/modules/app.json /var/www/vhosts/host.name.edu/storage/app/modules/app.jsonLast updated