-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed bugs: * Fixed an issue with displaying product on the frontend when the product flat indexer is enabled * Fixed an issue with applying catalog price rules on the category level * Fixed an issue where the essential cookies like CUSTOMER, CART, and so on were not created in Google Chrome * Fixed an issue with placing orders by customers assigned to a VAT group * Fixed an issue with incorrect error message during registration, and inability for a shopper to ask for resending a confirmation email * Fixed an issue where the Catalog module resource Setup Upgrade logic was broken * Modularity improvements: * Moved abstract Core models and related logic to the Magento/Model library * Moved the abstract DB logic and Core resource helpers to the Magento/DB library * Eliminated the Core\Model\App class * Moved the Magento Flag functionality to the library * Resolved dependency of the Catalog and related modules on the Review module * Moved indexers related logic from the Core module to the Indexer module * Moved the Inline translation and user intended translate functionality from the Core module to a separate Translation module * Framework Improvements: * Covered Magento library components with unit tests: * Magento\Config * Magento\Convert * Magento\Controller * Magento\Data\Collection\Db * Magento\Mview * Magento\Url and Magento/Url.php * Covered Magento application components with unit tests: * Magento\Checkout\Model\Config * Magento\Checkout\Model\Observer * Magento\Checkout\Model\Type * Magento\Sales\Model\Config * Renamed LauncherInterface to AppInterface * Improvements in code coverage calculation: * Updated the whitelist filter with library code for integration tests code coverage calculation * GitHub requests: * [#512] (#512) -- Theme Thumbnails not showing * [#520] (#502) -- Corrected Search Engine Optimization i18n * [#519] (#519) -- New Theme Activation * Customer Service usage: * Refactored the Log module to use Customer Service * Refactored the RSS module to use Customer Service * Refactored the Review module to use Customer Service * Refactored the Catalog module to use Customer service layer * Refactored the Downloadable module to use Customer service layer
- Loading branch information
1 parent
9c2b633
commit 1e3c166
Showing
1,532 changed files
with
14,644 additions
and
13,611 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @package Magento_AdminNotification | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Feed extends \Magento\Core\Model\AbstractModel | ||
class Feed extends \Magento\Model\AbstractModel | ||
{ | ||
const XML_USE_HTTPS_PATH = 'system/adminnotification/use_https'; | ||
|
||
|
@@ -64,7 +64,7 @@ class Feed extends \Magento\Core\Model\AbstractModel | |
* @param \Magento\Registry $registry | ||
* @param \Magento\Backend\App\ConfigInterface $backendConfig | ||
* @param \Magento\AdminNotification\Model\InboxFactory $inboxFactory | ||
* @param \Magento\Core\Model\Resource\AbstractResource $resource | ||
* @param \Magento\Model\Resource\AbstractResource $resource | ||
* @param \Magento\Data\Collection\Db $resourceCollection | ||
* @param array $data | ||
*/ | ||
|
@@ -73,7 +73,7 @@ public function __construct( | |
\Magento\Registry $registry, | ||
\Magento\Backend\App\ConfigInterface $backendConfig, | ||
\Magento\AdminNotification\Model\InboxFactory $inboxFactory, | ||
\Magento\Core\Model\Resource\AbstractResource $resource = null, | ||
\Magento\Model\Resource\AbstractResource $resource = null, | ||
\Magento\Data\Collection\Db $resourceCollection = null, | ||
array $data = array() | ||
) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,7 @@ | |
* @package Magento_AdminNotification | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Inbox extends \Magento\Core\Model\AbstractModel | ||
class Inbox extends \Magento\Model\AbstractModel | ||
{ | ||
const SEVERITY_CRITICAL = 1; | ||
|
||
|
@@ -133,13 +133,13 @@ public function parse(array $data) | |
* @param string|string[] $description | ||
* @param string $url | ||
* @param bool $isInternal | ||
* @throws \Magento\Core\Exception | ||
* @throws \Magento\Model\Exception | ||
* @return $this | ||
*/ | ||
public function add($severity, $title, $description, $url = '', $isInternal = true) | ||
{ | ||
if (!$this->getSeverities($severity)) { | ||
throw new \Magento\Core\Exception(__('Wrong message type')); | ||
throw new \Magento\Model\Exception(__('Wrong message type')); | ||
} | ||
if (is_array($description)) { | ||
$description = '<ul><li>' . implode('</li><li>', $description) . '</li></ul>'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @package Magento_AdminNotification | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Inbox extends \Magento\Core\Model\Resource\Db\AbstractDb | ||
class Inbox extends \Magento\Model\Resource\Db\AbstractDb | ||
{ | ||
/** | ||
* AdminNotification Resource initialization | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @package Magento_AdminNotification | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Collection extends \Magento\Core\Model\Resource\Db\Collection\AbstractCollection | ||
class Collection extends \Magento\Model\Resource\Db\Collection\AbstractCollection | ||
{ | ||
/** | ||
* Resource collection initialization | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.