Skip to content

Commit b12d8c9

Browse files
committed
0.1.0-alpha103
* Fixed bugs: * Fixed an issue where an error message was displayed after successful product mass actions * Fixed an issue where it is impossible to create a tax rate for all states (* in the State field) * Fixed an issue where FPT was not shown on the storefront if a customer state did not match the default state from configuration * Fixed the benchmark scenario * Fixed an issue where the expand arrow next to Advanced Settings tab label was not clickable * Fixed an issue where the Category menu disappeared when resizing a browser window * Fixed an issue where the order additional info was not available for a guest customer * Fixed an issue where a fatal error was thrown when trying to get a coupon report with Shopping Cart Price Rule set to Specified * Fixed an issue where the URL of an attribute set for attribute mapping changed after resetting filter for the grid on the Google Contents Attributes page * Fixed the implementation of the wishlist RSS-feed * Fixed the incorrect name escaping in wishlist RSS * Fixed an issue where a RSS feed for shared wishlist was not accessible * Fixed an issue caused by REST POST/PUT requests with empty body * Fixed an issues where postal code was still mandatory for non-US addresses that do not use it, even if set to be optional * Fixed an issue where it was impossible to find a wishlist by using Wishlist Search * Fixed an issue where no password validation was requested during customer registration on the storefront * Updated setup tools: * Added the install script in the CatalogInventory module * Removed old installation: Web and CLI, the Magento_Install module, install theme, install configuration scope * Added usage of the new setup installation in all tests * Added the ability to insert custom directory paths in the setup tools * Added the uninstall tool: php -f setup/index.php uninstall * Removed dependency on intl PHP extension until translations are re-introduced in the setup tool * Made notification about unnecessarily writable directories after installation more specific * UI improvements: * Improved UI for the Order by SKU, Invitation and Recurring Payments pages * Implemented usage of Microdata and Schema vocabulary for product content * Implemented UI for Catalog New Products List, Recently Compared Products, Recently Viewed Products widgets * Implemented a new focus indicator * Implemented the <label> element for form inputs * Put in order the usage of the <fieldset> and <legend> tags * Implemented the ability to skip to main content * Added the following functional tests: * Add products to order from recently viewed products section * Update configurable product * Various improvements: * Stabilize URL rewrite module * Moved getAdditional request into the basic one in OnePageCheckout * Created a cron job in the Customer module for cleaning the customer_visitor table * Framework improvements: * Refactored data builders auto-generation * Implemented the Customer module interfaces * Ported existing integration tests from Customer services * Removed quote saving on GET requests (checkout/cart, checkout/onepage)
1 parent 1d6e87c commit b12d8c9

File tree

1,386 files changed

+19775
-23386
lines changed

Some content is hidden

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

1,386 files changed

+19775
-23386
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ before_script:
2626
# Disable xDebug
2727
- echo '' > ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
2828
# Create DB for Integration tests
29-
- sh -c "if [ '$TEST_SUITE' = 'integration' ] || [ '$TEST_SUITE' = 'integration_integrity' ]; then mysql -e 'create database magento_integration_tests;'; mv dev/tests/integration/etc/local-mysql.travis.xml.dist dev/tests/integration/etc/local-mysql.xml; fi"
29+
- sh -c "if [ '$TEST_SUITE' = 'integration' ] || [ '$TEST_SUITE' = 'integration_integrity' ]; then mysql -e 'create database magento_integration_tests;'; mv dev/tests/integration/etc/install-config-mysql.travis.php.dist dev/tests/integration/etc/install-config-mysql.php; fi"
3030
# Install tools for static tests
3131
- sh -c "if [ '$TEST_SUITE' = 'static_phpcs' ] || [ '$TEST_SUITE' = 'static_annotation' ]; then pear install pear/PHP_CodeSniffer-1.5.2; fi"
3232
# Change memmory_limit for travis server

CHANGELOG.md

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,51 @@
1+
0.1.0-alpha103
2+
=============
3+
* Fixed bugs:
4+
* Fixed an issue where an error message was displayed after successful product mass actions
5+
* Fixed an issue where it is impossible to create a tax rate for all states (“*” in the State field)
6+
* Fixed an issue where FPT was not shown on the storefront if a customer state did not match the default state from configuration
7+
* Fixed the benchmark scenario
8+
* Fixed an issue where the expand arrow next to Advanced Settings tab label was not clickable
9+
* Fixed an issue where the Category menu disappeared when resizing a browser window
10+
* Fixed an issue where the order additional info was not available for a guest customer
11+
* Fixed an issue where a fatal error was thrown when trying to get a coupon report with Shopping Cart Price Rule set to Specified
12+
* Fixed an issue where the URL of an attribute set for attribute mapping changed after resetting filter for the grid on the Google Contents Attributes page
13+
* Fixed the implementation of the wishlist RSS-feed
14+
* Fixed the incorrect name escaping in wishlist RSS
15+
* Fixed an issue where a RSS feed for shared wishlist was not accessible
16+
* Fixed an issue caused by REST POST/PUT requests with empty body
17+
* Fixed an issues where postal code was still mandatory for non-US addresses that do not use it, even if set to be optional
18+
* Fixed an issue where it was impossible to find a wishlist by using Wishlist Search
19+
* Fixed an issue where no password validation was requested during customer registration on the storefront
20+
* Updated setup tools:
21+
* Added the install script in the CatalogInventory module
22+
* Removed old installation: Web and CLI, the Magento_Install module, install theme, install configuration scope
23+
* Added usage of the new setup installation in all tests
24+
* Added the ability to insert custom directory paths in the setup tools
25+
* Added the uninstall tool: php -f setup/index.php uninstall
26+
* Removed dependency on intl PHP extension until translations are re-introduced in the setup tool
27+
* Made notification about unnecessarily writable directories after installation more specific
28+
* UI improvements:
29+
* Improved UI for the Order by SKU, Invitation and Recurring Payments pages
30+
* Implemented usage of Microdata and Schema vocabulary for product content
31+
* Implemented UI for Catalog New Products List, Recently Compared Products, Recently Viewed Products widgets
32+
* Implemented a new focus indicator
33+
* Implemented the <label> element for form inputs
34+
* Put in order the usage of the <fieldset> and <legend> tags
35+
* Implemented the ability to skip to main content
36+
* Added the following functional tests:
37+
* Add products to order from recently viewed products section
38+
* Update configurable product
39+
* Various improvements:
40+
* Stabilize URL rewrite module
41+
* Moved getAdditional request into the basic one in OnePageCheckout
42+
* Created a cron job in the Customer module for cleaning the customer_visitor table
43+
* Framework improvements:
44+
* Refactored data builders auto-generation
45+
* Implemented the Customer module interfaces
46+
* Ported existing integration tests from Customer services
47+
* Removed quote saving on GET requests (checkout/cart, checkout/onepage)
48+
149
0.1.0-alpha102
250
=============
351
* Fixed bugs:
@@ -572,7 +620,7 @@
572620
* Placing the order on frontend if enter in the street address line 1 and 2 255 symbols
573621
* Using @357.farm domain emails in registration form
574622
* Validation for country_id/region_id and percentage_rate during Tax Rate creation
575-
* Declaration of getSortOrders in Magento\Framework\Service\V1\Data\SearchCriteria
623+
* Declaration of getSortOrders in Magento\Framework\Api\SearchCriteria
576624
* Order cancellation for online payment methods
577625
* Order online processing for Authorize.net Direct Post
578626
* Backend grids while search

0 commit comments

Comments
 (0)