Skip to content

Commit 1b44e32

Browse files
author
magento packaging service
committed
Version 1.2.7-p5
1 parent a01f910 commit 1b44e32

File tree

88 files changed

+804
-641
lines changed

Some content is hidden

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

88 files changed

+804
-641
lines changed

Inventory/composer.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
{
22
"name": "magento/module-inventory",
33
"description": "N/A",
4-
"require": {
5-
"php": "~8.1.0||~8.2.0||~8.3.0",
6-
"magento/framework": "*",
7-
"magento/module-inventory-api": "*"
8-
},
94
"type": "magento2-module",
105
"license": [
116
"OSL-3.0",
127
"AFL-3.0"
138
],
9+
"version": "1.2.5",
10+
"require": {
11+
"php": "~8.1.0||~8.2.0||~8.3.0",
12+
"magento/framework": "*",
13+
"magento/module-inventory-api": "1.2.*"
14+
},
1415
"autoload": {
1516
"files": [
1617
"registration.php"
@@ -20,3 +21,4 @@
2021
}
2122
}
2223
}
24+

InventoryAdminUi/Test/Mftf/Suite/InventoryMultiModeSuite.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<before>
1212
<comment userInput="BIC" stepKey="enableFlatRate" />
1313
<actionGroup ref="AdminDisableWYSIWYGActionGroup" stepKey="disableWYSYWYG"/>
14+
<actionGroup ref="AdminEnableGuestCheckoutActionGroup" stepKey="enableGuestCheckout"/>
1415
<magentoCLI command="config:set {{TurnOnManageStockConfig.path}} {{TurnOnManageStockConfig.value}}" stepKey="enableStockManagement"/>
1516
<actionGroup ref="CliIndexerReindexActionGroup" stepKey="reindex">
1617
<argument name="indices" value=""/>
@@ -29,6 +30,7 @@
2930
<after>
3031
<comment userInput="BIC" stepKey="disableFlatRate" />
3132
<actionGroup ref="AdminEnableWYSIWYGActionGroup" stepKey="enableWYSYWYG"/>
33+
<actionGroup ref="AdminDisableGuestCheckoutActionGroup" stepKey="disableGuestCheckout"/>
3234
<magentoCLI command="config:set {{TurnOffManageStockConfig.path}} {{TurnOffManageStockConfig.value}}" stepKey="disableStockManagement"/>
3335
<comment userInput="BIC" stepKey="reindex" />
3436
<comment userInput="BIC" stepKey="cleanCache" />

InventoryAdminUi/Test/Mftf/Suite/InventorySingleModeSuite.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<suite name="InventorySingleModeSuite">
1111
<before>
1212
<actionGroup ref="AdminDisableWYSIWYGActionGroup" stepKey="disableWYSYWYG"/>
13+
<actionGroup ref="AdminEnableGuestCheckoutActionGroup" stepKey="enableGuestCheckout"/>
1314
<magentoCLI command="config:set {{TurnOnManageStockConfig.path}} {{TurnOnManageStockConfig.value}}" stepKey="enableStockManagement"/>
1415
<actionGroup ref="CliIndexerReindexActionGroup" stepKey="reindex">
1516
<argument name="indices" value=""/>
@@ -27,6 +28,7 @@
2728
</exclude>
2829
<after>
2930
<actionGroup ref="AdminEnableWYSIWYGActionGroup" stepKey="enableWYSYWYG"/>
31+
<actionGroup ref="AdminDisableGuestCheckoutActionGroup" stepKey="disableGuestCheckout"/>
3032
<magentoCLI command="config:set {{TurnOffManageStockConfig.path}} {{TurnOffManageStockConfig.value}}" stepKey="disableStockManagement"/>
3133
<actionGroup ref="CliIndexerReindexActionGroup" stepKey="reindex">
3234
<argument name="indices" value=""/>

