Skip to content

Commit 55dd0c2

Browse files
author
mage2-team
committed
MC-22060: Magento 2.3.3-p1 Publication
1 parent 028f594 commit 55dd0c2

File tree

1,675 files changed

+11338
-5268
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,675 files changed

+11338
-5268
lines changed

app/code/Magento/AdminAnalytics/composer.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,24 @@
66
},
77
"require": {
88
"php": "~7.1.3||~7.2.0||~7.3.0",
9-
"magento/framework": "*",
10-
"magento/module-backend": "*",
11-
"magento/module-config": "*",
12-
"magento/module-ui": "*",
13-
"magento/module-release-notification": "*"
9+
"magento/framework": "102.0.*",
10+
"magento/module-backend": "101.0.*",
11+
"magento/module-config": "101.1.*",
12+
"magento/module-ui": "101.1.*",
13+
"magento/module-release-notification": "100.3.*"
1414
},
1515
"type": "magento2-module",
1616
"license": [
1717
"OSL-3.0",
1818
"AFL-3.0"
1919
],
2020
"autoload": {
21-
"files": [
22-
"registration.php"
23-
],
24-
"psr-4": {
25-
"Magento\\AdminAnalytics\\": ""
26-
}
27-
}
21+
"files": [
22+
"registration.php"
23+
],
24+
"psr-4": {
25+
"Magento\\AdminAnalytics\\": ""
26+
}
27+
},
28+
"version": "100.3.0"
2829
}
29-

app/code/Magento/AdminNotification/Block/System/Messages.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Messages extends \Magento\Backend\Block\Template
1616

1717
/**
1818
* @var \Magento\Framework\Json\Helper\Data
19-
* @deprecated
19+
* @deprecated 100.3.0
2020
*/
2121
protected $jsonHelper;
2222

app/code/Magento/AdminNotification/Controller/Adminhtml/System/Message/ListAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class ListAction extends \Magento\Backend\App\AbstractAction
1717

1818
/**
1919
* @var \Magento\Framework\Json\Helper\Data
20-
* @deprecated
20+
* @deprecated 100.3.0
2121
*/
2222
protected $jsonHelper;
2323

app/code/Magento/AdminNotification/composer.json

+8-7
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
"require": {
88
"php": "~7.1.3||~7.2.0||~7.3.0",
99
"lib-libxml": "*",
10-
"magento/framework": "*",
11-
"magento/module-backend": "*",
12-
"magento/module-media-storage": "*",
13-
"magento/module-store": "*",
14-
"magento/module-ui": "*",
15-
"magento/module-config": "*"
10+
"magento/framework": "102.0.*",
11+
"magento/module-backend": "101.0.*",
12+
"magento/module-media-storage": "100.3.*",
13+
"magento/module-store": "101.0.*",
14+
"magento/module-ui": "101.1.*",
15+
"magento/module-config": "101.1.*"
1616
},
1717
"type": "magento2-module",
1818
"license": [
@@ -26,5 +26,6 @@
2626
"psr-4": {
2727
"Magento\\AdminNotification\\": ""
2828
}
29-
}
29+
},
30+
"version": "100.3.3"
3031
}

