Skip to content

Commit 89b5867

Browse files
committed
0.1.0-alpha96
* Framework improvements: * Increased unit tests code coverage for Magento_Persistent, Magento_GiftMessage, Magento_Checkout modules * Modularity: * Removed module dependency on the Weee module * Fixed Bugs: * Fixed an issue in composer installation where Magento/Framework marshaling did not work * Fixed an issue where shipping tax was included twice in tax details * Renamed the getDistinct method in Tax Model * Fixed an issue where it was impossible to reorder and create a new order in the Admin panel if some fields of the order were specified incorrectly and the page was reloaded * Fixed an issue where the Configure link was not displayed in the Product Requiring Attention section * Fixed an issue where Magento could only be installed in the host root directory * Fixed an issue where no proper error message was displayed if vendor directory did not exist in the setup tool * Fixed an issue where a fatal error was thrown during checkout with multiple addresses * Fixed an issue where integration tests failed if prefixes for tables were used * Checkout API: * Created Customer Shopping Cart Service * Price template refactoring * Introduced a single interface for price and tax calculation logic * Functional tests: * Add products to shopping cart * Bestseller products report * Cancel created order * Delete customer address * Hold created order * Ordered products report * Sales coupon report * GitHub requests: * [magento#662] (magento#662) -- Composer Installation
1 parent 7ad2dc7 commit 89b5867

File tree

627 files changed

+14899
-6672
lines changed

Some content is hidden

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

627 files changed

+14899
-6672
lines changed

CHANGELOG.md

+33-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
0.1.0-alpha96
2+
=============
3+
* Framework improvements:
4+
* Increased unit tests code coverage for Magento_Persistent, Magento_GiftMessage, Magento_Checkout modules
5+
* Modularity:
6+
* Removed module dependency on the Weee module
7+
* Fixed Bugs:
8+
* Fixed an issue in composer installation where Magento/Framework marshaling did not work
9+
* Fixed an issue where shipping tax was included twice in tax details
10+
* Renamed the getDistinct method in Tax Model
11+
* Fixed an issue where it was impossible to reorder and create a new order in the Admin panel if some fields of the order were specified incorrectly and the page was reloaded
12+
* Fixed an issue where the Configure link was not displayed in the Product Requiring Attention section
13+
* Fixed an issue where Magento could only be installed in the host root directory
14+
* Fixed an issue where no proper error message was displayed if vendor directory did not exist in the setup tool
15+
* Fixed an issue where a fatal error was thrown during checkout with multiple addresses
16+
* Fixed an issue where integration tests failed if prefixes for tables were used
17+
* Checkout API:
18+
* Created Customer Shopping Cart Service
19+
* Price template refactoring
20+
* Introduced a single interface for price and tax calculation logic
21+
* Functional tests:
22+
* Add products to shopping cart
23+
* Bestseller products report
24+
* Cancel created order
25+
* Delete customer address
26+
* Hold created order
27+
* Ordered products report
28+
* Sales coupon report
29+
* GitHub requests:
30+
* [#662] (https://github.com/magento/magento2/issues/662) -- Composer Installation
31+
132
0.1.0-alpha95
233
=============
334
* Modularity
@@ -57,8 +88,8 @@
5788
* Configuration scope of items' InStock status on order cancellation
5889
* Creating the new customer in admin
5990
* GitHub requests:
60-
* #621 -- Parse error: syntax error, unexpected T_OBJECT_OPERATOR
61-
* #651 -- Multishipping checkout add/edit address page issue
91+
* [#621] (https://github.com/magento/magento2/issues/621) -- Parse error: syntax error, unexpected T_OBJECT_OPERATOR
92+
* [#651] (https://github.com/magento/magento2/issues/651) -- Multishipping checkout add/edit address page issue
6293

6394
0.1.0-alpha94
6495
=============

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The Magento 2 development team will review all issues and contributions submitte
77
If you are a new GitHub user, we recommend that you create your own [free github account](https://github.com/signup/free). By doing that, you will be able to collaborate with the Magento 2 development team, “fork” the Magento 2 project and be able to easily send “pull requests”.
88

99
1. Search current [listed issues](https://github.com/magento/magento2/issues) (open or closed) for similar proposals of intended contribution before starting work on a new contribution.
10-
2. Review the [Contributor License Agreement](https://github.com/magento/magento2/wiki/Contributor-License-Agreement) if this is your first time contributing.
10+
2. Review the [Contributor License Agreement](https://github.com/magento/magento2/blob/master/CONTRIBUTOR_LICENSE_AGREEMENT.html) if this is your first time contributing.
1111
3. Create and test your work.
1212
4. Fork the Magento 2 repository according to [github's Fork A Repo instructions](https://help.github.com/articles/fork-a-repo) and when you are ready to send us a Pull Request – follow [github's Using Pull Requests instructions](https://help.github.com/articles/using-pull-requests).
1313
5. Once your contribution is received, Magento 2 development team will review the contribution and collaborate with you as needed to improve the quality of the contribution.

CONTRIBUTOR_LICENSE_AGREEMENT.html

-131
This file was deleted.

app/code/Magento/AdminNotification/composer.json

+6-6
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-alpha95",
7-
"magento/module-core": "0.1.0-alpha95",
8-
"magento/module-backend": "0.1.0-alpha95",
9-
"magento/module-theme": "0.1.0-alpha95",
10-
"magento/framework": "0.1.0-alpha95",
6+
"magento/module-store": "0.1.0-alpha96",
7+
"magento/module-core": "0.1.0-alpha96",
8+
"magento/module-backend": "0.1.0-alpha96",
9+
"magento/module-theme": "0.1.0-alpha96",
10+
"magento/framework": "0.1.0-alpha96",
1111
"lib-libxml": "*",
1212
"magento/magento-composer-installer": "*"
1313
},
1414
"type": "magento2-module",
15-
"version": "0.1.0-alpha95",
15+
"version": "0.1.0-alpha96",
1616
"extra": {
1717
"map": [
1818
[

app/code/Magento/Authorization/composer.json

+3-3
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-alpha95",
7-
"magento/framework": "0.1.0-alpha95",
6+
"magento/module-backend": "0.1.0-alpha96",
7+
"magento/framework": "0.1.0-alpha96",
88
"magento/magento-composer-installer": "*"
99
},
1010
"type": "magento2-module",
11-
"version": "0.1.0-alpha95",
11+
"version": "0.1.0-alpha96",
1212
"extra": {
1313
"map": [
1414
[

app/code/Magento/Authorization/etc/di.xml

+5
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,9 @@
4444
<argument name="roleLoader" xsi:type="object">Magento\Authorization\Model\Acl\Loader\Role</argument>
4545
</arguments>
4646
</type>
47+
<type name="Magento\Framework\Authorization\Policy\Acl">
48+
<arguments>
49+
<argument name="aclBuilder" xsi:type="object">Magento\Framework\Acl\Builder\Proxy</argument>
50+
</arguments>
51+
</type>
4752
</config>

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

+7
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,13 @@ public function __construct(
4949
parent::__construct($context);
5050
}
5151

52+
/**
53+
* @return \Magento\Checkout\Model\Session
54+
*/
55+
protected function _getCheckout()
56+
{
57+
return $this->_objectManager->get('Magento\Checkout\Model\Session');
58+
}
5259

5360
/**
5461
* Get session model

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

-7
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,6 @@
2626

2727
class Place extends \Magento\Authorizenet\Controller\Directpost\Payment
2828
{
29-
/**
30-
* @return \Magento\Checkout\Model\Session
31-
*/
32-
protected function _getCheckout()
33-
{
34-
return $this->_objectManager->get('Magento\Checkout\Model\Session');
35-
}
3629
/**
3730
* Send request to authorize.net
3831
*

app/code/Magento/Authorizenet/composer.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.4.11|~5.5.0",
6-
"magento/module-sales": "0.1.0-alpha95",
7-
"magento/module-checkout": "0.1.0-alpha95",
8-
"magento/module-backend": "0.1.0-alpha95",
9-
"magento/module-core": "0.1.0-alpha95",
10-
"magento/module-payment": "0.1.0-alpha95",
11-
"magento/module-centinel": "0.1.0-alpha95",
12-
"magento/module-catalog": "0.1.0-alpha95",
13-
"magento/framework": "0.1.0-alpha95",
6+
"magento/module-sales": "0.1.0-alpha96",
7+
"magento/module-checkout": "0.1.0-alpha96",
8+
"magento/module-backend": "0.1.0-alpha96",
9+
"magento/module-core": "0.1.0-alpha96",
10+
"magento/module-payment": "0.1.0-alpha96",
11+
"magento/module-centinel": "0.1.0-alpha96",
12+
"magento/module-catalog": "0.1.0-alpha96",
13+
"magento/framework": "0.1.0-alpha96",
1414
"magento/magento-composer-installer": "*"
1515
},
1616
"type": "magento2-module",
17-
"version": "0.1.0-alpha95",
17+
"version": "0.1.0-alpha96",
1818
"extra": {
1919
"map": [
2020
[

app/code/Magento/Backend/composer.json

+19-22
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,28 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.4.11|~5.5.0",
6-
"magento/module-store": "0.1.0-alpha95",
7-
"magento/module-directory": "0.1.0-alpha95",
8-
"magento/module-core": "0.1.0-alpha95",
9-
"magento/module-eav": "0.1.0-alpha95",
10-
"magento/module-cron": "0.1.0-alpha95",
11-
"magento/module-theme": "0.1.0-alpha95",
12-
"magento/module-weee": "0.1.0-alpha95",
13-
"magento/module-reports": "0.1.0-alpha95",
14-
"magento/module-catalog-search": "0.1.0-alpha95",
15-
"magento/module-sales": "0.1.0-alpha95",
16-
"magento/module-catalog": "0.1.0-alpha95",
17-
"magento/module-user": "0.1.0-alpha95",
18-
"magento/module-cms": "0.1.0-alpha95",
19-
"magento/module-backup": "0.1.0-alpha95",
20-
"magento/module-email": "0.1.0-alpha95",
21-
"magento/module-customer": "0.1.0-alpha95",
22-
"magento/module-tax": "0.1.0-alpha95",
23-
"magento/module-checkout": "0.1.0-alpha95",
24-
"magento/module-url-rewrite": "0.1.0-alpha95",
25-
"magento/module-translation": "0.1.0-alpha95",
26-
"magento/framework": "0.1.0-alpha95",
6+
"magento/module-store": "0.1.0-alpha96",
7+
"magento/module-directory": "0.1.0-alpha96",
8+
"magento/module-core": "0.1.0-alpha96",
9+
"magento/module-eav": "0.1.0-alpha96",
10+
"magento/module-cron": "0.1.0-alpha96",
11+
"magento/module-theme": "0.1.0-alpha96",
12+
"magento/module-reports": "0.1.0-alpha96",
13+
"magento/module-catalog-search": "0.1.0-alpha96",
14+
"magento/module-sales": "0.1.0-alpha96",
15+
"magento/module-catalog": "0.1.0-alpha96",
16+
"magento/module-user": "0.1.0-alpha96",
17+
"magento/module-cms": "0.1.0-alpha96",
18+
"magento/module-backup": "0.1.0-alpha96",
19+
"magento/module-email": "0.1.0-alpha96",
20+
"magento/module-customer": "0.1.0-alpha96",
21+
"magento/module-url-rewrite": "0.1.0-alpha96",
22+
"magento/module-translation": "0.1.0-alpha96",
23+
"magento/framework": "0.1.0-alpha96",
2724
"magento/magento-composer-installer": "*"
2825
},
2926
"type": "magento2-module",
30-
"version": "0.1.0-alpha95",
27+
"version": "0.1.0-alpha96",
3128
"extra": {
3229
"map": [
3330
[

app/code/Magento/Backend/etc/di.xml

+1
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
</virtualType>
164164
<type name="Magento\Backend\Model\Auth\Session">
165165
<arguments>
166+
<argument name="aclBuilder" xsi:type="object">Magento\Framework\Acl\Builder\Proxy</argument>
166167
<argument name="storage" xsi:type="object">Magento\Backend\Model\Auth\Session\Storage</argument>
167168
</arguments>
168169
</type>

0 commit comments

Comments
 (0)