Skip to content

Commit cf6ae36

Browse files
committedJul 4, 2014
2.0.0.0-dev85
* Service layer updates: * Implemented API for the CatalogInventory module * Refactored the external usages of the CatalogInventory module to service * Fixed bugs: * Fixed an issue where a coupon usage option was not comprehensible enough * Fixed an issue where products selection for adding to a bundle option was lost when switching between pages with product grids * Fixed an issue where Google Content was not sending the correct 'description' attribute * Fixed an issue where custom attributes were not displayed in layered navigation after a product import * Fixed an issue where the Category URL keys did not work correctly after saving * Fixed an issue where an admin could not create a Target rule with a certain Products to Display condition * Fixed a jQuery error on a product page in the Admin panel, which appeared when switching between product tabs * Framework Improvements: * Created ProductsCustomOptions Service API for Catalog module * Created DownloadableLink Service API for Catalog module * GitHub requests: * [#257] JSON loading should follow OWASP recommendation
1 parent 974d259 commit cf6ae36

File tree

298 files changed

+14124
-2535
lines changed

Some content is hidden

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

298 files changed

+14124
-2535
lines changed
 

‎CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2.0.0.0-dev85
2+
=============
3+
* Service layer updates:
4+
* Implemented API for the CatalogInventory module
5+
* Refactored the external usages of the CatalogInventory module to service
6+
* Fixed bugs:
7+
* Fixed an issue where a coupon usage option was not comprehensible enough
8+
* Fixed an issue where products selection for adding to a bundle option was lost when switching between pages with product grids
9+
* Fixed an issue where Google Content was not sending the correct 'description' attribute
10+
* Fixed an issue where custom attributes were not displayed in layered navigation after a product import
11+
* Fixed an issue where the Category URL keys did not work correctly after saving
12+
* Fixed an issue where an admin could not create a Target rule with a certain Products to Display condition
13+
* Fixed a jQuery error on a product page in the Admin panel, which appeared when switching between product tabs
14+
* Framework Improvements:
15+
* Created ProductsCustomOptions Service API for Catalog module
16+
* Created DownloadableLink Service API for Catalog module
17+
* GitHub requests:
18+
* [#257] JSON loading should follow OWASP recommendation
19+
120
2.0.0.0-dev84
221
=============
322
* Fixed bugs:

‎app/code/Magento/AdminNotification/Controller/Adminhtml/Notification.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public function ajaxMarkAsReadAction()
9595
} catch (\Exception $e) {
9696
$responseData['success'] = false;
9797
}
98-
$this->getResponse()->setBody(
98+
$this->getResponse()->representJson(
9999
$this->_objectManager->create('Magento\Core\Helper\Data')->jsonEncode($responseData)
100100
);
101101
}

0 commit comments

Comments
 (0)