Browse Source

Bump to version 30.0.0

Mark Shust 5 years ago
parent
commit
94265e8f33
4 changed files with 26 additions and 9 deletions
  1. 17 0
      CHANGELOG.md
  2. 5 5
      README.md
  3. 1 1
      compose/docker-compose.dev.yml
  4. 3 3
      compose/docker-compose.yml

+ 17 - 0
CHANGELOG.md

@@ -8,6 +8,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
 
 N/A
 
+
+## [30.0.0] - 2020-03-09
+
+### Added
+- Added new CLI to connect to MySQL
+
+### Updated
+- Updated readme with new bin/mysql documentation
+- n98-magerun2 to install on exec of `bin/n98-magerun2` instead of `bin/setup` script
+- Increased `max_input_vars` to `10000` to prevent Invalid Form Post submission errors
+
+### Fixed
+- Fixed PHP ioncube module missing ioncube.so file
+- Ensure directory name is converted to lowercase
+- Disable TTY on `bin/setup-ssl-ca script`
+- Fixed `bin/copytocontainer` script not copying files to proper directory
+
 ## [29.0.0] - 2020-01-31
 
 ### Fixed

+ 5 - 5
README.md

@@ -92,10 +92,10 @@ This configuration has been tested on Mac & Linux. Windows is supported through
 Run this automated one-liner from the directory you want to install your project to:
 
 ```bash
-curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/onelinesetup | bash -s -- magento2.test 2.3.3
+curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/onelinesetup | bash -s -- magento2.test 2.3.4
 ```
 
-The `magento2.test` above defines the hostname to use, and the `2.3.3` defines the Magento version to install. Note that since we need a write to `/etc/hosts` for DNS resolution, you will be prompted for your system password during setup.
+The `magento2.test` above defines the hostname to use, and the `2.3.4` defines the Magento version to install. Note that since we need a write to `/etc/hosts` for DNS resolution, you will be prompted for your system password during setup.
 
 After the one-liner above completes running, you should be able to access your site at `https://magento2.test`.
 
@@ -110,19 +110,19 @@ Same result as the one-liner above. Just replace `magento2.test` references with
 curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/template | bash
 
 # Download the version of Magento you want to use with:
-bin/download 2.3.3
+bin/download 2.3.4
 
 # or if you'd rather install with Composer, run:
 #
 # OPEN SOURCE:
 #
 # rm -rf src
-# composer create-project --repository=https://repo.magento.com/ --ignore-platform-reqs magento/project-community-edition=2.3.3 src
+# composer create-project --repository=https://repo.magento.com/ --ignore-platform-reqs magento/project-community-edition=2.3.4 src
 #
 # COMMERCE:
 #
 # rm -rf src
-# composer create-project --repository=https://repo.magento.com/ --ignore-platform-reqs magento/project-enterprise-edition=2.3.3 src
+# composer create-project --repository=https://repo.magento.com/ --ignore-platform-reqs magento/project-enterprise-edition=2.3.4 src
 
 # Create a DNS host entry for the site:
 echo "127.0.0.1 ::1 magento2.test" | sudo tee -a /etc/hosts

+ 1 - 1
compose/docker-compose.dev.yml

@@ -1,5 +1,5 @@
 # Mark Shust's Docker Configuration for Magento (https://github.com/markshust/docker-magento)
-# Version 29.0.0
+# Version 30.0.0
 
 version: "3"
 

+ 3 - 3
compose/docker-compose.yml

@@ -1,5 +1,5 @@
 # Mark Shust's Docker Configuration for Magento (https://github.com/markshust/docker-magento)
-# Version 29.0.0
+# Version 30.0.0
 
 version: "3"
 
@@ -19,7 +19,7 @@ services:
       - ssldata:/etc/nginx/certs
 
   phpfpm:
-    image: markoshust/magento-php:7.3-fpm-4
+    image: markoshust/magento-php:7.3-fpm-5
     links:
       - db
     volumes: *appvolumes
@@ -51,7 +51,7 @@ services:
 
   # Disabling cron by default as it uses higher CPU, enable if needed
   #cron:
-  #  image: markoshust/magento-php:7.3-fpm-4
+  #  image: markoshust/magento-php:7.3-fpm-5
   #  user: root
   #  command: /usr/local/bin/cronstart
   #  tty: true