Skip to content

Commit 7940c46

Browse files
committed
Add version 2.0.9
1 parent 19191e6 commit 7940c46

File tree

35 files changed

+3450
-2378
lines changed

35 files changed

+3450
-2378
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
2.0.9
2+
=============
3+
To get detailed information about changes in Magento 2.0.9, please visit [Magento Community Edition (CE) Release Notes](http://devdocs.magento.com/guides/v2.0/release-notes/ReleaseNotes2.0.9CE.html "Magento Community Edition (CE) Release Notes")
4+
5+
2.0.8
6+
=============
7+
* Fixed bugs:
8+
* Fixed exception when merchant resets "Product Attributes mass update" Admin form.
9+
* Fixed fatal error in CLI command after compilation on some environments.
10+
* Fixed duplicate URL keys on creating configurable product.
11+
* Fixed issue with Magento sending emails from Admin using default configuration instead of a store-specific email address.
12+
* Fixed issue with delayed session messages.
13+
* GitHub requests:
14+
* [#3490](https://github.com/magento/magento2/pull/3490) -- Fix support for GLOB_BRACE on non-GNU Linux systems
15+
* [#3018](https://github.com/magento/magento2/issues/3018) -- Magento\Sales\Model\OrderRepository::getList() is incomplete
16+
117
2.0.7
218
=============
319
* GitHub requests:

app/etc/di.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
<preference for="Magento\Framework\Api\Search\SearchCriteriaInterface" type="Magento\Framework\Api\Search\SearchCriteria"/>
3434
<preference for="Magento\Framework\Api\Search\DocumentInterface" type="Magento\Framework\Api\Search\Document" />
3535
<preference for="Magento\Framework\Api\Search\AggregationInterface" type="Magento\Framework\Search\Response\Aggregation" />
36+
<preference for="Magento\Framework\App\RequestSafetyInterface" type="Magento\Framework\App\Request\Http" />
3637
<type name="Magento\Store\Model\Store">
3738
<arguments>
3839
<argument name="currencyInstalled" xsi:type="string">system/currency/installed</argument>
@@ -1081,4 +1082,15 @@
10811082
<argument name="fileResolver" xsi:type="object">Magento\Framework\Config\FileResolver</argument>
10821083
</arguments>
10831084
</type>
1085+
<type name="Magento\Framework\DataObject\IdentityInterface">
1086+
<plugin name="clean_cache" type="Magento\Framework\App\Cache\FlushCacheByTags" />
1087+
</type>
1088+
<type name="Magento\Framework\App\Cache\FlushCacheByTags">
1089+
<arguments>
1090+
<argument name="cacheList" xsi:type="array">
1091+
<item name="block_html" xsi:type="const">Magento\Framework\App\Cache\Type\Block::TYPE_IDENTIFIER</item>
1092+
<item name="collections" xsi:type="const">Magento\Framework\App\Cache\Type\Collection::TYPE_IDENTIFIER</item>
1093+
</argument>
1094+
</arguments>
1095+
</type>
10841096
</config>

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/project-community-edition",
33
"description": "eCommerce Platform for Growth (Community Edition)",
44
"type": "project",
5-
"version": "2.0.7",
5+
"version": "2.0.9",
66
"license": [
77
"OSL-3.0",
88
"AFL-3.0"
@@ -14,7 +14,7 @@
1414
}
1515
],
1616
"require": {
17-
"magento/product-community-edition": "2.0.7",
17+
"magento/product-community-edition": "2.0.9",
1818
"composer/composer": "@alpha"
1919
},
2020
"require-dev": {

0 commit comments

Comments
 (0)