- d7028ae26 - Apply patch to Report Error extension to fix issues on D9
NOTE: In future, please update this file with the commit link whenever a new extension customisation is added. For civicrm core file customization, update the civicrm-patches.patch file to include the diff/patch
- Update CiviCRM extension files and commit
- Then checked the commit link patch, if already merged/included in the current extension release.
- If not then cherry-pick the commit hash mentioned above.
- If the patch is included in the current release, ignore and go to next commit, repeat step 2 and 3.
- Repeat the same for other commits until you cherry-picked all the commits.
CLI:
$ git checkout origin/master -b civicrm_ext_upgrades
# update the CiviCRM core files
$ git add htdocs/sites/default/files/civicrm/ext && git commit -m "CiviCRM 5.x upgrade" wp-content/plugins/civicrm
$ git cherry-pick 35aa73ec # lets say 35aa73ec is the hashcode of the commit that contains one of the civicrm ext customization changes
# repeat step 2-5 until all the commits are cherry-picked
$ git push origin civicrm_ext_upgrades
## submit Merge Request