Skip to content

Commit f588199

Browse files
committed
0.1.0-alpha94
* Implemented API services: * Sales transactions * Added the following functional tests: * Create Store Group * Customer Review Report * Delete Store Group * Update Store Group * Improved error reporting when ini_set fails * Increased unit test coverage for the following modules: * SalesRule * Payment * Checkout API: * Create Shopping Cart Gift Message service * Create Shopping Cart Totals service * Fixed bugs: * Fixed an issue where selecting a shipping method in PayPal Express Checkout resulted in a fatal error * Fixed an issue where the information displayed on the Payment Information step of Zero Subtotal Checkout was confusing * Fixed a JavaScript error in shipping label * Fixed an issue with wrong layout of the storefront pages * Fixed an issue where the price including tax value was incorrect on catalog pages when customer tax rate is different from store tax rate * Fixed an issue where fixed product tax (FPT) was not included in the Grand total when 'Include FPT in Subtotal' was set to Yes * Fixed an issue where Shipping Incl. Tax amount was not updated when changing shipping method * Fixed an issue where the store tax configuration was ignored during backend order creation * Fixed an issue where taxes were not applied in the shopping cart after registering customer on the storefront * Fixed an issue where the wrong html markup was generated on My order pages for the WEEE tax * Fixed an issue where the built-in caching did not work on product pages * Removed the stream resource usage to avoid errors when the allow_url_fopen PHP option is set to Off * Fixed the New Return page layout on the backend * Fixed an issue where it was impossible to apply a specific coupon code when the Apply to Shipping Amount option of the Shopping Cart Rule was set to Yes * Removed file paths/content from test case names in data-driven tests * Fixed an issue where pagination was absent in the Order Status grid * Fixed an issue where after applying a discount coupon and changing the currency the discount value was incorrect * Fixed an issue where trying to a new rating resulted in a fatal error * Fixed an issue where the minimum order amount was compared with subtotal without taxes * Fixed an issue where it was impossible to open the previous step during Onepage Checkout * Fixed an issue with Persistent Shopping Cart where an unexpected message was displayed during checkout if a user started the checkout after the short-term cookie had expired * Fixed an issue where a customer was redirected to the shopping cart after selecting shipping method during checkout with a payment method using 3D Secure * Fixed an issue where the Cart Item service used itemSku instead itemId * Fixed an issue where gift messages for individual items were not saved during backend order creation * Fixed an issue where the Purchase Order Number input field was not displayed in Onepage Checkout if only one payment method was enabled * GitHub requests: * [#446] (#446) -- Rounding different in order to original quote calculation
1 parent a2ea67f commit f588199

File tree

911 files changed

+19568
-10615
lines changed

Some content is hidden

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

911 files changed

+19568
-10615
lines changed

CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
0.1.0-alpha94
2+
=============
3+
* Implemented API services:
4+
* Sales transactions
5+
* Added the following functional tests:
6+
* Create Store Group
7+
* Customer Review Report
8+
* Delete Store Group
9+
* Update Store Group
10+
* Improved error reporting when ini_set fails
11+
* Increased unit test coverage for the following modules:
12+
* SalesRule
13+
* Payment
14+
* Checkout API:
15+
* Create Shopping Cart Gift Message service
16+
* Create Shopping Cart Totals service
17+
* Fixed bugs:
18+
* Fixed an issue where selecting a shipping method in PayPal Express Checkout resulted in a fatal error
19+
* Fixed an issue where the information displayed on the Payment Information step of Zero Subtotal Checkout was confusing
20+
* Fixed a JavaScript error in shipping label
21+
* Fixed an issue with wrong layout of the storefront pages
22+
* Fixed an issue where the price including tax value was incorrect on catalog pages when customer tax rate is different from store tax rate
23+
* Fixed an issue where fixed product tax (FPT) was not included in the Grand total when 'Include FPT in Subtotal' was set to Yes
24+
* Fixed an issue where Shipping Incl. Tax amount was not updated when changing shipping method
25+
* Fixed an issue where the store tax configuration was ignored during backend order creation
26+
* Fixed an issue where taxes were not applied in the shopping cart after registering customer on the storefront
27+
* Fixed an issue where the wrong html markup was generated on My order pages for the WEEE tax
28+
* Fixed an issue where the built-in caching did not work on product pages
29+
* Removed the stream resource usage to avoid errors when the allow_url_fopen PHP option is set to Off
30+
* Fixed the New Return page layout on the backend
31+
* Fixed an issue where it was impossible to apply a specific coupon code when the Apply to Shipping Amount option of the Shopping Cart Rule was set to Yes
32+
* Removed file paths/content from test case names in data-driven tests
33+
* Fixed an issue where pagination was absent in the Order Status grid
34+
* Fixed an issue where after applying a discount coupon and changing the currency the discount value was incorrect
35+
* Fixed an issue where trying to a new rating resulted in a fatal error
36+
* Fixed an issue where the minimum order amount was compared with subtotal without taxes
37+
* Fixed an issue where it was impossible to open the previous step during Onepage Checkout
38+
* Fixed an issue with Persistent Shopping Cart where an unexpected message was displayed during checkout if a user started the checkout after the short-term cookie had expired
39+
* Fixed an issue where a customer was redirected to the shopping cart after selecting shipping method during checkout with a payment method using 3D Secure
40+
* Fixed an issue where the Cart Item service used itemSku instead itemId
41+
* Fixed an issue where gift messages for individual items were not saved during backend order creation
42+
* Fixed an issue where the Purchase Order Number input field was not displayed in Onepage Checkout if only one payment method was enabled
43+
* GitHub requests:
44+
* [#446] (https://github.com/magento/magento2/issues/446) -- Rounding different in order to original quote calculation
45+
146
0.1.0-alpha93
247
=============
348
* Price template refactoring

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

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-alpha93",
7-
"magento/framework": "0.1.0-alpha93",
6+
"magento/module-backend": "0.1.0-alpha94",
7+
"magento/framework": "0.1.0-alpha94",
88
"magento/magento-composer-installer": "*"
99
},
1010
"type": "magento2-module",
11-
"version": "0.1.0-alpha93",
11+
"version": "0.1.0-alpha94",
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-alpha93",
7-
"magento/module-sales": "0.1.0-alpha93",
8-
"magento/module-checkout": "0.1.0-alpha93",
9-
"magento/module-backend": "0.1.0-alpha93",
10-
"magento/module-core": "0.1.0-alpha93",
11-
"magento/module-payment": "0.1.0-alpha93",
12-
"magento/module-centinel": "0.1.0-alpha93",
13-
"magento/module-catalog": "0.1.0-alpha93",
14-
"magento/framework": "0.1.0-alpha93",
6+
"magento/module-store": "0.1.0-alpha94",
7+
"magento/module-sales": "0.1.0-alpha94",
8+
"magento/module-checkout": "0.1.0-alpha94",
9+
"magento/module-backend": "0.1.0-alpha94",
10+
"magento/module-core": "0.1.0-alpha94",
11+
"magento/module-payment": "0.1.0-alpha94",
12+
"magento/module-centinel": "0.1.0-alpha94",
13+
"magento/module-catalog": "0.1.0-alpha94",
14+
"magento/framework": "0.1.0-alpha94",
1515
"magento/magento-composer-installer": "*"
1616
},
1717
"type": "magento2-module",
18-
"version": "0.1.0-alpha93",
18+
"version": "0.1.0-alpha94",
1919
"extra": {
2020
"map": [
2121
[

app/code/Magento/Backend/composer.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,32 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.4.11|~5.5.0",
6-
"magento/module-store": "0.1.0-alpha93",
7-
"magento/module-directory": "0.1.0-alpha93",
8-
"magento/module-core": "0.1.0-alpha93",
9-
"magento/module-eav": "0.1.0-alpha93",
10-
"magento/module-cron": "0.1.0-alpha93",
11-
"magento/module-sendfriend": "0.1.0-alpha93",
12-
"magento/module-theme": "0.1.0-alpha93",
13-
"magento/module-weee": "0.1.0-alpha93",
14-
"magento/module-reports": "0.1.0-alpha93",
15-
"magento/module-catalog-search": "0.1.0-alpha93",
16-
"magento/module-sales": "0.1.0-alpha93",
17-
"magento/module-catalog": "0.1.0-alpha93",
18-
"magento/module-user": "0.1.0-alpha93",
19-
"magento/module-cms": "0.1.0-alpha93",
20-
"magento/module-backup": "0.1.0-alpha93",
21-
"magento/module-email": "0.1.0-alpha93",
22-
"magento/module-customer": "0.1.0-alpha93",
23-
"magento/module-tax": "0.1.0-alpha93",
24-
"magento/module-checkout": "0.1.0-alpha93",
25-
"magento/module-url-rewrite": "0.1.0-alpha93",
26-
"magento/module-translation": "0.1.0-alpha93",
27-
"magento/framework": "0.1.0-alpha93",
6+
"magento/module-store": "0.1.0-alpha94",
7+
"magento/module-directory": "0.1.0-alpha94",
8+
"magento/module-core": "0.1.0-alpha94",
9+
"magento/module-eav": "0.1.0-alpha94",
10+
"magento/module-cron": "0.1.0-alpha94",
11+
"magento/module-sendfriend": "0.1.0-alpha94",
12+
"magento/module-theme": "0.1.0-alpha94",
13+
"magento/module-weee": "0.1.0-alpha94",
14+
"magento/module-reports": "0.1.0-alpha94",
15+
"magento/module-catalog-search": "0.1.0-alpha94",
16+
"magento/module-sales": "0.1.0-alpha94",
17+
"magento/module-catalog": "0.1.0-alpha94",
18+
"magento/module-user": "0.1.0-alpha94",
19+
"magento/module-cms": "0.1.0-alpha94",
20+
"magento/module-backup": "0.1.0-alpha94",
21+
"magento/module-email": "0.1.0-alpha94",
22+
"magento/module-customer": "0.1.0-alpha94",
23+
"magento/module-tax": "0.1.0-alpha94",
24+
"magento/module-checkout": "0.1.0-alpha94",
25+
"magento/module-url-rewrite": "0.1.0-alpha94",
26+
"magento/module-translation": "0.1.0-alpha94",
27+
"magento/framework": "0.1.0-alpha94",
2828
"magento/magento-composer-installer": "*"
2929
},
3030
"type": "magento2-module",
31-
"version": "0.1.0-alpha93",
31+
"version": "0.1.0-alpha94",
3232
"extra": {
3333
"map": [
3434
[

app/code/Magento/Backup/composer.json

Lines changed: 7 additions & 7 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-alpha93",
7-
"magento/module-core": "0.1.0-alpha93",
8-
"magento/module-backend": "0.1.0-alpha93",
9-
"magento/module-cron": "0.1.0-alpha93",
10-
"magento/module-index": "0.1.0-alpha93",
11-
"magento/framework": "0.1.0-alpha93",
6+
"magento/module-store": "0.1.0-alpha94",
7+
"magento/module-core": "0.1.0-alpha94",
8+
"magento/module-backend": "0.1.0-alpha94",
9+
"magento/module-cron": "0.1.0-alpha94",
10+
"magento/module-index": "0.1.0-alpha94",
11+
"magento/framework": "0.1.0-alpha94",
1212
"magento/magento-composer-installer": "*"
1313
},
1414
"type": "magento2-module",
15-
"version": "0.1.0-alpha93",
15+
"version": "0.1.0-alpha94",
1616
"extra": {
1717
"map": [
1818
[

app/code/Magento/Bundle/Service/V1/Data/Product/Link/Metadata.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
*/
2424
namespace Magento\Bundle\Service\V1\Data\Product\Link;
2525

26-
use \Magento\Framework\Service\Data\AbstractObject;
26+
use \Magento\Framework\Service\Data\AbstractExtensibleObject;
2727

2828
/**
2929
* @codeCoverageIgnore
3030
*/
31-
class Metadata extends AbstractObject
31+
class Metadata extends AbstractExtensibleObject
3232
{
3333
const SKU = 'sku';
3434

app/code/Magento/Bundle/Service/V1/Data/Product/Link/MetadataBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
*/
2424
namespace Magento\Bundle\Service\V1\Data\Product\Link;
2525

26-
use Magento\Framework\Service\Data\AbstractObjectBuilder;
26+
use Magento\Framework\Service\Data\AbstractExtensibleObjectBuilder;
2727

2828
/**
2929
* @codeCoverageIgnore
3030
*/
31-
class MetadataBuilder extends AbstractObjectBuilder
31+
class MetadataBuilder extends AbstractExtensibleObjectBuilder
3232
{
3333
/**
3434
* @param string $value

app/code/Magento/Bundle/Service/V1/Data/Product/Option.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
*/
2424
namespace Magento\Bundle\Service\V1\Data\Product;
2525

26-
use \Magento\Framework\Service\Data\AbstractObject;
26+
use \Magento\Framework\Service\Data\AbstractExtensibleObject;
2727

2828
/**
2929
* @codeCoverageIgnore
3030
*/
31-
class Option extends AbstractObject
31+
class Option extends AbstractExtensibleObject
3232
{
3333
const ID = 'id';
3434

app/code/Magento/Bundle/Service/V1/Data/Product/Option/Type.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
*/
2424
namespace Magento\Bundle\Service\V1\Data\Product\Option;
2525

26-
use \Magento\Framework\Service\Data\AbstractObject;
26+
use \Magento\Framework\Service\Data\AbstractExtensibleObject;
2727

2828
/**
2929
* @codeCoverageIgnore
3030
*/
31-
class Type extends AbstractObject
31+
class Type extends AbstractExtensibleObject
3232
{
3333
const LABEL = 'label';
3434

0 commit comments

Comments
 (0)