Skip to content

Commit db17c80

Browse files
author
Evgeniy Kolesov
committed
MAGETWO-33536: M2 GitHub Update (version 0.74.0-beta14)
1 parent 8599357 commit db17c80

File tree

102 files changed

+870
-831
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+870
-831
lines changed

CHANGELOG.md

+39
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1+
0.74.0-beta14
2+
=============
3+
* Framework improvements:
4+
* Introduced an ability to uninstall modules which were installed via composer (bin/magento module:uninstall <moduleName>)
5+
* Introduced an ability to uninstall themes (bin/magento theme:uninstall <themeName>)
6+
* Introduced an ability to backup and rollback DB and Media via CLI (bin/magento setup:backup, options are --code, --db or --media)
7+
* Introduced an ability to uninstall language packages (bin/magento i18n:uninstall <languagePack>)
8+
* Introduced API notation for the following modules: Backend, Backup, Cron, Log, PageCache
9+
* Added join processors to search services, joined config for services with extension attributes
10+
* Renamed hidden_tax to discount_tax_compensation
11+
* The customer address entity table was transformed from EAV into a flat model to minimize database operations
12+
* Fixed bugs:
13+
* Fixed an issue where Setup Wizard failed on readiness check when Magento was deployed by composer create-project
14+
* Fixed the local file path disclosure when trying to browse image cache directory
15+
* Fixed an issue where development errors resulted in too many redirects
16+
* Fixed an integration test failure in Reports ViewedTest
17+
* Fixed an issue where it was impossible to save existent Grouped Product with no child items
18+
* Fixed an issue where message "We don't have as many "conf1" as you requested" appeared
19+
* Fixed an issue where second product from bundle product was ordered as separate item after checkout
20+
* Fixed an issue where configs for payments and shippings were not encrypted
21+
* Fixed an issue where Table Rates shipping method did not work
22+
* Fixed an issue where admin could not set locale properly on Account page
23+
* Fixed incomplete generated results of single tenant compiler
24+
* Fixed an issue with full page caching where one set of prices was cached for all customers
25+
* Fixed incorrect urls for private content
26+
* Fixed an issue where it was not possible to assign a product link to another product using API
27+
* Fixed an issue where zipcode was not displayed as required field on Create New Order page
28+
* Fixed the Sample Data re-installation
29+
* Fixed random fails on inventory tab for test CreateSimpleProductEntityTest
30+
* Tests:
31+
* Covered various modules with unit tests
32+
* Functional tests fixed and maintained
33+
* GitHub issues:
34+
* [#1156](https://github.com/magento/magento2/pull/1156) -- Moves common code to all auto-generated Interceptor classes into a trait
35+
* [#1206](https://github.com/magento/magento2/pull/1206) -- Allow modules to live outside of app/code directory
36+
* [#1245](https://github.com/magento/magento2/pull/1245) -- Unable to save product per website wise
37+
* [#1347](https://github.com/magento/magento2/pull/1347) -- Fixed failing Install during integration tests (MAGETWO-38482)
38+
* [#1368](https://github.com/magento/magento2/pull/1368) -- Fix typo in getCurrentCategoryKey
39+
140
0.74.0-beta13
241
=============
342
* Framework improvements:

app/code/Magento/AdminNotification/composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.5.0|~5.6.0",
6-
"magento/module-store": "0.74.0-beta13",
7-
"magento/module-backend": "0.74.0-beta13",
8-
"magento/module-media-storage": "0.74.0-beta13",
9-
"magento/framework": "0.74.0-beta13",
6+
"magento/module-store": "0.74.0-beta14",
7+
"magento/module-backend": "0.74.0-beta14",
8+
"magento/module-media-storage": "0.74.0-beta14",
9+
"magento/framework": "0.74.0-beta14",
1010
"lib-libxml": "*",
1111
"magento/magento-composer-installer": "*"
1212
},
1313
"type": "magento2-module",
14-
"version": "0.74.0-beta13",
14+
"version": "0.74.0-beta14",
1515
"license": [
1616
"OSL-3.0",
1717
"AFL-3.0"

app/code/Magento/Authorization/composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"description": "Authorization module provides access to Magento ACL functionality.",
44
"require": {
55
"php": "~5.5.0|~5.6.0",
6-
"magento/module-backend": "0.74.0-beta13",
7-
"magento/framework": "0.74.0-beta13",
6+
"magento/module-backend": "0.74.0-beta14",
7+
"magento/framework": "0.74.0-beta14",
88
"magento/magento-composer-installer": "*"
99
},
1010
"type": "magento2-module",
11-
"version": "0.74.0-beta13",
11+
"version": "0.74.0-beta14",
1212
"license": [
1313
"OSL-3.0",
1414
"AFL-3.0"

app/code/Magento/Backend/composer.json

+18-18
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.5.0|~5.6.0",
6-
"magento/module-store": "0.74.0-beta13",
7-
"magento/module-directory": "0.74.0-beta13",
8-
"magento/module-developer": "0.74.0-beta13",
9-
"magento/module-eav": "0.74.0-beta13",
10-
"magento/module-cron": "0.74.0-beta13",
11-
"magento/module-theme": "0.74.0-beta13",
12-
"magento/module-reports": "0.74.0-beta13",
13-
"magento/module-sales": "0.74.0-beta13",
14-
"magento/module-quote": "0.74.0-beta13",
15-
"magento/module-catalog": "0.74.0-beta13",
16-
"magento/module-user": "0.74.0-beta13",
17-
"magento/module-backup": "0.74.0-beta13",
18-
"magento/module-customer": "0.74.0-beta13",
19-
"magento/module-translation": "0.74.0-beta13",
20-
"magento/module-require-js": "0.74.0-beta13",
21-
"magento/module-config": "0.74.0-beta13",
22-
"magento/framework": "0.74.0-beta13",
6+
"magento/module-store": "0.74.0-beta14",
7+
"magento/module-directory": "0.74.0-beta14",
8+
"magento/module-developer": "0.74.0-beta14",
9+
"magento/module-eav": "0.74.0-beta14",
10+
"magento/module-cron": "0.74.0-beta14",
11+
"magento/module-theme": "0.74.0-beta14",
12+
"magento/module-reports": "0.74.0-beta14",
13+
"magento/module-sales": "0.74.0-beta14",
14+
"magento/module-quote": "0.74.0-beta14",
15+
"magento/module-catalog": "0.74.0-beta14",
16+
"magento/module-user": "0.74.0-beta14",
17+
"magento/module-backup": "0.74.0-beta14",
18+
"magento/module-customer": "0.74.0-beta14",
19+
"magento/module-translation": "0.74.0-beta14",
20+
"magento/module-require-js": "0.74.0-beta14",
21+
"magento/module-config": "0.74.0-beta14",
22+
"magento/framework": "0.74.0-beta14",
2323
"magento/magento-composer-installer": "*"
2424
},
2525
"type": "magento2-module",
26-
"version": "0.74.0-beta13",
26+
"version": "0.74.0-beta14",
2727
"license": [
2828
"OSL-3.0",
2929
"AFL-3.0"

app/code/Magento/Backup/composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.5.0|~5.6.0",
6-
"magento/module-store": "0.74.0-beta13",
7-
"magento/module-backend": "0.74.0-beta13",
8-
"magento/module-cron": "0.74.0-beta13",
9-
"magento/framework": "0.74.0-beta13",
6+
"magento/module-store": "0.74.0-beta14",
7+
"magento/module-backend": "0.74.0-beta14",
8+
"magento/module-cron": "0.74.0-beta14",
9+
"magento/framework": "0.74.0-beta14",
1010
"magento/magento-composer-installer": "*"
1111
},
1212
"type": "magento2-module",
13-
"version": "0.74.0-beta13",
13+
"version": "0.74.0-beta14",
1414
"license": [
1515
"OSL-3.0",
1616
"AFL-3.0"

app/code/Magento/Bundle/composer.json

+17-17
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,28 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.5.0|~5.6.0",
6-
"magento/module-store": "0.74.0-beta13",
7-
"magento/module-catalog": "0.74.0-beta13",
8-
"magento/module-tax": "0.74.0-beta13",
9-
"magento/module-backend": "0.74.0-beta13",
10-
"magento/module-sales": "0.74.0-beta13",
11-
"magento/module-checkout": "0.74.0-beta13",
12-
"magento/module-catalog-inventory": "0.74.0-beta13",
13-
"magento/module-customer": "0.74.0-beta13",
14-
"magento/module-catalog-rule": "0.74.0-beta13",
15-
"magento/module-eav": "0.74.0-beta13",
16-
"magento/module-config": "0.74.0-beta13",
17-
"magento/module-gift-message": "0.74.0-beta13",
18-
"magento/framework": "0.74.0-beta13",
19-
"magento/module-quote": "0.74.0-beta13",
20-
"magento/module-media-storage": "0.74.0-beta13",
6+
"magento/module-store": "0.74.0-beta14",
7+
"magento/module-catalog": "0.74.0-beta14",
8+
"magento/module-tax": "0.74.0-beta14",
9+
"magento/module-backend": "0.74.0-beta14",
10+
"magento/module-sales": "0.74.0-beta14",
11+
"magento/module-checkout": "0.74.0-beta14",
12+
"magento/module-catalog-inventory": "0.74.0-beta14",
13+
"magento/module-customer": "0.74.0-beta14",
14+
"magento/module-catalog-rule": "0.74.0-beta14",
15+
"magento/module-eav": "0.74.0-beta14",
16+
"magento/module-config": "0.74.0-beta14",
17+
"magento/module-gift-message": "0.74.0-beta14",
18+
"magento/framework": "0.74.0-beta14",
19+
"magento/module-quote": "0.74.0-beta14",
20+
"magento/module-media-storage": "0.74.0-beta14",
2121
"magento/magento-composer-installer": "*"
2222
},
2323
"suggest": {
24-
"magento/module-webapi": "0.74.0-beta13"
24+
"magento/module-webapi": "0.74.0-beta14"
2525
},
2626
"type": "magento2-module",
27-
"version": "0.74.0-beta13",
27+
"version": "0.74.0-beta14",
2828
"license": [
2929
"OSL-3.0",
3030
"AFL-3.0"

app/code/Magento/BundleImportExport/composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.5.0|~5.6.0",
6-
"magento/module-catalog": "0.74.0-beta13",
7-
"magento/module-import-export": "0.74.0-beta13",
8-
"magento/module-catalog-import-export": "0.74.0-beta13",
9-
"magento/module-bundle": "0.74.0-beta13",
10-
"magento/module-eav": "0.74.0-beta13",
11-
"magento/framework": "0.74.0-beta13",
6+
"magento/module-catalog": "0.74.0-beta14",
7+
"magento/module-import-export": "0.74.0-beta14",
8+
"magento/module-catalog-import-export": "0.74.0-beta14",
9+
"magento/module-bundle": "0.74.0-beta14",
10+
"magento/module-eav": "0.74.0-beta14",
11+
"magento/framework": "0.74.0-beta14",
1212
"magento/magento-composer-installer": "*"
1313
},
1414
"type": "magento2-module",
15-
"version": "0.74.0-beta13",
15+
"version": "0.74.0-beta14",
1616
"license": [
1717
"OSL-3.0",
1818
"AFL-3.0"

app/code/Magento/CacheInvalidate/composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.5.0|~5.6.0",
6-
"magento/module-page-cache": "0.74.0-beta13",
7-
"magento/framework": "0.74.0-beta13",
6+
"magento/module-page-cache": "0.74.0-beta14",
7+
"magento/framework": "0.74.0-beta14",
88
"magento/magento-composer-installer": "*"
99
},
1010
"type": "magento2-module",
11-
"version": "0.74.0-beta13",
11+
"version": "0.74.0-beta14",
1212
"license": [
1313
"OSL-3.0",
1414
"AFL-3.0"

app/code/Magento/Captcha/composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.5.0|~5.6.0",
6-
"magento/module-store": "0.74.0-beta13",
7-
"magento/module-customer": "0.74.0-beta13",
8-
"magento/module-checkout": "0.74.0-beta13",
9-
"magento/module-quote": "0.74.0-beta13",
10-
"magento/module-backend": "0.74.0-beta13",
11-
"magento/framework": "0.74.0-beta13",
6+
"magento/module-store": "0.74.0-beta14",
7+
"magento/module-customer": "0.74.0-beta14",
8+
"magento/module-checkout": "0.74.0-beta14",
9+
"magento/module-quote": "0.74.0-beta14",
10+
"magento/module-backend": "0.74.0-beta14",
11+
"magento/framework": "0.74.0-beta14",
1212
"magento/magento-composer-installer": "*"
1313
},
1414
"type": "magento2-module",
15-
"version": "0.74.0-beta13",
15+
"version": "0.74.0-beta14",
1616
"license": [
1717
"OSL-3.0",
1818
"AFL-3.0"

app/code/Magento/Catalog/composer.json

+26-26
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,37 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.5.0|~5.6.0",
6-
"magento/module-store": "0.74.0-beta13",
7-
"magento/module-eav": "0.74.0-beta13",
8-
"magento/module-cms": "0.74.0-beta13",
9-
"magento/module-indexer": "0.74.0-beta13",
10-
"magento/module-customer": "0.74.0-beta13",
11-
"magento/module-theme": "0.74.0-beta13",
12-
"magento/module-checkout": "0.74.0-beta13",
13-
"magento/module-log": "0.74.0-beta13",
14-
"magento/module-backend": "0.74.0-beta13",
15-
"magento/module-widget": "0.74.0-beta13",
16-
"magento/module-wishlist": "0.74.0-beta13",
17-
"magento/module-tax": "0.74.0-beta13",
18-
"magento/module-msrp": "0.74.0-beta13",
19-
"magento/module-catalog-inventory": "0.74.0-beta13",
20-
"magento/module-directory": "0.74.0-beta13",
21-
"magento/module-catalog-rule": "0.74.0-beta13",
22-
"magento/module-product-alert": "0.74.0-beta13",
23-
"magento/module-url-rewrite": "0.74.0-beta13",
24-
"magento/module-catalog-url-rewrite": "0.74.0-beta13",
25-
"magento/module-page-cache": "0.74.0-beta13",
26-
"magento/module-quote": "0.74.0-beta13",
27-
"magento/module-config": "0.74.0-beta13",
28-
"magento/module-media-storage": "0.74.0-beta13",
29-
"magento/framework": "0.74.0-beta13",
6+
"magento/module-store": "0.74.0-beta14",
7+
"magento/module-eav": "0.74.0-beta14",
8+
"magento/module-cms": "0.74.0-beta14",
9+
"magento/module-indexer": "0.74.0-beta14",
10+
"magento/module-customer": "0.74.0-beta14",
11+
"magento/module-theme": "0.74.0-beta14",
12+
"magento/module-checkout": "0.74.0-beta14",
13+
"magento/module-log": "0.74.0-beta14",
14+
"magento/module-backend": "0.74.0-beta14",
15+
"magento/module-widget": "0.74.0-beta14",
16+
"magento/module-wishlist": "0.74.0-beta14",
17+
"magento/module-tax": "0.74.0-beta14",
18+
"magento/module-msrp": "0.74.0-beta14",
19+
"magento/module-catalog-inventory": "0.74.0-beta14",
20+
"magento/module-directory": "0.74.0-beta14",
21+
"magento/module-catalog-rule": "0.74.0-beta14",
22+
"magento/module-product-alert": "0.74.0-beta14",
23+
"magento/module-url-rewrite": "0.74.0-beta14",
24+
"magento/module-catalog-url-rewrite": "0.74.0-beta14",
25+
"magento/module-page-cache": "0.74.0-beta14",
26+
"magento/module-quote": "0.74.0-beta14",
27+
"magento/module-config": "0.74.0-beta14",
28+
"magento/module-media-storage": "0.74.0-beta14",
29+
"magento/framework": "0.74.0-beta14",
3030
"magento/magento-composer-installer": "*"
3131
},
3232
"suggest": {
33-
"magento/module-cookie": "0.74.0-beta13"
33+
"magento/module-cookie": "0.74.0-beta14"
3434
},
3535
"type": "magento2-module",
36-
"version": "0.74.0-beta13",
36+
"version": "0.74.0-beta14",
3737
"license": [
3838
"OSL-3.0",
3939
"AFL-3.0"

app/code/Magento/CatalogImportExport/composer.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.5.0|~5.6.0",
6-
"magento/module-catalog": "0.74.0-beta13",
7-
"magento/module-eav": "0.74.0-beta13",
8-
"magento/module-import-export": "0.74.0-beta13",
9-
"magento/module-indexer": "0.74.0-beta13",
10-
"magento/module-store": "0.74.0-beta13",
11-
"magento/module-tax": "0.74.0-beta13",
12-
"magento/module-catalog-inventory": "0.74.0-beta13",
13-
"magento/module-media-storage": "0.74.0-beta13",
14-
"magento/module-customer": "0.74.0-beta13",
15-
"magento/framework": "0.74.0-beta13",
6+
"magento/module-catalog": "0.74.0-beta14",
7+
"magento/module-eav": "0.74.0-beta14",
8+
"magento/module-import-export": "0.74.0-beta14",
9+
"magento/module-indexer": "0.74.0-beta14",
10+
"magento/module-store": "0.74.0-beta14",
11+
"magento/module-tax": "0.74.0-beta14",
12+
"magento/module-catalog-inventory": "0.74.0-beta14",
13+
"magento/module-media-storage": "0.74.0-beta14",
14+
"magento/module-customer": "0.74.0-beta14",
15+
"magento/framework": "0.74.0-beta14",
1616
"ext-ctype": "*",
1717
"magento/magento-composer-installer": "*"
1818
},
1919
"type": "magento2-module",
20-
"version": "0.74.0-beta13",
20+
"version": "0.74.0-beta14",
2121
"license": [
2222
"OSL-3.0",
2323
"AFL-3.0"

app/code/Magento/CatalogInventory/composer.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.5.0|~5.6.0",
6-
"magento/module-config": "0.74.0-beta13",
7-
"magento/module-store": "0.74.0-beta13",
8-
"magento/module-catalog": "0.74.0-beta13",
9-
"magento/module-customer": "0.74.0-beta13",
10-
"magento/module-indexer": "0.74.0-beta13",
11-
"magento/module-eav": "0.74.0-beta13",
12-
"magento/module-quote": "0.74.0-beta13",
13-
"magento/framework": "0.74.0-beta13",
6+
"magento/module-config": "0.74.0-beta14",
7+
"magento/module-store": "0.74.0-beta14",
8+
"magento/module-catalog": "0.74.0-beta14",
9+
"magento/module-customer": "0.74.0-beta14",
10+
"magento/module-indexer": "0.74.0-beta14",
11+
"magento/module-eav": "0.74.0-beta14",
12+
"magento/module-quote": "0.74.0-beta14",
13+
"magento/framework": "0.74.0-beta14",
1414
"magento/magento-composer-installer": "*"
1515
},
1616
"type": "magento2-module",
17-
"version": "0.74.0-beta13",
17+
"version": "0.74.0-beta14",
1818
"license": [
1919
"OSL-3.0",
2020
"AFL-3.0"

0 commit comments

Comments
 (0)