Skip to content

Commit b1cebfa

Browse files
committed
2.0.0.0-dev67
* GitHub requests: * [#235](#235) -- Translation escaping * [#463](#463) -- allow _resolveArguments to do sequential lookups * Fixed bugs: * Fixed an issue where nonexistent store views flat tables cleanuper dropped the catalog_category_flat_cl table * Fixed an issue where the Product Flat Data indexer used the helpers logic instead of the Flat State logic * Fixed an issue where an exception was thrown when applying a coupon code * Fixed an issue where a Shopping Cart Price Rule was applied to the wrong products * Fixed an issue with the broken Related Orders link on the Recurring Profile page * Fixed an issue with CMS pages preview not working * Fixed an issue with a sales report for a store view returning wrong result * Fixed an issue where shipping did not work for orders containing only bundle products * Fixed an issue where a custom not found page action did not work * Fixed an issue where user configuration for a shopping cart rule to stop further rules processing was ignored * Modularity improvements: * Resolved dependencies of the Sales module on the RecurringProfile module * Resolved dependencies of the Email Templates functionality on application modules * Lib-only dependent components of the Core module moved to library * CSS URL resolving logic moved from the publisher to a separate CSS pre-processor * Refactored the View publisher * Customer Service usage: * Refactored the Sales module to use Customer service layer * Refactored the Checkout module to use Customer service layer * Updated various PHPDoc with the parameter and return types
1 parent d5d8091 commit b1cebfa

File tree

1,559 files changed

+22945
-11474
lines changed

Some content is hidden

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

1,559 files changed

+22945
-11474
lines changed

CHANGELOG.md

Lines changed: 35 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
2.0.0.0-dev67
2+
=============
3+
* GitHub requests:
4+
* [#235](https://github.com/magento/magento2/issues/235) -- Translation escaping
5+
* [#463](https://github.com/magento/magento2/pull/463) -- allow _resolveArguments to do sequential lookups
6+
* Fixed bugs:
7+
* Fixed an issue where nonexistent store views flat tables cleanuper dropped the catalog_category_flat_cl table
8+
* Fixed an issue where the Product Flat Data indexer used the helpers logic instead of the Flat State logic
9+
* Fixed an issue where an exception was thrown when applying a coupon code
10+
* Fixed an issue where a Shopping Cart Price Rule was applied to the wrong products
11+
* Fixed an issue with the broken Related Orders link on the Recurring Profile page
12+
* Fixed an issue with CMS pages preview not working
13+
* Fixed an issue with a sales report for a store view returning wrong result
14+
* Fixed an issue where shipping did not work for orders containing only bundle products
15+
* Fixed an issue where a custom not found page action did not work
16+
* Fixed an issue where user configuration for a shopping cart rule to stop further rules processing was ignored
17+
* Modularity improvements:
18+
* Resolved dependencies of the Sales module on the RecurringProfile module
19+
* Resolved dependencies of the Email Templates functionality on application modules
20+
* Lib-only dependent components of the Core module moved to library
21+
* CSS URL resolving logic moved from the publisher to a separate CSS pre-processor
22+
* Refactored the View publisher
23+
* Customer Service usage:
24+
* Refactored the Sales module to use Customer service layer
25+
* Refactored the Checkout module to use Customer service layer
26+
* Updated various PHPDoc with the parameter and return types
27+
128
2.0.0.0-dev66
229
=============
330
* GitHub requests:
@@ -17,8 +44,8 @@
1744
* Moved the Billing Agreements functionality to the PayPal module
1845
* Finalized the work on resolving dependencies between the Multishipping module, and all other modules. Module can be removed without any impact on the system
1946
* Customer Service usage:
20-
* Updated Customer Group Grid to use Customer Service for data retrieving and filtering
21-
* Updated CustomerMetadataService::getAttributeMetadata to throw an exception if invalid code is provided
47+
* Updated Customer Group Grid to use Customer Service for data retrieving and filtering
48+
* Updated CustomerMetadataService::getAttributeMetadata to throw an exception if invalid code is provided
2249
* Unified the format of specifying arguments for class constructors in DI and in Layout configuration:
2350
* A common xsd schema is being used for defining simple types. Layout and DI customize common types with their specific ones
2451
* Argument processing is unified, and moved to library
@@ -50,9 +77,12 @@
5077
* [#319] (https://github.com/magento/magento2/issues/319) No message was displayed when product added to shopping cart.
5178
* [#367] (https://github.com/magento/magento2/issues/367) Improve the error message from the contact form
5279
* [#469] (https://github.com/magento/magento2/issues/469) Can't change prices on different websites for custom options
53-
* Updated the Customer service exception handling, and added tests
54-
* Added usage of the Customer service to the Customer module, replacing some direct usage of the Customer model
55-
* Updated various PHPDoc with the parameter and return types
80+
* [#484] (https://github.com/magento/magento2/pull/484) Calling clear / removeAllItems / removeItemByKey on Magento\Eav\Model\Entity\Collection\AbstractCollection does not remove model from protected _itemsById array
81+
* [#474] (https://github.com/magento/magento2/pull/474) Change for Options Collection class
82+
* [#483] (https://github.com/magento/magento2/pull/483) Update Category.php
83+
* Update Customer Service Exception handling and add tests
84+
* Add usage of Customer Service to Customer Module, replacing some direct usage of Customer Model
85+
* Updated various PHPDoc with parameter and return types
5686

5787
2.0.0.0-dev64
5888
=============

app/code/Magento/AdminNotification/Model/Config/Source/Frequency.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @package Magento_AdminNotification
3333
* @author Magento Core Team <[email protected]>
3434
*/
35-
class Frequency implements \Magento\Core\Model\Option\ArrayInterface
35+
class Frequency implements \Magento\Option\ArrayInterface
3636
{
3737
/**
3838
* @return array

app/code/Magento/AdminNotification/Model/Feed.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,17 @@ class Feed extends \Magento\Core\Model\AbstractModel
5757
protected $_inboxFactory;
5858

5959
/**
60-
* @param \Magento\Core\Model\Context $context
61-
* @param \Magento\Core\Model\Registry $registry
60+
* @param \Magento\Model\Context $context
61+
* @param \Magento\Registry $registry
6262
* @param \Magento\Backend\App\ConfigInterface $backendConfig
6363
* @param \Magento\AdminNotification\Model\InboxFactory $inboxFactory
6464
* @param \Magento\Core\Model\Resource\AbstractResource $resource
6565
* @param \Magento\Data\Collection\Db $resourceCollection
6666
* @param array $data
6767
*/
6868
public function __construct(
69-
\Magento\Core\Model\Context $context,
70-
\Magento\Core\Model\Registry $registry,
69+
\Magento\Model\Context $context,
70+
\Magento\Registry $registry,
7171
\Magento\Backend\App\ConfigInterface $backendConfig,
7272
\Magento\AdminNotification\Model\InboxFactory $inboxFactory,
7373
\Magento\Core\Model\Resource\AbstractResource $resource = null,

app/code/Magento/Authorizenet/Block/Directpost/Iframe.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@ class Iframe extends \Magento\View\Element\Template
3838
/**
3939
* Core registry
4040
*
41-
* @var \Magento\Core\Model\Registry
41+
* @var \Magento\Registry
4242
*/
4343
protected $_coreRegistry = null;
4444

4545
/**
4646
* @param \Magento\View\Element\Template\Context $context
47-
* @param \Magento\Core\Model\Registry $registry
47+
* @param \Magento\Registry $registry
4848
* @param array $data
4949
*/
5050
public function __construct(
5151
\Magento\View\Element\Template\Context $context,
52-
\Magento\Core\Model\Registry $registry,
52+
\Magento\Registry $registry,
5353
array $data = array()
5454
) {
5555
$this->_coreRegistry = $registry;

app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ class Payment
3131
/**
3232
* Core registry
3333
*
34-
* @var \Magento\Core\Model\Registry
34+
* @var \Magento\Registry
3535
*/
3636
protected $_coreRegistry = null;
3737

3838
/**
3939
* @param \Magento\Backend\App\Action\Context $context
4040
* @param \Magento\Catalog\Helper\Product $productHelper
41-
* @param \Magento\Core\Model\Registry $coreRegistry
41+
* @param \Magento\Registry $coreRegistry
4242
*/
4343
public function __construct(
4444
\Magento\Backend\App\Action\Context $context,
4545
\Magento\Catalog\Helper\Product $productHelper,
46-
\Magento\Core\Model\Registry $coreRegistry
46+
\Magento\Registry $coreRegistry
4747
) {
4848
$this->_coreRegistry = $coreRegistry;
4949
parent::__construct($context, $productHelper);

app/code/Magento/Authorizenet/Controller/Directpost/Payment.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ class Payment extends \Magento\App\Action\Action
3535
/**
3636
* Core registry
3737
*
38-
* @var \Magento\Core\Model\Registry
38+
* @var \Magento\Registry
3939
*/
4040
protected $_coreRegistry = null;
4141

4242
/**
4343
* @param \Magento\App\Action\Context $context
44-
* @param \Magento\Core\Model\Registry $coreRegistry
44+
* @param \Magento\Registry $coreRegistry
4545
*/
4646
public function __construct(
4747
\Magento\App\Action\Context $context,
48-
\Magento\Core\Model\Registry $coreRegistry
48+
\Magento\Registry $coreRegistry
4949
) {
5050
$this->_coreRegistry = $coreRegistry;
5151
parent::__construct($context);

app/code/Magento/Authorizenet/Model/Authorizenet.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ class Authorizenet extends \Magento\Payment\Model\Method\Cc
245245
* @param \Magento\Event\ManagerInterface $eventManager
246246
* @param \Magento\Payment\Helper\Data $paymentData
247247
* @param \Magento\Core\Model\Store\Config $coreStoreConfig
248-
* @param \Magento\Core\Model\Log\AdapterFactory $logAdapterFactory
248+
* @param \Magento\Logger\AdapterFactory $logAdapterFactory
249249
* @param \Magento\Logger $logger
250250
* @param \Magento\Module\ModuleListInterface $moduleList
251251
* @param \Magento\Core\Model\LocaleInterface $locale
@@ -257,14 +257,14 @@ class Authorizenet extends \Magento\Payment\Model\Method\Cc
257257
* @param \Magento\Session\SessionManagerInterface $session
258258
* @param \Magento\Authorizenet\Helper\Data $authorizenetData
259259
* @param array $data
260-
*
260+
*
261261
* @SuppressWarnings(PHPMD.ExcessiveParameterList)
262262
*/
263263
public function __construct(
264264
\Magento\Event\ManagerInterface $eventManager,
265265
\Magento\Payment\Helper\Data $paymentData,
266266
\Magento\Core\Model\Store\Config $coreStoreConfig,
267-
\Magento\Core\Model\Log\AdapterFactory $logAdapterFactory,
267+
\Magento\Logger\AdapterFactory $logAdapterFactory,
268268
\Magento\Logger $logger,
269269
\Magento\Module\ModuleListInterface $moduleList,
270270
\Magento\Core\Model\LocaleInterface $locale,

app/code/Magento/Authorizenet/Model/Authorizenet/Source/PaymentAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*
3232
* @author Magento Core Team <[email protected]>
3333
*/
34-
class PaymentAction implements \Magento\Core\Model\Option\ArrayInterface
34+
class PaymentAction implements \Magento\Option\ArrayInterface
3535
{
3636
/**
3737
* {@inheritdoc}

app/code/Magento/Authorizenet/Model/Directpost.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class Directpost extends \Magento\Authorizenet\Model\Authorizenet
8484
* @param \Magento\Event\ManagerInterface $eventManager
8585
* @param \Magento\Payment\Helper\Data $paymentData
8686
* @param \Magento\Core\Model\Store\Config $coreStoreConfig
87-
* @param \Magento\Core\Model\Log\AdapterFactory $logAdapterFactory
87+
* @param \Magento\Logger\AdapterFactory $logAdapterFactory
8888
* @param \Magento\Logger $logger
8989
* @param \Magento\Module\ModuleListInterface $moduleList
9090
* @param \Magento\Core\Model\LocaleInterface $locale
@@ -108,7 +108,7 @@ public function __construct(
108108
\Magento\Event\ManagerInterface $eventManager,
109109
\Magento\Payment\Helper\Data $paymentData,
110110
\Magento\Core\Model\Store\Config $coreStoreConfig,
111-
\Magento\Core\Model\Log\AdapterFactory $logAdapterFactory,
111+
\Magento\Logger\AdapterFactory $logAdapterFactory,
112112
\Magento\Logger $logger,
113113
\Magento\Module\ModuleListInterface $moduleList,
114114
\Magento\Core\Model\LocaleInterface $locale,

app/code/Magento/Authorizenet/Model/Directpost/Observer.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ class Observer
3535
/**
3636
* Core registry
3737
*
38-
* @var \Magento\Core\Model\Registry
38+
* @var \Magento\Registry
3939
*/
4040
protected $_coreRegistry;
41-
41+
4242
/**
4343
* Core helper
4444
*
@@ -71,15 +71,15 @@ class Observer
7171
/**
7272
* @param \Magento\Authorizenet\Helper\Data $authorizenetData
7373
* @param \Magento\Core\Helper\Data $coreData
74-
* @param \Magento\Core\Model\Registry $coreRegistry
74+
* @param \Magento\Registry $coreRegistry
7575
* @param \Magento\Authorizenet\Model\Directpost $payment
7676
* @param \Magento\Authorizenet\Model\Directpost\Session $session
7777
* @param \Magento\Core\Model\StoreManagerInterface $storeManager
7878
*/
7979
public function __construct(
8080
\Magento\Authorizenet\Helper\Data $authorizenetData,
8181
\Magento\Core\Helper\Data $coreData,
82-
\Magento\Core\Model\Registry $coreRegistry,
82+
\Magento\Registry $coreRegistry,
8383
\Magento\Authorizenet\Model\Directpost $payment,
8484
\Magento\Authorizenet\Model\Directpost\Session $session,
8585
\Magento\Core\Model\StoreManagerInterface $storeManager

0 commit comments

Comments
 (0)