Skip to content

Commit 43ff68a

Browse files
committed
0.42.0-beta6
* Various improvements: * Implemented caching for WebAPI configuration * Improved tests coverage of the CurrencySymbol module * Table catalogsearch_fulltext is setting up with ENGINE=InnoDB * Improved unit test coverage of the Catalog related functionality * Optimized JS dependencies * Refactored controller actions in the Sales module * Refactored controller actions in the Customer module * Removed the assertion for the exact number of attributes in API-functional tests for customer metadata. * Refactored API code for the CheckoutAgreements module * Refactored API code for the GiftMessage module * Refactored API for the Checkout module * Fixed bugs: * Fixed an where issue were WebAPI generated the wrong WSDL * Fixed an issue where Catalog, Checkout, Customer API ACLs did not support AJAX use case(s) * Fixed an issue where SOAP tests failed after upgrading to ZF 1.12.9 * Fixed an issue where the 'There is no data for export' message was displayed permanently after invalid search * Fixed an issue where there was no ability to set category position during creation it * Fixed a CSS issue where certain images were absent on banners () * Fixed an issue where the 'Date Of Birth' value was i reset to current date on the customer form) * Fixed an issue where the behavior of the "Terms and Conditions" validation on multiple address checkout was different from the one for the onepage checkout * Fixed an issue where it was impossible to checkout with multiple addresses * Fixed an issue where the 'This is a required field ' message was not displayed for "Terms and Conditions" if the latter was not selected * GitHub Requests: * [#963](magento/magento2#963) -- Default Accept header * [#995](magento/magento2#995) -- Prevent a warning in activated developer mode when 'plugins' is no array * [#866](magento/magento2#866) -- Configurable product attribute scope * [#965](magento/magento2#965) -- extra tests for current interception behavior * Service Contracts: * The Downloadable module basic implementation * Framework improvements: * Refactored and covered with tests the classes with high CRAP value (>50) * Moved Theme Management changes, Design changes, Design\Backend modules, and Observer components from the Core module to the Theme module * Moved Debug Hints models from the Core module to the newly added Developer module * Moved URL components, Factory, and EntityFactory from the Core module to the Magento Framework * UI improvements: * Compressed and resized images * Added new base styles for the Admin re-design * Added the WAI-ARIA attributes are to the Search Autocomplete on the storefront * Added visual style for the 'skip to content' attribute on the storefront * Fixed the style of persistent login messages on the storefront for all themes * Fixed the style of scrolling for Categories with long names in the Admin * Fixed the "css/print.css" file path on the storefront pages for all themes * Tests improvements: * Converted all fixtures/repositories for functional tests to .xml files * Improved interaction between webdriver and the new Magento JS forms * Increased unit and integration tests coverage
1 parent 8ed6f45 commit 43ff68a

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Use the following table to verify you have the correct prerequisites to install
3232
<td><a href="http://devdocs.magento.com/guides/v1.0/install-gde/prereq/apache.html">Apache</a></td>
3333
</tr>
3434
<tr>
35-
<td>PHP 5.4.x (where x = 11 or later) or 5.5.x</td>
35+
<td>PHP 5.5.x or 5.6.x</td>
3636
<td><code>php -v</code></td>
3737
<td><a href="http://devdocs.magento.com/guides/v1.0/install-gde/prereq/php-ubuntu.html">PHP Ubuntu</a><br><a href="http://devdocs.magento.com/guides/v1.0/install-gde/prereq/php-centos.html">PHP CentOS</a></td>
3838
</tr>

composer.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"name": "magento/product-community-edition",
33
"description": "eCommerce Platform for Growth (Community Edition)",
44
"type": "project",
5-
"version": "0.42.0-beta5",
5+
"version": "0.42.0-beta6",
66
"license": [
77
"OSL-3.0",
88
"AFL-3.0"
99
],
1010
"require": {
11-
"php": "~5.4.11|~5.5.0|~5.6.0",
11+
"php": "~5.5.0|~5.6.0",
1212
"zendframework/zend-stdlib": "2.3.1",
1313
"zendframework/zend-code": "2.3.1",
1414
"zendframework/zend-server": "2.3.1",
@@ -32,6 +32,7 @@
3232
"magento/zendframework1": "1.12.9-patch1",
3333
"composer/composer": "1.0.0-alpha8",
3434
"monolog/monolog": "1.11.0",
35+
"tubalmartin/cssmin": "2.4.8-p4",
3536
"magento/magento2-base": "self.version",
3637
"magento/module-admin-notification": "self.version",
3738
"magento/module-authorization": "self.version",
@@ -60,6 +61,7 @@
6061
"magento/module-customer": "self.version",
6162
"magento/module-customer-import-export": "self.version",
6263
"magento/module-design-editor": "self.version",
64+
"magento/module-developer": "self.version",
6365
"magento/module-dhl": "self.version",
6466
"magento/module-directory": "self.version",
6567
"magento/module-downloadable": "self.version",
@@ -159,7 +161,7 @@
159161
"Magento\\TestFramework\\Inspection\\": "dev/tests/static/framework/Magento/TestFramework/Inspection/",
160162
"Magento\\TestFramework\\Utility\\": "dev/tests/static/framework/Magento/TestFramework/Utility/",
161163
"Magento\\ToolkitFramework\\": "dev/tools/performance-toolkit/framework/Magento/ToolkitFramework/",
162-
"Magento\\Setup\\": "setup/module/Magento/Setup/src/"
164+
"Magento\\Setup\\": "setup/src/Magento/Setup/"
163165
}
164166
},
165167
"repositories": [

0 commit comments

Comments
 (0)