app/code/Magento/AdvancedPricingImportExport/Model/Export/AdvancedPricing.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ private function prepareExportData(
384384
* @param array $exportData
385385
* @return array
386386
* @SuppressWarnings(PHPMD.UnusedLocalVariable)
387-
* @deprecated
387+
* @deprecated 100.3.0
388388
* @see prepareExportData
389389
*/
390390
protected function correctExportData($exportData)
@@ -513,7 +513,7 @@ private function fetchTierPrices(array $productIds): array
513513
* @return array|bool
514514
* @SuppressWarnings(PHPMD.NPathComplexity)
515515
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
516-
* @deprecated
516+
* @deprecated 100.3.0
517517
* @see fetchTierPrices
518518
*/
519519
protected function getTierPrices(array $listSku, $table)

app/code/Magento/AdvancedPricingImportExport/composer.json

+10-9
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
},
77
"require": {
88
"php": "~7.1.3||~7.2.0||~7.3.0",
9-
"magento/framework": "*",
10-
"magento/module-catalog": "*",
11-
"magento/module-catalog-import-export": "*",
12-
"magento/module-catalog-inventory": "*",
13-
"magento/module-customer": "*",
14-
"magento/module-eav": "*",
15-
"magento/module-import-export": "*",
16-
"magento/module-store": "*"
9+
"magento/framework": "102.0.*",
10+
"magento/module-catalog": "103.0.*",
11+
"magento/module-catalog-import-export": "101.0.*",
12+
"magento/module-catalog-inventory": "100.3.*",
13+
"magento/module-customer": "102.0.*",
14+
"magento/module-eav": "102.0.*",
15+
"magento/module-import-export": "100.3.*",
16+
"magento/module-store": "101.0.*"
1717
},
1818
"type": "magento2-module",
1919
"license": [
@@ -27,5 +27,6 @@
2727
"psr-4": {
2828
"Magento\\AdvancedPricingImportExport\\": ""
2929
}
30-
}
30+
},
31+
"version": "100.3.3"
3132
}

app/code/Magento/AdvancedSearch/Model/Client/ClientResolver.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class ClientResolver
1919
*
2020
* @var ScopeConfigInterface
2121
* @since 100.1.0
22-
* @deprecated since it is not used anymore
22+
* @deprecated 100.3.0 since it is not used anymore
2323
*/
2424
protected $scopeConfig;
2525

@@ -55,14 +55,14 @@ class ClientResolver
5555
*
5656
* @var string
5757
* @since 100.1.0
58-
* @deprecated since it is not used anymore
58+
* @deprecated 100.3.0 since it is not used anymore
5959
*/
6060
protected $path;
6161

6262
/**
6363
* Config Scope
6464
* @since 100.1.0
65-
* @deprecated since it is not used anymore
65+
* @deprecated 100.3.0 since it is not used anymore
6666
*/
6767
protected $scope;
6868

app/code/Magento/AdvancedSearch/composer.json

+10-9
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"sort-packages": true
66
},
77
"require": {
8-
"magento/framework": "*",
9-
"magento/module-backend": "*",
10-
"magento/module-catalog": "*",
11-
"magento/module-catalog-search": "*",
12-
"magento/module-config": "*",
13-
"magento/module-customer": "*",
14-
"magento/module-search": "*",
15-
"magento/module-store": "*",
8+
"magento/framework": "102.0.*",
9+
"magento/module-backend": "101.0.*",
10+
"magento/module-catalog": "103.0.*",
11+
"magento/module-catalog-search": "101.0.*",
12+
"magento/module-config": "101.1.*",
13+
"magento/module-customer": "102.0.*",
14+
"magento/module-search": "101.0.*",
15+
"magento/module-store": "101.0.*",
1616
"php": "~7.1.3||~7.2.0||~7.3.0"
1717
},
1818
"type": "magento2-module",
@@ -27,5 +27,6 @@
2727
"psr-4": {
2828
"Magento\\AdvancedSearch\\": ""
2929
}
30-
}
30+
},
31+
"version": "100.3.3"
3132
}

app/code/Magento/Amqp/composer.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"sort-packages": true
66
},
77
"require": {
8-
"magento/framework": "*",
9-
"magento/framework-amqp": "*",
10-
"magento/framework-message-queue": "*",
8+
"magento/framework": "102.0.*",
9+
"magento/framework-amqp": "100.3.*",
10+
"magento/framework-message-queue": "100.3.*",
1111
"php": "~7.1.3||~7.2.0||~7.3.0"
1212
},
1313
"type": "magento2-module",
@@ -22,5 +22,6 @@
2222
"psr-4": {
2323
"Magento\\Amqp\\": ""
2424
}
25-
}
25+
},
26+
"version": "100.3.3"
2627
}

