Skip to content

Commit

Permalink
0.74.0-beta4
Browse files Browse the repository at this point in the history
* Various
   * Implemented the getDefaultResult method, to be able to catch exceptions in FrontController and redirect user to the correct page
   * The getDefaultResult method is invoked to return default result of action execution within controllers. It can be used to generate the execute method result in action controllers
   * Eliminated the unused exceptions. Exceptions that weren't linked to any logic were also eliminated and replaced with LocalizedException or its child classes
   * Refactored all controllers where possible: the default exception handling logic moved to FrontController. Controllers that cannot be refactored do not conflict with the new logic
* Framework:
   * Created Magento Console to perform CLI actions
   * Introduced a new SalesSequence module that is responsible for documents numeration management across the Order Management System
   * Implemented the mechanism of asynchronous indexing of sales entities grids
* Setup
   * Added the ConfigOption and ConfigOptionsList classes to be used by modules to manage deployment configuration
   * Moved all existing segments logic to new classes
   * Added the config:set command, which enables deployment configuration management
   * Removed the old 'install-configuration' tool
* Functional tests:
   * Fixed functional test for order placement from backend
   * Replaced the end-to-end test for a product with MAP with an injectable test
* Design
   * Updated the Blank and Luma themes to enable theme (not only library) variables overriding in the _theme.less file of any inherited theme. Included LESS code standards to the UI Library documentation
* Fixed bugs:
   * Fixed an issue where composite products could not be added to the order from the Recently Viewed Products section
   * Fixed an issue where not all .js files were added to a bundle
   * Fixed an issue where it was possible to save an incorrect IP value in the Developer Client Restriction field
   * Fixed an issue where a raw DB error was thrown when trying to enter a custom variable with duplicated variable code
  • Loading branch information
