Skip to content

Commit 91dc9d7

Browse files
committed
build 0.10.74
1 parent a293ec0 commit 91dc9d7

File tree

2 files changed

+34
-4
lines changed

2 files changed

+34
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ Changelog
66
0.10.x: PhpStorm 7 (support until PhpStorm8 release)
77
0.9.x: PhpStorm 6 (no support)
88

9+
10+
### 0.10.74 / 0.11.74
11+
* Add button in Settings to clean up plugin related indexes
12+
* Add new isEnabledForIndex check, to not force a manually re-indexing for new projects after enabling plugin
13+
* Add references for array methods inside EventSubscriberInterface returns
14+
* Add completion for parameter in doctrine querybuilder "where" context
15+
* Add support for variadic functions on doctrine querybuilder selects #357
16+
* Our heart method "isCallTo" now supports classes and methods instance checks which are not unique in project
17+
* Cleanup quote wrapping in routes key names of yaml files
18+
* Fix npe in annotation template collector #358
19+
* Fix npe in yaml parameter completion #359
20+
* Fix npe in symbole search for non project context #268
21+
* Fix out of range case in getParameterDefinition #368
22+
923
### 0.10.73 / 0.11.73
1024
* Fix npe in container parameter completion #351
1125
* Add route requirements and options completion for yaml files

META-INF/plugin.xml

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin version="2" url="https://github.com/Haehnchen/idea-php-symfony2-plugin">
22
<id>fr.adrienbrault.idea.symfony2plugin</id>
33
<name>Symfony2 Plugin</name>
4-
<version>0.10.73</version>
4+
<version>0.10.74</version>
55
<vendor email="daniel@espendiller.net" url="http://espend.de">Daniel Espendiller</vendor>
66

77
<description><![CDATA[
@@ -84,8 +84,9 @@
8484
<h2>Related Plugins</h2>
8585
<ul>
8686
<li><a href="http://plugins.jetbrains.com/plugin/7320">PHP Annotations</a></li>
87-
<li><a href="http://plugins.jetbrains.com/plugin/7410">Shopware Plugin</a></li>
8887
<li><a href="http://plugins.jetbrains.com/plugin/7487">Drupal Symfony2 Bridge</a></li>
88+
<li><a href="http://plugins.jetbrains.com/plugin/7532">Laravel Plugin</a></li>
89+
<li><a href="http://plugins.jetbrains.com/plugin/7410">Shopware Plugin</a></li>
8990
</ul>
9091
9192
<h2><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/contributors">Contributors</a></h2>
@@ -97,12 +98,27 @@
9798

9899
<change-notes><![CDATA[
99100
100-
0.11.x: PhpStorm 8 (upcoming)<br>
101-
0.10.x: PhpStorm 7 (support until PhpStorm8 release)<br>
101+
0.11.x: PhpStorm 8<br>
102+
0.10.x: PhpStorm 7 (almost no support)<br>
102103
0.9.x: PhpStorm 6 (no support)<br>
103104
104105
<br>
105106
107+
<h2>0.10.74 / 0.11.74</h2>
108+
<ul>
109+
<li>Add button in Settings to clean up plugin related indexes</li>
110+
<li>Add new isEnabledForIndex check, to not force a manually re-indexing for new projects after enabling plugin</li>
111+
<li>Add references for array methods inside EventSubscriberInterface returns</li>
112+
<li>Add completion for parameter in doctrine querybuilder "where" context</li>
113+
<li>Add support for variadic functions on doctrine querybuilder selects <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/357">#357</a></li>
114+
<li>Our heart method "isCallTo" now supports classes and methods instance checks which are not unique in project</li>
115+
<li>Cleanup quote wrapping in routes key names of yaml files</li>
116+
<li>Fix npe in annotation template collector <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/358">#358</a></li>
117+
<li>Fix npe in yaml parameter completion <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/359">#359</a></li>
118+
<li>Fix npe in symbole search for non project context <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/268">#268</a></li>
119+
<li>Fix out of range case in getParameterDefinition <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/368">#368</a></li>
120+
</ul>
121+
106122
<h2>0.10.73 / 0.11.73</h2>
107123
<ul>
108124
<li>Fix npe in container parameter completion <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/351">#351</a></li>

0 commit comments

Comments
 (0)