You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Added `COMPOSER_VERSION` argument in all `Dockerfile` to specify which
composer version to install (default to `latest` in Dockerfile, `1` in
`Makefile`)
* Added `XDEBUG_VERSION` argument in all `Dockerfile` to specify which
version of `xdebug` to install
* Changed the way composer is installed in images by using `COPY
--from=composer:${COMPOSER_VERSION} /usr/bin/composer /usr/bin/composer`
* Changed path of composer executable from `/usr/local/bin/composer` to
`/usr/bin/composer`
Copy file name to clipboardExpand all lines: CHANGELOG.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [Unreleased]
8
8
9
+
## [1.2.5] - 2020-10-24
10
+
### Added
11
+
- Added `COMPOSER_VERSION` argument in all `Dockerfile` to specify which composer version to install (default to `latest` in Dockerfile, `1` in `Makefile`)
12
+
- Added `XDEBUG_VERSION` argument in all `Dockerfile` to specify which version of `xdebug` to install
13
+
14
+
### Changes
15
+
- Changed the way composer is installed in images by using `COPY --from=composer:${COMPOSER_VERSION} /usr/bin/composer /usr/bin/composer`
16
+
- Changed path of composer executable from `/usr/local/bin/composer` to `/usr/bin/composer`
17
+
18
+
### Fixed
19
+
- Fixed unused `PRESTISSIMO_VERSION` argument during build
- Fixed `ImagickException: attempt to perform an operation not allowed by the security policy 'PDF' @ error/constitute.c/IsCoderAuthorized/408` error when trying to read a PDF with Imagick extension.
0 commit comments