From 4744736b47c41ea1e9b20e4c0a50539aafb353b7 Mon Sep 17 00:00:00 2001 From: mage2-team Date: Tue, 20 Jan 2015 09:51:46 -0800 Subject: [PATCH] 0.42.0-beta4 * Various improvements: * Updated Copyright Notice and provided reference to the license file * Updated test framework to support stores other than default * Removed version information from theme.xml files leaving it only in composer.json files * Fixed bugs: * Fixed an issue where coupon code was reported to be invalid if it has been removed from reorder in backend and then re-applied * Fixed an issue where the 'Guide to Using Sample Data' link was incorrect in the web setup UI * Fixed an issue where the link to System Requirements in bootstrap.php was incorrect * Fixed an issue where Compiler could not verify case sensitive dependency * Fixed an issue where the Recently Compared Products and Recently Viewed Products widgets were not displayed in sidebars * Fixed an issue where the Orders and Returns widget type contained unnecessary tab * Fixed an issue where an image added to a CMS page using the WYSIWYG editor was displayed as a broken link after turning off the allow_url_fopen parameter in php.ini * Fixed an issue where it was impossible to log in to the backend from the first attempt after changing Base URL * Fixed an issue where it was impossible to set back the default English (United States) interface locale for the admin user after changing it so an other value * Fixed an issue where it was possible to execute malicious JavaScript code in the context of website via the Sender Email parameter * Fixed an issue where the Product Stock Alert email was sent to a customer from a store view different than a customer account was created in * Fixed an issue where the "Server cannot understand Accept HTTP header media type" error message was not informative enough * Fixed an issue where unit tests did not work as expected after installing Magento 2 * Fixed an issue where the password change email notification was sent after saving admin account settings even if password was not changed * Fixed an issue where static tests failed as a result of adding API functional tests * Fixed API functional tests after merging pull request [#927](https://github.com/magento/magento2/pull/927) * Fixed an issue where the Edit button was present for invoiced orders * Fixed an issue where function _underscore did not work with keys like SKeyName ('s_key_name') * Fixed an issue where a fatal error occurred when browsing categories if web server did not have write permissions for media/catalog/product * Github requests: * [#792](https://github.com/magento/magento2/issues/792) -- Failed to set ini option "session.save_path" to value * [#796](https://github.com/magento/magento2/issues/796) -- install.log cannot be created with open_basedir restriction * [#823](https://github.com/magento/magento2/issues/823) -- Installation bug * [#920](https://github.com/magento/magento2/issues/920) -- "web setup wizard is not accessible" error message but the setup wizard is actually accessible * [#829](https://github.com/magento/magento2/issues/829) -- [API] OAuth1.0 request token request failing / Consumer key has expired * [#658](https://github.com/magento/magento2/issues/658) -- Inline translate malfunctioning * [#950](https://github.com/magento/magento2/pull/950) -- Fix for the missed trailing end of line in indexer.php usage help text * [#932](https://github.com/magento/magento2/pull/932) -- Migration tool - not all input has comments * [#959](https://github.com/magento/magento2/pull/959) -- Replace UTF8 'en dash' with minus in error message * [#911](https://github.com/magento/magento2/pull/911) -- Fix test assertion and slight cleanup refactoring * [#936](https://github.com/magento/magento2/pull/936) -- Bugfix for regions with single quote in name * [#902](https://github.com/magento/magento2/pull/902) -- Add integration test for View\Page\Config\Reader\Html * [#925](https://github.com/magento/magento2/pull/925) -- Failed test due to Class not following the naming conventions * [#943](https://github.com/magento/magento2/pull/943) -- magento2-925 Failed Test due to Class not following the naming conventions * [#968](https://github.com/magento/magento2/pull/968) -- Apply pattern matching datasource config files * [#949](https://github.com/magento/magento2/pull/949) -- Added 'status' command for cache cli script / Also improved readability * PHP 5.6 in composer.json: * Added PHP 5.6.0 to the list of required PHP versions in all composer.json files * Updated Travis CI configuration to include PHP 5.6 builds * Framework improvements: * Removed TODOs in the Integration and Authorization modules * Removed leading backslash from the 'use' statement throughout the code base --- composer.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index d40271bf..7dede461 100644 --- a/composer.json +++ b/composer.json @@ -2,13 +2,13 @@ "name": "magento/product-community-edition", "description": "eCommerce Platform for Growth (Community Edition)", "type": "project", - "version": "0.42.0-beta1", + "version": "0.42.0-beta4", "license": [ "OSL-3.0", "AFL-3.0" ], "require": { - "php": "~5.4.11|~5.5.0", + "php": "~5.4.11|~5.5.0|~5.6.0", "zendframework/zend-stdlib": "2.3.1", "zendframework/zend-code": "2.3.1", "zendframework/zend-server": "2.3.1", @@ -31,6 +31,7 @@ "zendframework/zend-http": "2.3.1", "magento/zendframework1": "1.12.9-patch1", "composer/composer": "1.0.0-alpha8", + "monolog/monolog": "1.11.0", "magento/magento2-base": "self.version", "magento/module-admin-notification": "self.version", "magento/module-authorization": "self.version", @@ -86,6 +87,7 @@ "magento/module-payment": "self.version", "magento/module-persistent": "self.version", "magento/module-product-alert": "self.version", + "magento/module-quote": "self.version", "magento/module-reports": "self.version", "magento/module-require-js": "self.version", "magento/module-review": "self.version", @@ -138,7 +140,8 @@ "ext-curl": "*", "ext-iconv": "*", "sjparkinson/static-review": "~4.1", - "fabpot/php-cs-fixer": "~1.2" + "fabpot/php-cs-fixer": "~1.2", + "lusitanian/oauth": "~0.3" }, "config": { "use-include-path": true