Skip to content

Commit

Permalink
0.1.0-alpha98
Browse files Browse the repository at this point in the history
* GitHub requests:
   * [#678] (#678) -- Fixed Travis CI builds
* Functional tests:
   * Create Sales Order Backend
   * Delete Products from Wishlist
   * Download Products Report
   * Mass Orders Update
   * Sales Tax Report
* Fixed bugs:
   * Fixed an issue where success message was not displayed after product review submit
   * Fixed an issue where it was impossible to start checkout process using PayPal from the JavaScript pop-up window when the Display Actual Price option was set to On Gesture
   * Fixed an issue where a fatal error was thrown after shipping method selection in PayPal Express Checkout
   * Fixed an issue with parameters exceptions in SOAP response
   * Fixed an issue where testGetRequestTokenOauthTimestampRefused unit test failed in certain cases
   * Fixed an issue where TestCreateCustomer test thrown fatal error when making a SOAP request
   * Fixed an issue with required parameters in WSDL
   * Fixed an issue where Customer Account Service returned void response in the resetPassword method
   * Fixed an issue where REST API failed during bundle product creation
  • Loading branch information
magento-team committed Oct 3, 2014
1 parent 8a8ebcd commit 9abf9a6
Show file tree
Hide file tree
Showing 244 changed files with 3,203 additions and 1,294 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ before_script:
- 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"
# Install tools for static tests
- sh -c "if [ '$TEST_SUITE' = 'static_phpcs' ] || [ '$TEST_SUITE' = 'static_annotation' ]; then pear install pear/PHP_CodeSniffer-1.5.2; fi"
# Change memmory_limit for travis server
- echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- phpenv rehash;
script:
# Unit tests
sh -c "if [ '$TEST_SUITE' = 'unit' ]; then ./vendor/bin/phpunit -c dev/tests/unit/phpunit.xml.dist; fi"
- sh -c "if [ '$TEST_SUITE' = 'unit' ]; then ./vendor/bin/phpunit -c dev/tests/unit/phpunit.xml.dist; fi"
# Integration tests
- sh -c "if [ '$TEST_SUITE' = 'integration' ]; then cd dev/tests/integration/; ./../../../vendor/bin/phpunit -c phpunit.xml.dist; fi"
# Integration integrity tests
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
0.1.0-alpha98
=============
* GitHub requests:
* [#678] (https://github.com/magento/magento2/issues/678) -- Fixed Travis CI builds
* Functional tests:
* Create Sales Order Backend
* Delete Products from Wishlist
* Download Products Report
* Mass Orders Update
* Sales Tax Report
* Fixed bugs:
* Fixed an issue where success message was not displayed after product review submit
* Fixed an issue where it was impossible to start checkout process using PayPal from the JavaScript pop-up window when the Display Actual Price option was set to On Gesture
* Fixed an issue where a fatal error was thrown after shipping method selection in PayPal Express Checkout
* Fixed an issue with parameters exceptions in SOAP response
* Fixed an issue where testGetRequestTokenOauthTimestampRefused unit test failed in certain cases
* Fixed an issue where TestCreateCustomer test thrown fatal error when making a SOAP request
* Fixed an issue with required parameters in WSDL
* Fixed an issue where Customer Account Service returned void response in the resetPassword method
* Fixed an issue where REST API failed during bundle product creation

0.1.0-alpha97
=============
* Various 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.4.11|~5.5.0",
"magento/module-store": "0.1.0-alpha97",
"magento/module-core": "0.1.0-alpha97",
"magento/module-backend": "0.1.0-alpha97",
"magento/framework": "0.1.0-alpha97",
"magento/module-store": "0.1.0-alpha98",
"magento/module-core": "0.1.0-alpha98",
"magento/module-backend": "0.1.0-alpha98",
"magento/framework": "0.1.0-alpha98",
"lib-libxml": "*",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.1.0-alpha97",
"version": "0.1.0-alpha98",
"extra": {
"map": [
[
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.4.11|~5.5.0",
"magento/module-backend": "0.1.0-alpha97",
"magento/framework": "0.1.0-alpha97",
"magento/module-backend": "0.1.0-alpha98",
"magento/framework": "0.1.0-alpha98",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.1.0-alpha97",
"version": "0.1.0-alpha98",
"extra": {
"map": [
[
Expand Down
18 changes: 9 additions & 9 deletions app/code/Magento/Authorizenet/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
"description": "N/A",
"require": {
"php": "~5.4.11|~5.5.0",
"magento/module-sales": "0.1.0-alpha97",
"magento/module-checkout": "0.1.0-alpha97",
"magento/module-backend": "0.1.0-alpha97",
"magento/module-core": "0.1.0-alpha97",
"magento/module-payment": "0.1.0-alpha97",
"magento/module-centinel": "0.1.0-alpha97",
"magento/module-catalog": "0.1.0-alpha97",
"magento/framework": "0.1.0-alpha97",
"magento/module-sales": "0.1.0-alpha98",
"magento/module-checkout": "0.1.0-alpha98",
"magento/module-backend": "0.1.0-alpha98",
"magento/module-core": "0.1.0-alpha98",
"magento/module-payment": "0.1.0-alpha98",
"magento/module-centinel": "0.1.0-alpha98",
"magento/module-catalog": "0.1.0-alpha98",
"magento/framework": "0.1.0-alpha98",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.1.0-alpha97",
"version": "0.1.0-alpha98",
"extra": {
"map": [
[
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.4.11|~5.5.0",
"magento/module-store": "0.1.0-alpha97",
"magento/module-directory": "0.1.0-alpha97",
"magento/module-core": "0.1.0-alpha97",
"magento/module-eav": "0.1.0-alpha97",
"magento/module-cron": "0.1.0-alpha97",
"magento/module-theme": "0.1.0-alpha97",
"magento/module-reports": "0.1.0-alpha97",
"magento/module-catalog-search": "0.1.0-alpha97",
"magento/module-sales": "0.1.0-alpha97",
"magento/module-catalog": "0.1.0-alpha97",
"magento/module-user": "0.1.0-alpha97",
"magento/module-backup": "0.1.0-alpha97",
"magento/module-email": "0.1.0-alpha97",
"magento/module-customer": "0.1.0-alpha97",
"magento/module-translation": "0.1.0-alpha97",
"magento/module-require-js": "0.1.0-alpha97",
"magento/framework": "0.1.0-alpha97",
"magento/module-store": "0.1.0-alpha98",
"magento/module-directory": "0.1.0-alpha98",
"magento/module-core": "0.1.0-alpha98",
"magento/module-eav": "0.1.0-alpha98",
"magento/module-cron": "0.1.0-alpha98",
"magento/module-theme": "0.1.0-alpha98",
"magento/module-reports": "0.1.0-alpha98",
"magento/module-catalog-search": "0.1.0-alpha98",
"magento/module-sales": "0.1.0-alpha98",
"magento/module-catalog": "0.1.0-alpha98",
"magento/module-user": "0.1.0-alpha98",
"magento/module-backup": "0.1.0-alpha98",
"magento/module-email": "0.1.0-alpha98",
"magento/module-customer": "0.1.0-alpha98",
"magento/module-translation": "0.1.0-alpha98",
"magento/module-require-js": "0.1.0-alpha98",
"magento/framework": "0.1.0-alpha98",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.1.0-alpha97",
"version": "0.1.0-alpha98",
"extra": {
"map": [
[
Expand Down
12 changes: 6 additions & 6 deletions app/code/Magento/Backup/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
"description": "N/A",
"require": {
"php": "~5.4.11|~5.5.0",
"magento/module-store": "0.1.0-alpha97",
"magento/module-core": "0.1.0-alpha97",
"magento/module-backend": "0.1.0-alpha97",
"magento/module-cron": "0.1.0-alpha97",
"magento/framework": "0.1.0-alpha97",
"magento/module-store": "0.1.0-alpha98",
"magento/module-core": "0.1.0-alpha98",
"magento/module-backend": "0.1.0-alpha98",
"magento/module-cron": "0.1.0-alpha98",
"magento/framework": "0.1.0-alpha98",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.1.0-alpha97",
"version": "0.1.0-alpha98",
"extra": {
"map": [
[
Expand Down
30 changes: 15 additions & 15 deletions app/code/Magento/Bundle/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@
"description": "N/A",
"require": {
"php": "~5.4.11|~5.5.0",
"magento/module-store": "0.1.0-alpha97",
"magento/module-catalog": "0.1.0-alpha97",
"magento/module-tax": "0.1.0-alpha97",
"magento/module-core": "0.1.0-alpha97",
"magento/module-backend": "0.1.0-alpha97",
"magento/module-sales": "0.1.0-alpha97",
"magento/module-checkout": "0.1.0-alpha97",
"magento/module-catalog-inventory": "0.1.0-alpha97",
"magento/module-customer": "0.1.0-alpha97",
"magento/module-catalog-rule": "0.1.0-alpha97",
"magento/module-eav": "0.1.0-alpha97",
"magento/module-gift-message": "0.1.0-alpha97",
"magento/framework": "0.1.0-alpha97",
"magento/module-webapi": "0.1.0-alpha97",
"magento/module-store": "0.1.0-alpha98",
"magento/module-catalog": "0.1.0-alpha98",
"magento/module-tax": "0.1.0-alpha98",
"magento/module-core": "0.1.0-alpha98",
"magento/module-backend": "0.1.0-alpha98",
"magento/module-sales": "0.1.0-alpha98",
"magento/module-checkout": "0.1.0-alpha98",
"magento/module-catalog-inventory": "0.1.0-alpha98",
"magento/module-customer": "0.1.0-alpha98",
"magento/module-catalog-rule": "0.1.0-alpha98",
"magento/module-eav": "0.1.0-alpha98",
"magento/module-gift-message": "0.1.0-alpha98",
"magento/framework": "0.1.0-alpha98",
"magento/module-webapi": "0.1.0-alpha98",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.1.0-alpha97",
"version": "0.1.0-alpha98",
"extra": {
"map": [
[
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.4.11|~5.5.0",
"magento/module-store": "0.1.0-alpha97",
"magento/module-customer": "0.1.0-alpha97",
"magento/module-checkout": "0.1.0-alpha97",
"magento/module-core": "0.1.0-alpha97",
"magento/module-backend": "0.1.0-alpha97",
"magento/framework": "0.1.0-alpha97",
"magento/module-store": "0.1.0-alpha98",
"magento/module-customer": "0.1.0-alpha98",
"magento/module-checkout": "0.1.0-alpha98",
"magento/module-core": "0.1.0-alpha98",
"magento/module-backend": "0.1.0-alpha98",
"magento/framework": "0.1.0-alpha98",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.1.0-alpha97",
"version": "0.1.0-alpha98",
"extra": {
"map": [
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ public function setProductToCategory($categoryId, ProductLink $productLink, $isI
$category->save();
} catch (\Exception $e) {
throw new CouldNotSaveException(
'Could not save product "%1" with position %2 to category %3',
'Could not save product "%product_id" with position %position to category %category_id',
[
$productId,
$productLink->getPosition(),
$categoryId,
'product_id' => $productId,
'position' => $productLink->getPosition(),
'category_id' => $categoryId
],
$e
);
Expand Down Expand Up @@ -137,10 +137,10 @@ public function removeProduct($categoryId, $productSku)
$category->save();
} catch (\Exception $e) {
throw new CouldNotSaveException(
'Could not remove product "%1" from category with ID "%2"',
'Could not remove product "%product_sku" from category with ID "%category_id"',
[
$productSku,
$categoryId,
'product_sku' => $productSku,
'category_id' => $categoryId,
],
$e
);
Expand Down
4 changes: 2 additions & 2 deletions app/code/Magento/Catalog/Service/V1/Category/WriteService.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function create(CategoryDataObject $category)
$this->validateCategory($categoryModel);
$categoryModel->save();
} catch (\Exception $e) {
throw new CouldNotSaveException('Could not save category: %1', [$e->getMessage()], $e);
throw new CouldNotSaveException('Could not save category: %message', ['message' => $e->getMessage()], $e);
}
return $categoryModel->getId();
}
Expand All @@ -105,7 +105,7 @@ public function delete($categoryId)
try {
$category->delete();
} catch (\Exception $e) {
throw new StateException('Cannot delete category with id %1', [$categoryId], $e);
throw new StateException('Cannot delete category with id %category_id', ['category_id' => $categoryId], $e);
}

return true;
Expand Down
48 changes: 24 additions & 24 deletions app/code/Magento/Catalog/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,33 @@
"description": "N/A",
"require": {
"php": "~5.4.11|~5.5.0",
"magento/module-store": "0.1.0-alpha97",
"magento/module-eav": "0.1.0-alpha97",
"magento/module-cms": "0.1.0-alpha97",
"magento/module-indexer": "0.1.0-alpha97",
"magento/module-customer": "0.1.0-alpha97",
"magento/module-core": "0.1.0-alpha97",
"magento/module-theme": "0.1.0-alpha97",
"magento/module-checkout": "0.1.0-alpha97",
"magento/module-log": "0.1.0-alpha97",
"magento/module-backend": "0.1.0-alpha97",
"magento/module-widget": "0.1.0-alpha97",
"magento/module-wishlist": "0.1.0-alpha97",
"magento/module-tax": "0.1.0-alpha97",
"magento/module-msrp": "0.1.0-alpha97",
"magento/module-catalog-inventory": "0.1.0-alpha97",
"magento/module-directory": "0.1.0-alpha97",
"magento/module-catalog-rule": "0.1.0-alpha97",
"magento/module-sales": "0.1.0-alpha97",
"magento/module-catalog-search": "0.1.0-alpha97",
"magento/module-product-alert": "0.1.0-alpha97",
"magento/module-url-rewrite": "0.1.0-alpha97",
"magento/module-catalog-url-rewrite": "0.1.0-alpha97",
"magento/framework": "0.1.0-alpha97",
"magento/module-store": "0.1.0-alpha98",
"magento/module-eav": "0.1.0-alpha98",
"magento/module-cms": "0.1.0-alpha98",
"magento/module-indexer": "0.1.0-alpha98",
"magento/module-customer": "0.1.0-alpha98",
"magento/module-core": "0.1.0-alpha98",
"magento/module-theme": "0.1.0-alpha98",
"magento/module-checkout": "0.1.0-alpha98",
"magento/module-log": "0.1.0-alpha98",
"magento/module-backend": "0.1.0-alpha98",
"magento/module-widget": "0.1.0-alpha98",
"magento/module-wishlist": "0.1.0-alpha98",
"magento/module-tax": "0.1.0-alpha98",
"magento/module-msrp": "0.1.0-alpha98",
"magento/module-catalog-inventory": "0.1.0-alpha98",
"magento/module-directory": "0.1.0-alpha98",
"magento/module-catalog-rule": "0.1.0-alpha98",
"magento/module-sales": "0.1.0-alpha98",
"magento/module-catalog-search": "0.1.0-alpha98",
"magento/module-product-alert": "0.1.0-alpha98",
"magento/module-url-rewrite": "0.1.0-alpha98",
"magento/module-catalog-url-rewrite": "0.1.0-alpha98",
"magento/framework": "0.1.0-alpha98",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.1.0-alpha97",
"version": "0.1.0-alpha98",
"extra": {
"map": [
[
Expand Down
20 changes: 10 additions & 10 deletions app/code/Magento/CatalogImportExport/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
"description": "N/A",
"require": {
"php": "~5.4.11|~5.5.0",
"magento/module-core": "0.1.0-alpha97",
"magento/module-catalog": "0.1.0-alpha97",
"magento/module-eav": "0.1.0-alpha97",
"magento/module-import-export": "0.1.0-alpha97",
"magento/module-indexer": "0.1.0-alpha97",
"magento/module-store": "0.1.0-alpha97",
"magento/module-catalog-inventory": "0.1.0-alpha97",
"magento/module-customer": "0.1.0-alpha97",
"magento/framework": "0.1.0-alpha97",
"magento/module-core": "0.1.0-alpha98",
"magento/module-catalog": "0.1.0-alpha98",
"magento/module-eav": "0.1.0-alpha98",
"magento/module-import-export": "0.1.0-alpha98",
"magento/module-indexer": "0.1.0-alpha98",
"magento/module-store": "0.1.0-alpha98",
"magento/module-catalog-inventory": "0.1.0-alpha98",
"magento/module-customer": "0.1.0-alpha98",
"magento/framework": "0.1.0-alpha98",
"ext-ctype": "*",
"magento/magento-composer-installer": "*"
},
"type": "magento2-module",
"version": "0.1.0-alpha97",
"version": "0.1.0-alpha98",
"extra": {
"map": [
[
Expand Down
Loading

0 comments on commit 9abf9a6

Please sign in to comment.