InventoryAdminUi/Test/Mftf/Test/GuestCustomerCreateOrderWithBundleProductSingleStockModeTest.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@
127127
<argument name="selector" value="AdminProductGridFilterSection.skuFilter"/>
128128
<argument name="value" value="$$simpleProduct.sku$$"/>
129129
</actionGroup>
130-
<see selector="{{AdminProductGridSection.quantity('1')}}" userInput="{{SimpleProduct.quantity}}" stepKey="checkSimpleProductSourceQtyAfterPlaceOrder"/>
131-
<see selector="{{AdminProductGridSection.productSalableQty('1',_defaultStock.name)}}" userInput="995" stepKey="checkSimpleProductSalableQtyAfterPlaceOrder"/>
130+
<waitForLoadingMaskToDisappear stepKey="waitForFilteredResult"/>
131+
<waitForText selector="{{AdminProductGridSection.quantity('1')}}" userInput="{{SimpleProduct.quantity}}" stepKey="checkSimpleProductSourceQtyAfterPlaceOrder"/>
132+
<waitForText selector="{{AdminProductGridSection.productSalableQty('1',_defaultStock.name)}}" userInput="995" stepKey="checkSimpleProductSalableQtyAfterPlaceOrder"/>
132133
</test>
133134
</tests>

InventoryAdminUi/composer.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
{
22
"name": "magento/module-inventory-admin-ui",
33
"description": "N/A",
4+
"type": "magento2-module",
5+
"license": [
6+
"OSL-3.0",
7+
"AFL-3.0"
8+
],
9+
"version": "1.2.5-p5",
410
"require": {
511
"php": "~8.1.0||~8.2.0||~8.3.0",
612
"magento/framework": "*",
7-
"magento/module-inventory": "*",
8-
"magento/module-inventory-api": "*",
9-
"magento/module-inventory-catalog-api": "*",
13+
"magento/module-inventory": "1.2.*",
14+
"magento/module-inventory-api": "1.2.*",
15+
"magento/module-inventory-catalog-api": "1.3.*",
1016
"magento/module-backend": "*",
1117
"magento/module-directory": "*",
1218
"magento/module-ui": "*"
1319
},
14-
"type": "magento2-module",
15-
"license": [
16-
"OSL-3.0",
17-
"AFL-3.0"
18-
],
1920
"autoload": {
2021
"files": [
2122
"registration.php"
@@ -25,3 +26,4 @@
2526
}
2627
}
2728
}
29+
Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
{
22
"name": "magento/module-inventory-advanced-checkout",
33
"description": "N/A",
4+
"type": "magento2-module",
5+
"license": [
6+
"OSL-3.0",
7+
"AFL-3.0"
8+
],
9+
"version": "1.2.4",
410
"require": {
511
"php": "~8.1.0||~8.2.0||~8.3.0",
612
"magento/framework": "*",
713
"magento/module-store": "*",
8-
"magento/module-inventory-catalog-api": "*",
9-
"magento/module-inventory-sales-api": "*"
14+
"magento/module-inventory-catalog-api": "1.3.*",
15+
"magento/module-inventory-sales-api": "1.2.*"
1016
},
1117
"suggest": {
1218
"magento/module-advanced-checkout": "*"
1319
},
14-
"type": "magento2-module",
15-
"license": [
16-
"OSL-3.0",
17-
"AFL-3.0"
18-
],
1920
"autoload": {
2021
"files": [
2122
"registration.php"
@@ -25,3 +26,4 @@
2526
}
2627
}
2728
}
29+

