Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e4b6347

Browse files
author
Max Y
committedDec 26, 2014
MAGETWO-31051: M2 GitHub Update (version 0.42.0-beta2)
1 parent f62afbb commit e4b6347

File tree

93 files changed

+765
-738
lines changed

Some content is hidden

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

93 files changed

+765
-738
lines changed
 

‎CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
0.42.0-beta2
2+
=============
3+
* Framework improvements:
4+
* Added composer.lock to the repository
5+
* Various improvements:
6+
* Magento PSR-3 compliance
7+
* Updated file iterators to work with symlinks
8+
* Replaced end-to-end test for advanced search with injectable test
9+
* Replaced end-to-end test for quick search with injectable test
10+
* Fixed bugs:
11+
* Fixed an issue where an exception occurred when adding configurable products to cart from the wishlist
12+
* Modify .gitignore CE according to new repos structure (MAGETWO-32095)
13+
* Fixed an issue where the 'Not %Username%?' link was displayed for a logged in user while pages were loaded
14+
* Fixed an issue where Shopping Cart Price Rules based on product attributes were not applied to configurable products
15+
* Fixed an issue where the Tax Class drop-down field on New Customer Group page contained the 'none' value when a tax class already existed
16+
* Fixed an issue where the 'Credit Memo' button was absent on the Invoice page for payments
17+
* Fixed an issue where incorrect totals were shown in the Coupon Usage report
18+
* Fixed an issue where an error occurred and the "Append Comments" checkbox was cleared when submitting an order in the backend
19+
* Fixed an issue where the Transactions tab appeared in the backend for orders where offline payment methods were used
20+
* Fixed an issue with the extra empty line appearing in the Customer Address template
21+
* Github requests:
22+
* [#853](https://github.com/magento/magento2/pull/853) -- Fix spelling error in Customer module xml
23+
* [#858](https://github.com/magento/magento2/pull/858) -- Clicking CMS page in backend takes you to the dashboard
24+
* [#858](https://github.com/magento/magento2/issues/816) -- Clicking CMS page takes you to the dashboard
25+
* [#859](https://github.com/magento/magento2/pull/859) -- Fix email template creation date not being persisted
26+
* [#860](https://github.com/magento/magento2/pull/860) -- Fix currency and price renderer
27+
128
0.42.0-beta1
229
=============
330
* Fixed bugs:

‎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.4.11|~5.5.0",
6-
"magento/module-store": "0.42.0-beta1",
7-
"magento/module-core": "0.42.0-beta1",
8-
"magento/module-backend": "0.42.0-beta1",
9-
"magento/framework": "0.42.0-beta1",
6+
"magento/module-store": "0.42.0-beta2",
7+
"magento/module-core": "0.42.0-beta2",
8+
"magento/module-backend": "0.42.0-beta2",
9+
"magento/framework": "0.42.0-beta2",
1010
"lib-libxml": "*",
1111
"magento/magento-composer-installer": "*"
1212
},
1313
"type": "magento2-module",
14-
"version": "0.42.0-beta1",
14+
"version": "0.42.0-beta2",
1515
"license": [
1616
"OSL-3.0",
1717
"AFL-3.0"

2 commit comments

Comments
 (2)

jameswithers commented on Dec 29, 2014

@jameswithers

@mage2-team Can you ensure packages.magento.com is updated to beta2 also? See #881 for an example of problems this is causing.

jameswithers commented on Dec 29, 2014

@jameswithers

@maksek http://packages.magento.com/_packages/magento_sample-data-0.42.0-beta1.zip composer.json still shows beta1:

{
    "name": "magento/sample-data",
    "description": "Sample Data scripts",
    "version": "0.42.0-beta1",
    "require": {
        "magento/framework": "0.42.0-beta1",
        "magento/magento-composer-installer": "*",
        "magento/sample-data-media": "0.42.0-beta1"
    },
    "type": "magento2-component",
    "extra": {
        "map": [
            [
                "*",
                "dev/tools/Magento/Tools/SampleData"
            ]
        ]
    }
}
Please sign in to comment.