Skip to content

Commit 5e5ee84

Browse files
authored
Merge pull request #87 from Nosto/feature/add-if-config-to-template
Render layouts only when CM configuration is enabled
2 parents 9bcc1bb + 1ea4a7d commit 5e5ee84

File tree

9 files changed

+144
-150
lines changed

9 files changed

+144
-150
lines changed

.github/workflows/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: shivammathur/setup-php@v2
1616
with:
1717
php-version: '7.2'
18-
tools: composer, prestissimo
18+
tools: composer:v1, prestissimo
1919
extensions: ast
2020
coverage: none
2121

@@ -69,7 +69,7 @@ jobs:
6969
uses: shivammathur/setup-php@v2
7070
with:
7171
php-version: '7.2'
72-
tools: composer, prestissimo
72+
tools: composer:v1, prestissimo
7373
extensions: ast
7474
coverage: none
7575

@@ -120,7 +120,7 @@ jobs:
120120
uses: shivammathur/setup-php@v2
121121
with:
122122
php-version: '7.2'
123-
tools: composer, prestissimo
123+
tools: composer:v1, prestissimo
124124
extensions: ast
125125
coverage: none
126126

.github/workflows/ide.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: shivammathur/setup-php@v2
1717
with:
1818
php-version: '7.2'
19-
tools: composer, prestissimo, pecl
19+
tools: composer:v1, prestissimo, pecl
2020
coverage: none
2121

2222
- name: Install AST extension

.github/workflows/phan.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: shivammathur/setup-php@v2
1717
with:
1818
php-version: '7.2'
19-
tools: composer, prestissimo, pecl
19+
tools: composer:v1, prestissimo, pecl
2020
coverage: none
2121
extensions: ast
2222

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.
22

3+
## 3.1.0-rc5
4+
* Render frontend layouts only when CM configuration is enabled
5+
* Upgrade PHP-SDK version to fix CM not displaying Nosto sorting when batchToken is null
6+
37
## 3.1.0-rc4
48
* Fix issue where filters were not passed when using MySQL
59

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "nosto/module-nostocmp",
33
"description": "Nosto Category Merchandising extension for Magento 2",
44
"type": "magento2-module",
5-
"version": "3.1.0-rc4",
5+
"version": "3.1.0-rc5",
66
"require-dev": {
77
"magento-ecg/coding-standard": "3.*",
88
"magento/module-store": "101.0.4",
@@ -25,7 +25,7 @@
2525
"minimum-stability": "dev",
2626
"require": {
2727
"nosto/module-nostotagging": "^5.0.3",
28-
"nosto/php-sdk": ">=5.3.3",
28+
"nosto/php-sdk": ">=5.3.5",
2929
"php": ">=7.1",
3030
"ext-json": "*"
3131
},

0 commit comments

Comments
 (0)