Skip to content

Commit 906c3c7

Browse files
committed
0.1.0-alpha92
* Implemented API services: * Shopping Cart Payment * Shopping Cart Shipping * Shopping Cart Coupon * Shopping Cart License Agreements * Indexer for Fulltext Search * RSS Module become removable * Framework Improvements: * Ability to drop/regenerate access for native mobile apps * Ability to support extensible service data objects * No Code Duplication in Root Templates (MAGETWO-26278) * Fixed bugs: * Persistance session application. Loggin out the customer * Placing the order with two terms and conditions * Saving of custom option by service catalogProductCustomOptionsWriteServiceV1 * Placing the order on frontend if enter in the street address line 1 and 2 255 symbols * Using @357.farm domain emails in registration form * Validation for country_id/region_id and percentage_rate during Tax Rate creation * Declaration of getSortOrders in Magento\Framework\Service\V1\Data\SearchCriteria * Order cancellation for online payment methods * Order online processing for Authorize.net Direct Post * Backend grids while search * Adding of downlodable sample block on product page * Variations on duplicated configurable product * Added functional tests: * Product Review Report * Share Wishlist
1 parent 1485e28 commit 906c3c7

File tree

1,374 files changed

+21354
-8438
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,374 files changed

+21354
-8438
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
0.1.0-alpha92
2+
=============
3+
* Implemented API services:
4+
* Shopping Cart Payment
5+
* Shopping Cart Shipping
6+
* Shopping Cart Coupon
7+
* Shopping Cart License Agreements
8+
* Indexer for Fulltext Search
9+
* RSS Module become removable
10+
* Framework Improvements:
11+
* Ability to drop/regenerate access for native mobile apps
12+
* Ability to support extensible service data objects
13+
* No Code Duplication in Root Templates (MAGETWO-26278)
14+
* Fixed bugs:
15+
* Persistance session application. Loggin out the customer
16+
* Placing the order with two terms and conditions
17+
* Saving of custom option by service catalogProductCustomOptionsWriteServiceV1
18+
* Placing the order on frontend if enter in the street address line 1 and 2 255 symbols
19+
* Using @357.farm domain emails in registration form
20+
* Validation for country_id/region_id and percentage_rate during Tax Rate creation
21+
* Declaration of getSortOrders in Magento\Framework\Service\V1\Data\SearchCriteria
22+
* Order cancellation for online payment methods
23+
* Order online processing for Authorize.net Direct Post
24+
* Backend grids while search
25+
* Adding of downlodable sample block on product page
26+
* Variations on duplicated configurable product
27+
* Added functional tests:
28+
* Product Review Report
29+
* Share Wishlist
30+
131
0.1.0-alpha91
232
=============
333
* Added the following functional tests:

