From 3ff3ea2d9e123480bcef8f630c06b040b8882d88 Mon Sep 17 00:00:00 2001 From: Vadim Justus <v.justus@techdivision.com> Date: Wed, 25 May 2022 15:20:22 +0200 Subject: [PATCH] Update Changelog and Readme file; Fix automated tests --- .travis.yml | 10 ++-------- CHANGELOG.md | 13 +++++++++++++ README.md | 9 +++++---- 3 files changed, 20 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2ffaa33..8cdd97d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ addons: apt: sources: - - mysql-5.7-trusty + - mysql-8.0-trusty packages: - mysql-server - mysql-client @@ -13,19 +13,13 @@ services: language: php php: - - 7.3 - 7.4 + - 8.1 env: matrix: - - MAGENTO_VERSION=2.3 - MAGENTO_VERSION=2.4 -matrix: - exclude: - - php: 7.4 - env: MAGENTO_VERSION=2.3 - before_install: - composer self-update --1 - git clone --depth=50 --branch=$MAGENTO_VERSION https://github.com/magento/magento2.git /tmp/magento diff --git a/CHANGELOG.md b/CHANGELOG.md index d4103da..0a0b89d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # CHANGELOG +## 1.4.0 + +* *Feature:* Introduce reset CLI command to force content import for already given contents manually + +## 1.3.7 + +* PHP 8.1 support + +## 1.3.6 + +* Change to MIT licence +* No other changes between 1.3.5 to 1.3.6 + ## 1.3.5 * *Improvement:* Add support for full-width cms pages diff --git a/README.md b/README.md index 374adbf..26a52a7 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,10 @@ Only the latest patch versions of the following Magento versions are covered by ### "develop" branch -| PHP | Magento 2.3 | Magento 2.4 | -|:---: |:---:|:---:| -| 7.4 | - | [](https://travis-ci.org/magento-hackathon/m2-content-provisioning) | +| PHP | Magento 2.4 | +|:---: |:---:| +| 7.4 | [](https://travis-ci.org/magento-hackathon/m2-content-provisioning) | +| 8.1 | [](https://travis-ci.org/magento-hackathon/m2-content-provisioning) | ## The idea behind this module @@ -175,7 +176,7 @@ bin/magento content-provisioning:block:reset -k "myKey" # reset a CMS blocks by its identifier bin/magento content-provisioning:block:reset --identifier "myIdentifier" -bin/magento content-provisioning:block:reset --i "myIdentifier" +bin/magento content-provisioning:block:reset -i "myIdentifier" # add a CMS block by key bin/magento content-provisioning:block:apply "myKey" -- GitLab