InventoryApi/composer.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
{
22
"name": "magento/module-inventory-api",
33
"description": "N/A",
4-
"require": {
5-
"php": "~8.1.0||~8.2.0||~8.3.0",
6-
"magento/framework": "*"
7-
},
84
"type": "magento2-module",
95
"license": [
106
"OSL-3.0",
117
"AFL-3.0"
128
],
9+
"version": "1.2.5",
10+
"require": {
11+
"php": "~8.1.0||~8.2.0||~8.3.0",
12+
"magento/framework": "*"
13+
},
1314
"autoload": {
1415
"files": [
1516
"registration.php"
@@ -19,3 +20,4 @@
1920
}
2021
}
2122
}
23+
Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
{
22
"name": "magento/module-inventory-bundle-import-export",
33
"description": "N/A",
4+
"type": "magento2-module",
5+
"license": [
6+
"OSL-3.0",
7+
"AFL-3.0"
8+
],
9+
"version": "1.1.3",
410
"require": {
511
"php": "~8.1.0||~8.2.0||~8.3.0",
612
"magento/framework": "*",
713
"magento/module-bundle-import-export": "*",
8-
"magento/module-inventory-catalog-api": "*",
14+
"magento/module-inventory-catalog-api": "1.3.*",
915
"magento/module-catalog-import-export": "*"
1016
},
11-
"type": "magento2-module",
12-
"license": [
13-
"OSL-3.0",
14-
"AFL-3.0"
15-
],
1617
"autoload": {
1718
"files": [
1819
"registration.php"
@@ -22,3 +23,4 @@
2223
}
2324
}
2425
}
26+
Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
{
22
"name": "magento/module-inventory-bundle-product",
33
"description": "N/A",
4+
"type": "magento2-module",
5+
"license": [
6+
"OSL-3.0",
7+
"AFL-3.0"
8+
],
9+
"version": "1.2.4",
410
"require": {
511
"php": "~8.1.0||~8.2.0||~8.3.0",
612
"magento/framework": "*",
713
"magento/module-bundle": "*",
814
"magento/module-catalog": "*",
9-
"magento/module-inventory-api": "*",
10-
"magento/module-inventory-catalog-api": "*",
11-
"magento/module-inventory-configuration-api": "*",
12-
"magento/module-inventory-sales-api": "*",
15+
"magento/module-inventory-api": "1.2.*",
16+
"magento/module-inventory-catalog-api": "1.3.*",
17+
"magento/module-inventory-configuration-api": "1.2.*",
18+
"magento/module-inventory-sales-api": "1.2.*",
1319
"magento/module-store": "*"
1420
},
1521
"suggest": {
1622
"magento/module-catalog-inventory": "*",
17-
"magento/module-inventory": "*"
23+
"magento/module-inventory": "1.2.*"
1824
},
19-
"type": "magento2-module",
20-
"license": [
21-
"OSL-3.0",
22-
"AFL-3.0"
23-
],
2425
"autoload": {
2526
"files": [
2627
"registration.php"
@@ -30,3 +31,4 @@
3031
}
3132
}
3233
}
34+
Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
{
22
"name": "magento/module-inventory-bundle-product-admin-ui",
33
"description": "N/A",
4+
"type": "magento2-module",
5+
"license": [
6+
"OSL-3.0",
7+
"AFL-3.0"
8+
],
9+
"version": "1.2.4",
410
"require": {
511
"php": "~8.1.0||~8.2.0||~8.3.0",
612
"magento/framework": "*",
713
"magento/module-bundle": "*",
814
"magento/module-catalog": "*",
915
"magento/module-ui": "*",
10-
"magento/module-inventory-catalog-api": "*",
11-
"magento/module-inventory-catalog-admin-ui": "*"
16+
"magento/module-inventory-catalog-api": "1.3.*",
17+
"magento/module-inventory-catalog-admin-ui": "1.2.*"
1218
},
1319
"suggest": {
14-
"magento/module-inventory-configuration-api": "*"
20+
"magento/module-inventory-configuration-api": "1.2.*"
1521
},
16-
"type": "magento2-module",
17-
"license": [
18-
"OSL-3.0",
19-
"AFL-3.0"
20-
],
2122
"autoload": {
2223
"files": [
2324
"registration.php"
@@ -27,3 +28,4 @@
2728
}
2829
}
2930
}
31+

0 commit comments

Comments
 (0)