app/code/Magento/AmqpStore/composer.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"sort-packages": true
66
},
77
"require": {
8-
"magento/framework": "*",
9-
"magento/framework-amqp": "*",
10-
"magento/module-store": "*",
8+
"magento/framework": "102.0.*",
9+
"magento/framework-amqp": "100.3.*",
10+
"magento/module-store": "101.0.*",
1111
"php": "~7.1.3||~7.2.0||~7.3.0"
1212
},
1313
"suggest": {
14-
"magento/module-asynchronous-operations": "*",
15-
"magento/framework-message-queue": "*"
14+
"magento/module-asynchronous-operations": "100.3.*",
15+
"magento/framework-message-queue": "100.3.*"
1616
},
1717
"type": "magento2-module",
1818
"license": [
@@ -26,5 +26,6 @@
2626
"psr-4": {
2727
"Magento\\AmqpStore\\": ""
2828
}
29-
}
29+
},
30+
"version": "100.3.0"
3031
}

app/code/Magento/Analytics/Model/Connector/Http/ConverterInterface.php

+5
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,35 @@
99
* Represents converter interface for http request and response body.
1010
*
1111
* @api
12+
* @since 100.2.0
1213
*/
1314
interface ConverterInterface
1415
{
1516
/**
1617
* @param string $body
1718
*
1819
* @return array
20+
* @since 100.2.0
1921
*/
2022
public function fromBody($body);
2123

2224
/**
2325
* @param array $data
2426
*
2527
* @return string
28+
* @since 100.2.0
2629
*/
2730
public function toBody(array $data);
2831

2932
/**
3033
* @return string
34+
* @since 100.2.0
3135
*/
3236
public function getContentTypeHeader();
3337

3438
/**
3539
* @return string
40+
* @since 100.3.0
3641
*/
3742
public function getContentMediaType(): string;
3843
}

app/code/Magento/Analytics/ReportXml/Query.php

-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ public function getConfig()
8181
* @link http://php.net/manual/en/jsonserializable.jsonserialize.php
8282
* @return mixed data which can be serialized by <b>json_encode</b>,
8383
* which is a value of any type other than a resource.
84-
* @since 5.4.0
8584
*/
8685
public function jsonSerialize()
8786
{

app/code/Magento/Analytics/composer.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"description": "N/A",
44
"require": {
55
"php": "~7.1.3||~7.2.0||~7.3.0",
6-
"magento/module-backend": "*",
7-
"magento/module-config": "*",
8-
"magento/module-integration": "*",
9-
"magento/module-store": "*",
10-
"magento/framework": "*"
6+
"magento/module-backend": "101.0.*",
7+
"magento/module-config": "101.1.*",
8+
"magento/module-integration": "100.3.*",
9+
"magento/module-store": "101.0.*",
10+
"magento/framework": "102.0.*"
1111
},
1212
"type": "magento2-module",
1313
"license": [
@@ -21,5 +21,6 @@
2121
"psr-4": {
2222
"Magento\\Analytics\\": ""
2323
}
24-
}
24+
},
25+
"version": "100.3.3"
2526
}

app/code/Magento/AsynchronousOperations/Api/BulkStatusInterface.php

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* Bulk summary data with list of operations items short data.
1515
*
1616
* @api
17+
* @since 100.2.3
1718
*/
1819
interface BulkStatusInterface extends \Magento\Framework\Bulk\BulkStatusInterface
1920
{
@@ -23,6 +24,7 @@ interface BulkStatusInterface extends \Magento\Framework\Bulk\BulkStatusInterfac
2324
* @param string $bulkUuid
2425
* @return \Magento\AsynchronousOperations\Api\Data\DetailedBulkOperationsStatusInterface
2526
* @throws \Magento\Framework\Exception\NoSuchEntityException
27+
* @since 100.2.3
2628
*/
2729
public function getBulkDetailedStatus($bulkUuid);
2830

@@ -32,6 +34,7 @@ public function getBulkDetailedStatus($bulkUuid);
3234
* @param string $bulkUuid
3335
* @return \Magento\AsynchronousOperations\Api\Data\BulkOperationsStatusInterface
3436
* @throws \Magento\Framework\Exception\NoSuchEntityException
37+
* @since 100.2.3
3538
*/
3639
public function getBulkShortStatus($bulkUuid);
3740
}

0 commit comments

Comments
 (0)