Skip to content

Commit

Permalink
MAGETWO-33536: M2 GitHub Update (version 0.74.0-beta14)
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgeniy Kolesov committed Jun 19, 2015
1 parent 8599357 commit db17c80
Show file tree
Hide file tree
Showing 102 changed files with 870 additions and 831 deletions.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,42 @@
0.74.0-beta14
=============
* Framework improvements:
* Introduced an ability to uninstall modules which were installed via composer (bin/magento module:uninstall <moduleName>)
* Introduced an ability to uninstall themes (bin/magento theme:uninstall <themeName>)
* Introduced an ability to backup and rollback DB and Media via CLI (bin/magento setup:backup, options are --code, --db or --media)
* Introduced an ability to uninstall language packages (bin/magento i18n:uninstall <languagePack>)
* Introduced API notation for the following modules: Backend, Backup, Cron, Log, PageCache
* Added join processors to search services, joined config for services with extension attributes
* Renamed hidden_tax to discount_tax_compensation
* The customer address entity table was transformed from EAV into a flat model to minimize database operations
* Fixed bugs:
* Fixed an issue where Setup Wizard failed on readiness check when Magento was deployed by composer create-project
* Fixed the local file path disclosure when trying to browse image cache directory
* Fixed an issue where development errors resulted in too many redirects
* Fixed an integration test failure in Reports ViewedTest
* Fixed an issue where it was impossible to save existent Grouped Product with no child items
* Fixed an issue where message "We don't have as many "conf1" as you requested" appeared
* Fixed an issue where second product from bundle product was ordered as separate item after checkout
* Fixed an issue where configs for payments and shippings were not encrypted
* Fixed an issue where Table Rates shipping method did not work
* Fixed an issue where admin could not set locale properly on Account page
* Fixed incomplete generated results of single tenant compiler
* Fixed an issue with full page caching where one set of prices was cached for all customers
* Fixed incorrect urls for private content
* Fixed an issue where it was not possible to assign a product link to another product using API
* Fixed an issue where zipcode was not displayed as required field on Create New Order page
* Fixed the Sample Data re-installation
* Fixed random fails on inventory tab for test CreateSimpleProductEntityTest
* Tests:
* Covered various modules with unit tests
* Functional tests fixed and maintained
* GitHub issues:
* [#1156](https://github.com/magento/magento2/pull/1156) -- Moves common code to all auto-generated Interceptor classes into a trait
* [#1206](https://github.com/magento/magento2/pull/1206) -- Allow modules to live outside of app/code directory
* [#1245](https://github.com/magento/magento2/pull/1245) -- Unable to save product per website wise
* [#1347](https://github.com/magento/magento2/pull/1347) -- Fixed failing Install during integration tests (MAGETWO-38482)
* [#1368](https://github.com/magento/magento2/pull/1368) -- Fix typo in getCurrentCategoryKey

0.74.0-beta13
=============
* Framework improvements:
Expand Down
10 changes: 5 additions & 5 deletions app/code/Magento/AdminNotification/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
"description": "N/A",
"require": {
"php": "~5.5.0|~5.6.0",
"magento/module-store": "0.74.0-beta13",
"magento/module-backend": "0.74.0-beta13",
"magento/module-media-storage": "0.74.0-beta13",
"magento/framework": "0.74.0-beta13",
"magento/module-store": "0.74.0-beta14",
"magento/module-backend": "0.74.0-beta14",
"magento/module-media-storage": "0.74.0-beta14",
"magento/framework": "0.74.0-beta14",
"lib-libxml": "*",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.74.0-beta13",
"version": "0.74.0-beta14",
"license": [
"OSL-3.0",
"AFL-3.0"
Expand Down
6 changes: 3 additions & 3 deletions app/code/Magento/Authorization/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"description": "Authorization module provides access to Magento ACL functionality.",
"require": {
"php": "~5.5.0|~5.6.0",
"magento/module-backend": "0.74.0-beta13",
"magento/framework": "0.74.0-beta13",
"magento/module-backend": "0.74.0-beta14",
"magento/framework": "0.74.0-beta14",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.74.0-beta13",
"version": "0.74.0-beta14",
"license": [
"OSL-3.0",
"AFL-3.0"
Expand Down
36 changes: 18 additions & 18 deletions app/code/Magento/Backend/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@
"description": "N/A",
"require": {
"php": "~5.5.0|~5.6.0",
"magento/module-store": "0.74.0-beta13",
"magento/module-directory": "0.74.0-beta13",
"magento/module-developer": "0.74.0-beta13",
"magento/module-eav": "0.74.0-beta13",
"magento/module-cron": "0.74.0-beta13",
"magento/module-theme": "0.74.0-beta13",
"magento/module-reports": "0.74.0-beta13",
"magento/module-sales": "0.74.0-beta13",
"magento/module-quote": "0.74.0-beta13",
"magento/module-catalog": "0.74.0-beta13",
"magento/module-user": "0.74.0-beta13",
"magento/module-backup": "0.74.0-beta13",
"magento/module-customer": "0.74.0-beta13",
"magento/module-translation": "0.74.0-beta13",
"magento/module-require-js": "0.74.0-beta13",
"magento/module-config": "0.74.0-beta13",
"magento/framework": "0.74.0-beta13",
"magento/module-store": "0.74.0-beta14",
"magento/module-directory": "0.74.0-beta14",
"magento/module-developer": "0.74.0-beta14",
"magento/module-eav": "0.74.0-beta14",
"magento/module-cron": "0.74.0-beta14",
"magento/module-theme": "0.74.0-beta14",
"magento/module-reports": "0.74.0-beta14",
"magento/module-sales": "0.74.0-beta14",
"magento/module-quote": "0.74.0-beta14",
"magento/module-catalog": "0.74.0-beta14",
"magento/module-user": "0.74.0-beta14",
"magento/module-backup": "0.74.0-beta14",
"magento/module-customer": "0.74.0-beta14",
"magento/module-translation": "0.74.0-beta14",
"magento/module-require-js": "0.74.0-beta14",
"magento/module-config": "0.74.0-beta14",
"magento/framework": "0.74.0-beta14",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.74.0-beta13",
"version": "0.74.0-beta14",
"license": [
"OSL-3.0",
"AFL-3.0"
Expand Down
10 changes: 5 additions & 5 deletions app/code/Magento/Backup/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"description": "N/A",
"require": {
"php": "~5.5.0|~5.6.0",
"magento/module-store": "0.74.0-beta13",
"magento/module-backend": "0.74.0-beta13",
"magento/module-cron": "0.74.0-beta13",
"magento/framework": "0.74.0-beta13",
"magento/module-store": "0.74.0-beta14",
"magento/module-backend": "0.74.0-beta14",
"magento/module-cron": "0.74.0-beta14",
"magento/framework": "0.74.0-beta14",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.74.0-beta13",
"version": "0.74.0-beta14",
"license": [
"OSL-3.0",
"AFL-3.0"
Expand Down
34 changes: 17 additions & 17 deletions app/code/Magento/Bundle/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,28 @@
"description": "N/A",
"require": {
"php": "~5.5.0|~5.6.0",
"magento/module-store": "0.74.0-beta13",
"magento/module-catalog": "0.74.0-beta13",
"magento/module-tax": "0.74.0-beta13",
"magento/module-backend": "0.74.0-beta13",
"magento/module-sales": "0.74.0-beta13",
"magento/module-checkout": "0.74.0-beta13",
"magento/module-catalog-inventory": "0.74.0-beta13",
"magento/module-customer": "0.74.0-beta13",
"magento/module-catalog-rule": "0.74.0-beta13",
"magento/module-eav": "0.74.0-beta13",
"magento/module-config": "0.74.0-beta13",
"magento/module-gift-message": "0.74.0-beta13",
"magento/framework": "0.74.0-beta13",
"magento/module-quote": "0.74.0-beta13",
"magento/module-media-storage": "0.74.0-beta13",
"magento/module-store": "0.74.0-beta14",
"magento/module-catalog": "0.74.0-beta14",
"magento/module-tax": "0.74.0-beta14",
"magento/module-backend": "0.74.0-beta14",
"magento/module-sales": "0.74.0-beta14",
"magento/module-checkout": "0.74.0-beta14",
"magento/module-catalog-inventory": "0.74.0-beta14",
"magento/module-customer": "0.74.0-beta14",
"magento/module-catalog-rule": "0.74.0-beta14",
"magento/module-eav": "0.74.0-beta14",
"magento/module-config": "0.74.0-beta14",
"magento/module-gift-message": "0.74.0-beta14",
"magento/framework": "0.74.0-beta14",
"magento/module-quote": "0.74.0-beta14",
"magento/module-media-storage": "0.74.0-beta14",
"magento/magento-composer-installer": "*"
},
"suggest": {
"magento/module-webapi": "0.74.0-beta13"
"magento/module-webapi": "0.74.0-beta14"
},
"type": "magento2-module",
"version": "0.74.0-beta13",
"version": "0.74.0-beta14",
"license": [
"OSL-3.0",
"AFL-3.0"
Expand Down
14 changes: 7 additions & 7 deletions app/code/Magento/BundleImportExport/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
"description": "N/A",
"require": {
"php": "~5.5.0|~5.6.0",
"magento/module-catalog": "0.74.0-beta13",
"magento/module-import-export": "0.74.0-beta13",
"magento/module-catalog-import-export": "0.74.0-beta13",
"magento/module-bundle": "0.74.0-beta13",
"magento/module-eav": "0.74.0-beta13",
"magento/framework": "0.74.0-beta13",
"magento/module-catalog": "0.74.0-beta14",
"magento/module-import-export": "0.74.0-beta14",
"magento/module-catalog-import-export": "0.74.0-beta14",
"magento/module-bundle": "0.74.0-beta14",
"magento/module-eav": "0.74.0-beta14",
"magento/framework": "0.74.0-beta14",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.74.0-beta13",
"version": "0.74.0-beta14",
"license": [
"OSL-3.0",
"AFL-3.0"
Expand Down
6 changes: 3 additions & 3 deletions app/code/Magento/CacheInvalidate/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"description": "N/A",
"require": {
"php": "~5.5.0|~5.6.0",
"magento/module-page-cache": "0.74.0-beta13",
"magento/framework": "0.74.0-beta13",
"magento/module-page-cache": "0.74.0-beta14",
"magento/framework": "0.74.0-beta14",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.74.0-beta13",
"version": "0.74.0-beta14",
"license": [
"OSL-3.0",
"AFL-3.0"
Expand Down
14 changes: 7 additions & 7 deletions app/code/Magento/Captcha/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
"description": "N/A",
"require": {
"php": "~5.5.0|~5.6.0",
"magento/module-store": "0.74.0-beta13",
"magento/module-customer": "0.74.0-beta13",
"magento/module-checkout": "0.74.0-beta13",
"magento/module-quote": "0.74.0-beta13",
"magento/module-backend": "0.74.0-beta13",
"magento/framework": "0.74.0-beta13",
"magento/module-store": "0.74.0-beta14",
"magento/module-customer": "0.74.0-beta14",
"magento/module-checkout": "0.74.0-beta14",
"magento/module-quote": "0.74.0-beta14",
"magento/module-backend": "0.74.0-beta14",
"magento/framework": "0.74.0-beta14",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.74.0-beta13",
"version": "0.74.0-beta14",
"license": [
"OSL-3.0",
"AFL-3.0"
Expand Down
52 changes: 26 additions & 26 deletions app/code/Magento/Catalog/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,37 @@
"description": "N/A",
"require": {
"php": "~5.5.0|~5.6.0",
"magento/module-store": "0.74.0-beta13",
"magento/module-eav": "0.74.0-beta13",
"magento/module-cms": "0.74.0-beta13",
"magento/module-indexer": "0.74.0-beta13",
"magento/module-customer": "0.74.0-beta13",
"magento/module-theme": "0.74.0-beta13",
"magento/module-checkout": "0.74.0-beta13",
"magento/module-log": "0.74.0-beta13",
"magento/module-backend": "0.74.0-beta13",
"magento/module-widget": "0.74.0-beta13",
"magento/module-wishlist": "0.74.0-beta13",
"magento/module-tax": "0.74.0-beta13",
"magento/module-msrp": "0.74.0-beta13",
"magento/module-catalog-inventory": "0.74.0-beta13",
"magento/module-directory": "0.74.0-beta13",
"magento/module-catalog-rule": "0.74.0-beta13",
"magento/module-product-alert": "0.74.0-beta13",
"magento/module-url-rewrite": "0.74.0-beta13",
"magento/module-catalog-url-rewrite": "0.74.0-beta13",
"magento/module-page-cache": "0.74.0-beta13",
"magento/module-quote": "0.74.0-beta13",
"magento/module-config": "0.74.0-beta13",
"magento/module-media-storage": "0.74.0-beta13",
"magento/framework": "0.74.0-beta13",
"magento/module-store": "0.74.0-beta14",
"magento/module-eav": "0.74.0-beta14",
"magento/module-cms": "0.74.0-beta14",
"magento/module-indexer": "0.74.0-beta14",
"magento/module-customer": "0.74.0-beta14",
"magento/module-theme": "0.74.0-beta14",
"magento/module-checkout": "0.74.0-beta14",
"magento/module-log": "0.74.0-beta14",
"magento/module-backend": "0.74.0-beta14",
"magento/module-widget": "0.74.0-beta14",
"magento/module-wishlist": "0.74.0-beta14",
"magento/module-tax": "0.74.0-beta14",
"magento/module-msrp": "0.74.0-beta14",
"magento/module-catalog-inventory": "0.74.0-beta14",
"magento/module-directory": "0.74.0-beta14",
"magento/module-catalog-rule": "0.74.0-beta14",
"magento/module-product-alert": "0.74.0-beta14",
"magento/module-url-rewrite": "0.74.0-beta14",
"magento/module-catalog-url-rewrite": "0.74.0-beta14",
"magento/module-page-cache": "0.74.0-beta14",
"magento/module-quote": "0.74.0-beta14",
"magento/module-config": "0.74.0-beta14",
"magento/module-media-storage": "0.74.0-beta14",
"magento/framework": "0.74.0-beta14",
"magento/magento-composer-installer": "*"
},
"suggest": {
"magento/module-cookie": "0.74.0-beta13"
"magento/module-cookie": "0.74.0-beta14"
},
"type": "magento2-module",
"version": "0.74.0-beta13",
"version": "0.74.0-beta14",
"license": [
"OSL-3.0",
"AFL-3.0"
Expand Down
22 changes: 11 additions & 11 deletions app/code/Magento/CatalogImportExport/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
"description": "N/A",
"require": {
"php": "~5.5.0|~5.6.0",
"magento/module-catalog": "0.74.0-beta13",
"magento/module-eav": "0.74.0-beta13",
"magento/module-import-export": "0.74.0-beta13",
"magento/module-indexer": "0.74.0-beta13",
"magento/module-store": "0.74.0-beta13",
"magento/module-tax": "0.74.0-beta13",
"magento/module-catalog-inventory": "0.74.0-beta13",
"magento/module-media-storage": "0.74.0-beta13",
"magento/module-customer": "0.74.0-beta13",
"magento/framework": "0.74.0-beta13",
"magento/module-catalog": "0.74.0-beta14",
"magento/module-eav": "0.74.0-beta14",
"magento/module-import-export": "0.74.0-beta14",
"magento/module-indexer": "0.74.0-beta14",
"magento/module-store": "0.74.0-beta14",
"magento/module-tax": "0.74.0-beta14",
"magento/module-catalog-inventory": "0.74.0-beta14",
"magento/module-media-storage": "0.74.0-beta14",
"magento/module-customer": "0.74.0-beta14",
"magento/framework": "0.74.0-beta14",
"ext-ctype": "*",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.74.0-beta13",
"version": "0.74.0-beta14",
"license": [
"OSL-3.0",
"AFL-3.0"
Expand Down
18 changes: 9 additions & 9 deletions app/code/Magento/CatalogInventory/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
"description": "N/A",
"require": {
"php": "~5.5.0|~5.6.0",
"magento/module-config": "0.74.0-beta13",
"magento/module-store": "0.74.0-beta13",
"magento/module-catalog": "0.74.0-beta13",
"magento/module-customer": "0.74.0-beta13",
"magento/module-indexer": "0.74.0-beta13",
"magento/module-eav": "0.74.0-beta13",
"magento/module-quote": "0.74.0-beta13",
"magento/framework": "0.74.0-beta13",
"magento/module-config": "0.74.0-beta14",
"magento/module-store": "0.74.0-beta14",
"magento/module-catalog": "0.74.0-beta14",
"magento/module-customer": "0.74.0-beta14",
"magento/module-indexer": "0.74.0-beta14",
"magento/module-eav": "0.74.0-beta14",
"magento/module-quote": "0.74.0-beta14",
"magento/framework": "0.74.0-beta14",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.74.0-beta13",
"version": "0.74.0-beta14",
"license": [
"OSL-3.0",
"AFL-3.0"
Expand Down
Loading

0 comments on commit db17c80

Please sign in to comment.