magento-team committed Apr 16, 2015
1 parent e0b3e77 commit fae4779
Showing 1 changed file with 127 additions and 4 deletions.
131 changes: 127 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "magento/project-community-edition",
"name": "magento/product-community-edition",
"description": "eCommerce Platform for Growth (Community Edition)",
"type": "project",
"version": "0.74.0-beta4",
Expand All @@ -8,7 +8,132 @@
"AFL-3.0"
],
"require": {
"magento/product-community-edition": "0.74.0-beta4"
"php": "~5.5.0|~5.6.0",
"zendframework/zend-stdlib": "2.3.1",
"zendframework/zend-code": "2.3.1",
"zendframework/zend-server": "2.3.1",
"zendframework/zend-soap": "2.3.1",
"zendframework/zend-uri": "2.3.1",
"zendframework/zend-validator": "2.3.1",
"zendframework/zend-console": "2.3.1",
"zendframework/zend-modulemanager": "2.3.1",
"zendframework/zend-mvc": "2.3.1",
"zendframework/zend-text": "2.3.1",
"zendframework/zend-eventmanager": "2.3.1",
"zendframework/zend-view": "2.3.1",
"zendframework/zend-servicemanager": "2.3.1",
"zendframework/zend-json": "2.3.1",
"zendframework/zend-config": "2.3.1",
"zendframework/zend-form": "2.3.1",
"zendframework/zend-di": "2.3.1",
"zendframework/zend-serializer": "2.3.1",
"zendframework/zend-log": "2.3.1",
"zendframework/zend-http": "2.3.1",
"magento/zendframework1": "1.12.10",
"composer/composer": "1.0.0-alpha8",
"monolog/monolog": "1.11.0",
"oyejorge/less.php": "1.7.0.3",
"tubalmartin/cssmin": "2.4.8-p4",
"magento/magento-composer-installer": "*",
"symfony/console": "~2.3",
"magento/magento2-base": "self.version",
"magento/module-admin-notification": "self.version",
"magento/module-authorization": "self.version",
"magento/module-backend": "self.version",
"magento/module-backup": "self.version",
"magento/module-bundle": "self.version",
"magento/module-captcha": "self.version",
"magento/module-catalog": "self.version",
"magento/module-catalog-import-export": "self.version",
"magento/module-catalog-inventory": "self.version",
"magento/module-catalog-rule": "self.version",
"magento/module-catalog-search": "self.version",
"magento/module-catalog-url-rewrite": "self.version",
"magento/module-catalog-widget": "self.version",
"magento/module-centinel": "self.version",
"magento/module-checkout": "self.version",
"magento/module-checkout-agreements": "self.version",
"magento/module-cms": "self.version",
"magento/module-cms-url-rewrite": "self.version",
"magento/module-config": "self.version",
"magento/module-configurable-import-export": "self.version",
"magento/module-configurable-product": "self.version",
"magento/module-contact": "self.version",
"magento/module-cookie": "self.version",
"magento/module-cron": "self.version",
"magento/module-currency-symbol": "self.version",
"magento/module-customer": "self.version",
"magento/module-customer-import-export": "self.version",
"magento/module-design-editor": "self.version",
"magento/module-developer": "self.version",
"magento/module-dhl": "self.version",
"magento/module-directory": "self.version",
"magento/module-downloadable": "self.version",
"magento/module-eav": "self.version",
"magento/module-email": "self.version",
"magento/module-fedex": "self.version",
"magento/module-gift-message": "self.version",
"magento/module-google-adwords": "self.version",
"magento/module-google-analytics": "self.version",
"magento/module-google-optimizer": "self.version",
"magento/module-google-shopping": "self.version",
"magento/module-grouped-import-export": "self.version",
"magento/module-grouped-product": "self.version",
"magento/module-import-export": "self.version",
"magento/module-indexer": "self.version",
"magento/module-integration": "self.version",
"magento/module-layered-navigation": "self.version",
"magento/module-log": "self.version",
"magento/module-media-storage": "self.version",
"magento/module-msrp": "self.version",
"magento/module-multishipping": "self.version",
"magento/module-newsletter": "self.version",
"magento/module-offline-payments": "self.version",
"magento/module-offline-shipping": "self.version",
"magento/module-page-cache": "self.version",
"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",
"magento/module-rss": "self.version",
"magento/module-rule": "self.version",
"magento/module-sales": "self.version",
"magento/module-sales-rule": "self.version",
"magento/module-sales-sequence": "self.version",
"magento/module-search": "self.version",
"magento/module-sendfriend": "self.version",
"magento/module-shipping": "self.version",
"magento/module-sitemap": "self.version",
"magento/module-store": "self.version",
"magento/module-tax": "self.version",
"magento/module-tax-import-export": "self.version",
"magento/module-theme": "self.version",
"magento/module-translation": "self.version",
"magento/module-ui": "self.version",
"magento/module-ups": "self.version",
"magento/module-url-rewrite": "self.version",
"magento/module-user": "self.version",
"magento/module-usps": "self.version",
"magento/module-variable": "self.version",
"magento/module-version": "self.version",
"magento/module-webapi": "self.version",
"magento/module-weee": "self.version",
"magento/module-widget": "self.version",
"magento/module-wishlist": "self.version",
"magento/theme-adminhtml-backend": "self.version",
"magento/theme-frontend-blank": "self.version",
"magento/theme-frontend-luma": "self.version",
"magento/language-de_de": "self.version",
"magento/language-en_us": "self.version",
"magento/language-es_es": "self.version",
"magento/language-fr_fr": "self.version",
"magento/language-nl_nl": "self.version",
"magento/language-pt_br": "self.version",
"magento/language-zh_cn": "self.version",
"magento/framework": "self.version"
},
"require-dev": {
"phpunit/phpunit": "4.1.0",
Expand Down Expand Up @@ -49,8 +174,6 @@
"Magento\\ToolkitFramework\\": "dev/tools/performance-toolkit/framework/Magento/ToolkitFramework/"
}
},
"minimum-stability": "alpha",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
Expand Down

0 comments on commit fae4779

Please sign in to comment.