Skip to content

Commit

Permalink
0.1.0-alpha96
Browse files Browse the repository at this point in the history
* 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:
   * [#662] (#662) -- Composer Installation
  • Loading branch information
magento-team committed Sep 19, 2014
1 parent 7ad2dc7 commit 89b5867
Show file tree
Hide file tree
Showing 627 changed files with 14,899 additions and 6,672 deletions.
35 changes: 33 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
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:
* [#662] (https://github.com/magento/magento2/issues/662) -- Composer Installation

0.1.0-alpha95
=============
* Modularity
Expand Down Expand Up @@ -57,8 +88,8 @@
* Configuration scope of items' InStock status on order cancellation
* Creating the new customer in admin
* GitHub requests:
* #621 -- Parse error: syntax error, unexpected T_OBJECT_OPERATOR
* #651 -- Multishipping checkout add/edit address page issue
* [#621] (https://github.com/magento/magento2/issues/621) -- Parse error: syntax error, unexpected T_OBJECT_OPERATOR
* [#651] (https://github.com/magento/magento2/issues/651) -- Multishipping checkout add/edit address page issue

0.1.0-alpha94
=============
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The Magento 2 development team will review all issues and contributions submitte
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”.

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.
2. Review the [Contributor License Agreement](https://github.com/magento/magento2/wiki/Contributor-License-Agreement) if this is your first time contributing.
2. Review the [Contributor License Agreement](https://github.com/magento/magento2/blob/master/CONTRIBUTOR_LICENSE_AGREEMENT.html) if this is your first time contributing.
3. Create and test your work.
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).
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.
Expand Down
131 changes: 0 additions & 131 deletions CONTRIBUTOR_LICENSE_AGREEMENT.html

This file was deleted.

12 changes: 6 additions & 6 deletions app/code/Magento/AdminNotification/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
"description": "N/A",
"require": {
"php": "~5.4.11|~5.5.0",
"magento/module-store": "0.1.0-alpha95",
"magento/module-core": "0.1.0-alpha95",
"magento/module-backend": "0.1.0-alpha95",
"magento/module-theme": "0.1.0-alpha95",
"magento/framework": "0.1.0-alpha95",
"magento/module-store": "0.1.0-alpha96",
"magento/module-core": "0.1.0-alpha96",
"magento/module-backend": "0.1.0-alpha96",
"magento/module-theme": "0.1.0-alpha96",
"magento/framework": "0.1.0-alpha96",
"lib-libxml": "*",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.1.0-alpha95",
"version": "0.1.0-alpha96",
"extra": {
"map": [
[
Expand Down
6 changes: 3 additions & 3 deletions app/code/Magento/Authorization/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"description": "Authorization module provides access to Magento ACL functionality.",
"require": {
"php": "~5.4.11|~5.5.0",
"magento/module-backend": "0.1.0-alpha95",
"magento/framework": "0.1.0-alpha95",
"magento/module-backend": "0.1.0-alpha96",
"magento/framework": "0.1.0-alpha96",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.1.0-alpha95",
"version": "0.1.0-alpha96",
"extra": {
"map": [
[
Expand Down
5 changes: 5 additions & 0 deletions app/code/Magento/Authorization/etc/di.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,9 @@
<argument name="roleLoader" xsi:type="object">Magento\Authorization\Model\Acl\Loader\Role</argument>
</arguments>
</type>
<type name="Magento\Framework\Authorization\Policy\Acl">
<arguments>
<argument name="aclBuilder" xsi:type="object">Magento\Framework\Acl\Builder\Proxy</argument>
</arguments>
</type>
</config>
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ public function __construct(
parent::__construct($context);
}

/**
* @return \Magento\Checkout\Model\Session
*/
protected function _getCheckout()
{
return $this->_objectManager->get('Magento\Checkout\Model\Session');
}

/**
* Get session model
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@

class Place extends \Magento\Authorizenet\Controller\Directpost\Payment
{
/**
* @return \Magento\Checkout\Model\Session
*/
protected function _getCheckout()
{
return $this->_objectManager->get('Magento\Checkout\Model\Session');
}
/**
* Send request to authorize.net
*
Expand Down
18 changes: 9 additions & 9 deletions app/code/Magento/Authorizenet/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
"description": "N/A",
"require": {
"php": "~5.4.11|~5.5.0",
"magento/module-sales": "0.1.0-alpha95",
"magento/module-checkout": "0.1.0-alpha95",
"magento/module-backend": "0.1.0-alpha95",
"magento/module-core": "0.1.0-alpha95",
"magento/module-payment": "0.1.0-alpha95",
"magento/module-centinel": "0.1.0-alpha95",
"magento/module-catalog": "0.1.0-alpha95",
"magento/framework": "0.1.0-alpha95",
"magento/module-sales": "0.1.0-alpha96",
"magento/module-checkout": "0.1.0-alpha96",
"magento/module-backend": "0.1.0-alpha96",
"magento/module-core": "0.1.0-alpha96",
"magento/module-payment": "0.1.0-alpha96",
"magento/module-centinel": "0.1.0-alpha96",
"magento/module-catalog": "0.1.0-alpha96",
"magento/framework": "0.1.0-alpha96",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.1.0-alpha95",
"version": "0.1.0-alpha96",
"extra": {
"map": [
[
Expand Down
41 changes: 19 additions & 22 deletions app/code/Magento/Backend/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,28 @@
"description": "N/A",
"require": {
"php": "~5.4.11|~5.5.0",
"magento/module-store": "0.1.0-alpha95",
"magento/module-directory": "0.1.0-alpha95",
"magento/module-core": "0.1.0-alpha95",
"magento/module-eav": "0.1.0-alpha95",
"magento/module-cron": "0.1.0-alpha95",
"magento/module-theme": "0.1.0-alpha95",
"magento/module-weee": "0.1.0-alpha95",
"magento/module-reports": "0.1.0-alpha95",
"magento/module-catalog-search": "0.1.0-alpha95",
"magento/module-sales": "0.1.0-alpha95",
"magento/module-catalog": "0.1.0-alpha95",
"magento/module-user": "0.1.0-alpha95",
"magento/module-cms": "0.1.0-alpha95",
"magento/module-backup": "0.1.0-alpha95",
"magento/module-email": "0.1.0-alpha95",
"magento/module-customer": "0.1.0-alpha95",
"magento/module-tax": "0.1.0-alpha95",
"magento/module-checkout": "0.1.0-alpha95",
"magento/module-url-rewrite": "0.1.0-alpha95",
"magento/module-translation": "0.1.0-alpha95",
"magento/framework": "0.1.0-alpha95",
"magento/module-store": "0.1.0-alpha96",
"magento/module-directory": "0.1.0-alpha96",
"magento/module-core": "0.1.0-alpha96",
"magento/module-eav": "0.1.0-alpha96",
"magento/module-cron": "0.1.0-alpha96",
"magento/module-theme": "0.1.0-alpha96",
"magento/module-reports": "0.1.0-alpha96",
"magento/module-catalog-search": "0.1.0-alpha96",
"magento/module-sales": "0.1.0-alpha96",
"magento/module-catalog": "0.1.0-alpha96",
"magento/module-user": "0.1.0-alpha96",
"magento/module-cms": "0.1.0-alpha96",
"magento/module-backup": "0.1.0-alpha96",
"magento/module-email": "0.1.0-alpha96",
"magento/module-customer": "0.1.0-alpha96",
"magento/module-url-rewrite": "0.1.0-alpha96",
"magento/module-translation": "0.1.0-alpha96",
"magento/framework": "0.1.0-alpha96",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.1.0-alpha95",
"version": "0.1.0-alpha96",
"extra": {
"map": [
[
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Backend/etc/di.xml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@
</virtualType>
<type name="Magento\Backend\Model\Auth\Session">
<arguments>
<argument name="aclBuilder" xsi:type="object">Magento\Framework\Acl\Builder\Proxy</argument>
<argument name="storage" xsi:type="object">Magento\Backend\Model\Auth\Session\Storage</argument>
</arguments>
</type>
Expand Down
Loading

0 comments on commit 89b5867

Please sign in to comment.