Releases: remp2020/crm-skeleton
Releases · remp2020/crm-skeleton
1.16.1
1.16.0
1.10.0
1.9.0
1.8.0
- Bumped CRM modules to v2.4.
- Updated docker-compose configuration and PHP's Dockerfile to get rid of root user and related access right issues.
- To make sure you use the same user/group within the docker images as in the host machine, follow these steps:
-
Find out what is the
UID
andGID
of your user:id -u # UID id -g # GID whoami # UNAME
-
Update
.env
file in the root ofcrm
project (based on the.env.example
):# these are default values in docker-compose.yml; no need to change if your UID:GID are 1000:1000 UID=1000 GID=1000 UNAME=docker
-
Transfer owner of generated files created by previous version of image (owned by
root
user) to user who will use them from now on:sudo chown -R 1000:1000 content log temp vendor .env
If you changed the default
UID
/GID
to something different, use that in thechown
command. -
Rebuild the docker images, clear caches, and start them again:
docker compose stop docker compose build crm adminer docker-compose up -d
-
- To make sure you use the same user/group within the docker images as in the host machine, follow these steps:
- Updated PHPstan configuration to reflect the latest changes, level 2 is now met.
1.7.0
- Bumped CRM modules to v2.1.
- Added Latte linter.
- Bumped PHP to 8.0.
- Bumped Redis to 6.2.
- Updated documentation with information about
LazyWidgetManager
. - Updated docker's Xdebug configuration to use v3 format.
- Disabled
RouterResolver
for initial installation process to fix issues with migrations. It's safe to have it enabled afterwards. - Added empty
content
folder for exports. This can be replaced/changed by symlink to the place of your choice.
1.6.1
1.6.0
1.5.0
- Raise minimal supported PHP version to 7.4. (All CRM modules from version 0.35 require min PHP 7.4).
- Added
intl.error_level
configuration directive intoconfig.neon
to throw error whenIntlDateFormatter::formatObject()
inUserDataHelper
fails. - Bumped versions of CRM extensions to ^0.37. (ScenariosModule bumped to 0.37.1)
1.3.0
- Raised versions of CRM extensions to
^0.35
. - Removed
netteForms.js
fromwww/layouts/
. This file is now automatically updated (copied from ApplicationModule). See crm-application-module:0.35.0. - Raise version of MySQL docker image from 5.7 to 8. Prepare for migration. The preliminary end of support for MySQL 5.7 in CRM is scheduled for April 2022. Check REMP Technical news - v 0.35.0 for more details.