Przeglądaj źródła

Released docker-magento 41.1.0

Mark Shust 3 lat temu
rodzic
commit
ab14420791
2 zmienionych plików z 30 dodań i 3 usunięć
  1. 27 0
      CHANGELOG.md
  2. 3 3
      compose/docker-compose.yml

+ 27 - 0
CHANGELOG.md

@@ -8,6 +8,33 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
 
 - PHP image `8.1-fpm-develop` now available for testing purposes.
 
+## [41.1.0] - 2022-03-28
+
+### Fixed
+- Increased RabbitMQ sleep timeout to prevent errors on startup [#426](https://github.com/markshust/docker-magento/issues/426).
+- RabbitMQ connection issues on Windows/WSL2 [#426](https://github.com/markshust/docker-magento/issues/426).
+- Problem with elasticsearch & unexpected character [#597](https://github.com/markshust/docker-magento/issues/597).
+- Issue with extra_hosts host.docker.internal for Xdebug on Linux [#595](https://github.com/markshust/docker-magento/issues/595).
+- Reverted Xdebug/magerun code refactor which caused issues [#595](https://github.com/markshust/docker-magento/pull/545).
+- Composer auth.json auth required message shows after authenticating [#587](https://github.com/markshust/docker-magento/issues/587).
+- Failing shellchecks [08206e6d](https://github.com/markshust/docker-magento/commit/08206e6d6a48fdb3c1c3adc8f52b146609ba771c), [53d9b858](https://github.com/markshust/docker-magento/commit/53d9b8585733f8f78a5dcaedce53a83863a1b634).
+- Firefox SSL cert fails on first-time install [2695fe2e](https://github.com/markshust/docker-magento/commit/2695fe2e508098906103dd442767d50e9f6011c0).
+- Some commands including bin/xdebug not working on Windows + Docker Desktop 4.4.3 [#619](https://github.com/markshust/docker-magento/issues/619).
+
+### Updated
+- Redis 5.0 to 6.0 [6653d787](https://github.com/markshust/docker-magento/commit/6653d78722fb8d1d76cc2433a89227456e48514f).
+- `bin/setup` script so it can run completely automated [PR #633](https://github.com/markshust/docker-magento/pull/633).
+- PHP 8 image to 8.1.4, last version before tagging final release [86093b70](https://github.com/markshust/docker-magento/commit/86093b70c9ee7f0ed3c62e84460b7e53926d033c).
+
+### Added
+- `bin/stopall` script to stop all running containers [#599](https://github.com/markshust/docker-magento/pull/599).
+- New PHP image to enable WebP support in GD [PR #651](https://github.com/markshust/docker-magento/pull/651).
+- Ability to configure custom user/group ID in Nginx image [PR #658](https://github.com/markshust/docker-magento/pull/658).
+
+### Removed
+- PHP 7.3 images have been deprecated due to 7.3's EOL.
+- EXPOSE statement from PHP image (unneeded) [790e2fe0](https://github.com/markshust/docker-magento/commit/790e2fe0293feb12455d7f9ed2593aa97ad6df99).
+
 ## [41.0.2] - 2021-12-09
 
 ### Fixed

+ 3 - 3
compose/docker-compose.yml

@@ -1,7 +1,7 @@
 ## Mark Shust's Docker Configuration for Magento
 ## (https://github.com/markshust/docker-magento)
 ##
-## Version 41.0.2
+## Version 41.1.0
 
 ## To use SSH, see https://github.com/markshust/docker-magento#ssh
 ## Linux users, see https://github.com/markshust/docker-magento#linux
@@ -14,7 +14,7 @@ version: "3"
 
 services:
   app:
-    image: markoshust/magento-nginx:1.18-5
+    image: markoshust/magento-nginx:1.18-7
     ports:
       - "80:8000"
       - "443:8443"
@@ -37,7 +37,7 @@ services:
       - "magento.test:172.17.0.1"
 
   phpfpm:
-    image: markoshust/magento-php:7.4-fpm-12
+    image: markoshust/magento-php:7.4-fpm-13
     volumes: *appvolumes
     extra_hosts: *appextrahosts
     env_file: env/phpfpm.env