app/code/Magento/AdminNotification/composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.4.11|~5.5.0",
6-
"magento/module-store": "0.1.0-alpha91",
7-
"magento/module-core": "0.1.0-alpha91",
8-
"magento/module-backend": "0.1.0-alpha91",
9-
"magento/module-theme": "0.1.0-alpha91",
10-
"magento/framework": "0.1.0-alpha91",
6+
"magento/module-store": "0.1.0-alpha92",
7+
"magento/module-core": "0.1.0-alpha92",
8+
"magento/module-backend": "0.1.0-alpha92",
9+
"magento/module-theme": "0.1.0-alpha92",
10+
"magento/framework": "0.1.0-alpha92",
1111
"lib-libxml": "*",
1212
"magento/magento-composer-installer": "*"
1313
},
1414
"type": "magento2-module",
15-
"version": "0.1.0-alpha91",
15+
"version": "0.1.0-alpha92",
1616
"extra": {
1717
"map": [
1818
[

app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_block.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
2424
*/
2525
-->
26-
<layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../Core/etc/layout_single.xsd">
26+
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../Core/etc/page.xsd">
2727
<referenceBlock name="adminhtml.notification.container">
2828
<block class="Magento\Backend\Block\Widget\Grid" name="adminhtml.notification.container.grid" as="grid">
2929
<arguments>
@@ -89,4 +89,4 @@
8989
</block>
9090
</block>
9191
</referenceBlock>
92-
</layout>
92+
</page>

app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_index.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
2424
*/
2525
-->
26-
<layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../Core/etc/layout_single.xsd">
26+
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../Core/etc/page.xsd">
2727
<update handle="adminhtml_notification_block"/>
2828
<referenceContainer name="content">
2929
<block class="Magento\AdminNotification\Block\Inbox" name="adminhtml.notification.container"/>
3030
</referenceContainer>
31-
</layout>
31+
</page>

app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
2424
*/
2525
-->
26-
<layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../Core/etc/layout_single.xsd">
26+
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../Core/etc/page.xsd">
2727
<referenceContainer name="notifications">
2828
<block class="Magento\AdminNotification\Block\System\Messages" name="system_messages" as="system_messages" before="-" template="Magento_AdminNotification::system/messages.phtml"/>
2929
<block class="Magento\AdminNotification\Block\System\Messages\UnreadMessagePopup" name="unread_system_messages" as="unread_system_messages" after="system_messages" template="Magento_AdminNotification::system/messages/popup.phtml"/>
@@ -39,4 +39,4 @@
3939
</arguments>
4040
</block>
4141
</referenceBlock>
42-
</layout>
42+
</page>

app/code/Magento/Authorization/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"description": "Authorization module provides access to Magento ACL functionality.",
44
"require": {
55
"php": "~5.4.11|~5.5.0",
6-
"magento/module-backend": "0.1.0-alpha91",
7-
"magento/framework": "0.1.0-alpha91",
6+
"magento/module-backend": "0.1.0-alpha92",
7+
"magento/framework": "0.1.0-alpha92",
88
"magento/magento-composer-installer": "*"
99
},
1010
"type": "magento2-module",
11-
"version": "0.1.0-alpha91",
11+
"version": "0.1.0-alpha92",
1212
"extra": {
1313
"map": [
1414
[

app/code/Magento/Authorizenet/composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.4.11|~5.5.0",
6-
"magento/module-store": "0.1.0-alpha91",
7-
"magento/module-sales": "0.1.0-alpha91",
8-
"magento/module-checkout": "0.1.0-alpha91",
9-
"magento/module-backend": "0.1.0-alpha91",
10-
"magento/module-core": "0.1.0-alpha91",
11-
"magento/module-payment": "0.1.0-alpha91",
12-
"magento/module-centinel": "0.1.0-alpha91",
13-
"magento/module-catalog": "0.1.0-alpha91",
14-
"magento/framework": "0.1.0-alpha91",
6+
"magento/module-store": "0.1.0-alpha92",
7+
"magento/module-sales": "0.1.0-alpha92",
8+
"magento/module-checkout": "0.1.0-alpha92",
9+
"magento/module-backend": "0.1.0-alpha92",
10+
"magento/module-core": "0.1.0-alpha92",
11+
"magento/module-payment": "0.1.0-alpha92",
12+
"magento/module-centinel": "0.1.0-alpha92",
13+
"magento/module-catalog": "0.1.0-alpha92",
14+
"magento/framework": "0.1.0-alpha92",
1515
"magento/magento-composer-installer": "*"
1616
},
1717
"type": "magento2-module",
18-
"version": "0.1.0-alpha91",
18+
"version": "0.1.0-alpha92",
1919
"extra": {
2020
"map": [
2121
[

app/code/Magento/CatalogSearch/etc/indexers.xml renamed to app/code/Magento/Authorizenet/etc/webapi_rest/di.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
2424
*/
2525
-->
26-
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../Index/etc/indexers.xsd">
27-
<indexer name="catalogsearch_fulltext" instance="Magento\CatalogSearch\Model\Indexer\Fulltext" />
26+
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd">
27+
<preference for="Magento\Authorizenet\Helper\HelperInterface" type="Magento\Authorizenet\Helper\Data" />
2828
</config>
29+
30+
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0"?>
2+
<!--
3+
/**
4+
* Magento
5+
*
6+
* NOTICE OF LICENSE
7+
*
8+
* This source file is subject to the Academic Free License (AFL 3.0)
9+
* that is bundled with this package in the file LICENSE_AFL.txt.
10+
* It is also available through the world-wide-web at this URL:
11+
* http://opensource.org/licenses/afl-3.0.php
12+
* If you did not receive a copy of the license and are unable to
13+
* obtain it through the world-wide-web, please send an email
14+
* to license@magentocommerce.com so we can send you a copy immediately.
15+
*
16+
* DISCLAIMER
17+
*
18+
* Do not edit or add to this file if you wish to upgrade Magento to newer
19+
* versions in the future. If you wish to customize Magento for your
20+
* needs please refer to http://www.magentocommerce.com for more information.
21+
*
22+
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com)
23+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
24+
*/
25+
-->
26+
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd">
27+
<preference for="Magento\Authorizenet\Helper\HelperInterface" type="Magento\Authorizenet\Helper\Data" />
28+
</config>
29+
30+

app/code/Magento/Authorizenet/view/adminhtml/layout/adminhtml_authorizenet_directpost_payment_redirect.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
2424
*/
2525
-->
26-
<layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../Core/etc/layout_single.xsd">
27-
<container name="root" label="Root" output="1">
26+
<layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../Core/etc/layout_generic.xsd">
27+
<container name="root" label="Root">
2828
<block class="Magento\Authorizenet\Block\Directpost\Iframe" name="iframe" template="directpost/iframe.phtml"/>
2929
</container>
3030
</layout>

0 commit comments

Comments
 (0)