Skip to content

Commit f588199

Browse files
committedSep 5, 2014
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: * [magento#446] (magento#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

+45
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

+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-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
[

0 commit comments

Comments
 (0)