Skip to content

Commit 04fb965

Browse files
author
Stanislav Idolov
authored
🔃 [EngCom] Public Pull Requests - 2.3-develop
Accepted Public Pull Requests: - #17117: [Forwardport] [BUGFIX] Added row_id to the flat action indexer so the value isn't s� (by @chirag-wagento) - #16856: [Forwardport] Fixed widget template rendering issue while rewriting widget block. (by @gelanivishal) - #17251: Forwardport 2.3 Maintenance: Compare products. Add unit test coverage & missed class property declaration. (by @swnsma) - #17268: [fix] license in composer (by @mhauri) - #17261: [Forwardport] #16273: Fix bug in method getUrlInStore() of product model (by @mage2pratik) - #17210: [Forwardport] Issue 8131 - Use Redirect Factory to Allow Error Message Display on Advanced Search (by @torhoehn) - #17051: [Forwardport] removed _responsive.less import from gallery.less (by @torhoehn) Fixed GitHub Issues: - #16529: Rewriting product listing widget block breaks its template rendering. (reported by @sanganinamrata) has been fixed in #16856 by @gelanivishal in 2.3-develop branch Related commits: 1. b519270 2. 9197c68 - #17225: License should reflect OSL (reported by @fooman) has been fixed in #17268 by @mhauri in 2.3-develop branch Related commits: 1. 90134ae 2. 0d5cb1e - #16273: Method $product->getUrlInStore() returning extremely long URLs, could be a bug (reported by @adampmoss) has been fixed in #17261 by @mage2pratik in 2.3-develop branch Related commits: 1. d116454 2. 3a39a16 3. 16ae409 4. 4dc6aba - #8131: Magento 2.1.3 - There is a bug in advanced search form regarding validation messages (reported by @DarkLanternMG) has been fixed in #17210 by @torhoehn in 2.3-develop branch Related commits: 1. 369b7bc 2. 20a7124 3. a39c8e4
2 parents 275e63c + f45dabf commit 04fb965

File tree

43 files changed

+502
-58
lines changed

Some content is hidden

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

43 files changed

+502
-58
lines changed

app/code/Magento/AdvancedSearch/Test/Mftf/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
},
1818
"type": "magento2-test",
1919
"license": [
20-
"proprietary"
20+
"OSL-3.0",
21+
"AFL-3.0"
2122
]
2223
}

app/code/Magento/AdvancedSearch/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
},
1818
"type": "magento2-module",
1919
"license": [
20-
"proprietary"
20+
"OSL-3.0",
21+
"AFL-3.0"
2122
],
2223
"autoload": {
2324
"files": [

app/code/Magento/Amqp/Test/Mftf/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
},
1313
"type": "magento2-test",
1414
"license": [
15-
"proprietary"
15+
"OSL-3.0",
16+
"AFL-3.0"
1617
]
1718
}

app/code/Magento/Amqp/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
},
1313
"type": "magento2-module",
1414
"license": [
15-
"proprietary"
15+
"OSL-3.0",
16+
"AFL-3.0"
1617
],
1718
"autoload": {
1819
"files": [

app/code/Magento/AsynchronousOperations/Test/Mftf/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
},
2020
"type": "magento2-test",
2121
"license": [
22-
"proprietary"
22+
"OSL-3.0",
23+
"AFL-3.0"
2324
]
2425
}

app/code/Magento/AsynchronousOperations/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
},
2020
"type": "magento2-module",
2121
"license": [
22-
"proprietary"
22+
"OSL-3.0",
23+
"AFL-3.0"
2324
],
2425
"autoload": {
2526
"files": [

app/code/Magento/Authorizenet/Test/Mftf/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
},
2121
"type": "magento2-test",
2222
"license": [
23-
"proprietary"
23+
"OSL-3.0",
24+
"AFL-3.0"
2425
]
2526
}

app/code/Magento/Authorizenet/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
},
2121
"type": "magento2-module",
2222
"license": [
23-
"proprietary"
23+
"OSL-3.0",
24+
"AFL-3.0"
2425
],
2526
"autoload": {
2627
"files": [

app/code/Magento/Braintree/Test/Mftf/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
},
2929
"type": "magento2-test",
3030
"license": [
31-
"proprietary"
31+
"OSL-3.0",
32+
"AFL-3.0"
3233
]
3334
}

app/code/Magento/Braintree/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
},
3030
"type": "magento2-module",
3131
"license": [
32-
"proprietary"
32+
"OSL-3.0",
33+
"AFL-3.0"
3334
],
3435
"autoload": {
3536
"files": [

0 commit comments

Comments
 (0)