Skip to content

Commit 9bf3d15

Browse files
author
Joan He
committed
Merge remote-tracking branch 'origin/BugFixPR' into MAGETWO-93723
2 parents 1b47913 + f5661a2 commit 9bf3d15

File tree

131 files changed

+736
-152
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+736
-152
lines changed

app/code/Magento/Braintree/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"require": {
88
"php": "~7.1.3||~7.2.0",
9-
"braintree/braintree_php": "3.34.0",
9+
"braintree/braintree_php": "3.35.0",
1010
"magento/framework": "*",
1111
"magento/magento-composer-installer": "*",
1212
"magento/module-catalog": "*",

app/code/Magento/Catalog/Test/Mftf/Section/AdminProductFormSection.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
<element name="setProductAsNewFrom" type="input" selector="input[name='product[news_from_date]']"/>
4848
<element name="setProductAsNewTo" type="input" selector="input[name='product[news_to_date]']"/>
4949
<element name="attributeLabelByText" type="text" selector="//*[@class='admin__field']//span[text()='{{attributeLabel}}']" parameterized="true"/>
50+
<element name="customSelectField" type="select" selector="//select[@name='product[{{var}}]']" parameterized="true"/>
5051
</section>
5152
<section name="ProductInWebsitesSection">
5253
<element name="sectionHeader" type="button" selector="div[data-index='websites']" timeout="30"/>

app/code/Magento/Catalog/Test/Mftf/Section/StorefrontCategorySidebarSection.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,7 @@
1313
<element name="filterOption" type="text" selector=".filter-options-content .item"/>
1414
<element name="optionQty" type="text" selector=".filter-options-content .item .count"/>
1515
</section>
16+
<section name="StorefrontCategorySidebarMobileSection">
17+
<element name="shopByButton" type="button" selector="//div[contains(@class, 'filter-title')]/strong[contains(text(), 'Shop By')]"/>
18+
</section>
1619
</sections>

app/code/Magento/CatalogGraphQl/Model/Resolver/Categories.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public function resolve(Field $field, $context, ResolveInfo $info, array $value
9797
}
9898

9999
if (!$this->collection->isLoaded()) {
100-
$that->attributesJoiner->join($info->fieldASTs[0], $this->collection);
100+
$that->attributesJoiner->join($info->fieldNodes[0], $this->collection);
101101
$this->collection->addIdFilter($this->categoryIds);
102102
}
103103
/** @var CategoryInterface | \Magento\Catalog\Model\Category $item */

app/code/Magento/CatalogGraphQl/Model/Resolver/Products/DataProvider/CategoryTree.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function __construct(
8989
*/
9090
public function getTree(ResolveInfo $resolveInfo, int $rootCategoryId) : array
9191
{
92-
$categoryQuery = $resolveInfo->fieldASTs[0];
92+
$categoryQuery = $resolveInfo->fieldNodes[0];
9393
$collection = $this->collectionFactory->create();
9494
$this->joinAttributesRecursively($collection, $categoryQuery);
9595
$depth = $this->depthCalculator->calculate($categoryQuery);

app/code/Magento/CatalogSearch/Block/Advanced/Form.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
/**
2424
* @api
2525
* @since 100.0.2
26+
* @deprecated CatalogSearch will be removed in 2.4, and {@see \Magento\ElasticSearch}
27+
* will replace it as the default search engine.
2628
*/
2729
class Form extends Template
2830
{

app/code/Magento/CatalogSearch/Block/Advanced/Result.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
*
1919
* @api
2020
* @since 100.0.2
21+
* @deprecated CatalogSearch will be removed in 2.4, and {@see \Magento\ElasticSearch}
22+
* will replace it as the default search engine.
2123
*/
2224
class Result extends Template
2325
{

app/code/Magento/CatalogSearch/Block/Plugin/FrontTabPlugin.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
/**
1414
* Plugin for Magento\Catalog\Block\Adminhtml\Product\Attribute\Edit\Tab\Front
15+
* @deprecated CatalogSearch will be removed in 2.4, and {@see \Magento\ElasticSearch}
16+
* will replace it as the default search engine.
1517
*/
1618
class FrontTabPlugin
1719
{

app/code/Magento/CatalogSearch/Block/Result.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
*
1919
* @api
2020
* @since 100.0.2
21+
* @deprecated CatalogSearch will be removed in 2.4, and {@see \Magento\ElasticSearch}
22+
* will replace it as the default search engine.
2123
*/
2224
class Result extends Template
2325
{

app/code/Magento/CatalogSearch/Block/SearchTermsLog.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
/**
1212
* Class for logging search terms on cached pages
13+
* @deprecated CatalogSearch will be removed in 2.4, and {@see \Magento\ElasticSearch}
14+
* will replace it as the default search engine.
1315
*/
1416
class SearchTermsLog implements ArgumentInterface
1517
{

0 commit comments

Comments
 (0)