Skip to content

Commit c753477

Browse files
Merge pull request #6801 from magento-engcom/api-changes-delivery
[EngCom] Api changes delivery
2 parents 04e674b + cdb3a17 commit c753477

File tree

326 files changed

+8476
-5266
lines changed

Some content is hidden

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

326 files changed

+8476
-5266
lines changed

app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ protected function _getConfigUrl()
101101
*/
102102
public function getIdentity()
103103
{
104+
// md5() here is not for cryptographic use.
105+
// phpcs:ignore Magento2.Security.InsecureFunction
104106
return md5('BASE_URL' . $this->_getConfigUrl());
105107
}
106108

app/code/Magento/AdminNotification/Model/System/Message/CacheOutdated.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ protected function _getCacheTypesForRefresh()
6262
*/
6363
public function getIdentity()
6464
{
65+
// md5() here is not for cryptographic use.
66+
// phpcs:ignore Magento2.Security.InsecureFunction
6567
return md5('cache' . implode(':', $this->_getCacheTypesForRefresh()));
6668
}
6769

app/code/Magento/AsynchronousOperations/Model/ResourceModel/System/Message/Collection/Synchronized/Plugin.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ public function afterToArray(
108108
'data' => [
109109
'text' => __('Task "%1": ', $bulk->getDescription()) . $text,
110110
'severity' => \Magento\Framework\Notification\MessageInterface::SEVERITY_MAJOR,
111+
// md5() here is not for cryptographic use.
112+
// phpcs:ignore Magento2.Security.InsecureFunction
111113
'identity' => md5('bulk' . $bulkUuid),
112114
'uuid' => $bulkUuid,
113115
'status' => $bulkStatus,

0 commit comments

Comments
 (0)