8000 build plugin.xml · Koc/idea-php-symfony2-plugin@4db5d36 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4db5d36

Browse files
committed
build plugin.xml
1 parent ad61e1b commit 4db5d36

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,19 @@ Changelog
99
* 0.10.x: PhpStorm 7 (no support)
1010
* 0.9.x: PhpStorm 6 (no support)
1111

12+
## 0.14.149
13+
* Detect Twig templates when using `__invoke` controllers [#980](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/980); drop some redundant template annotation code
14+
* Add @Template __invoke support for annotation template creation quickfix and in Twig template controller resolver [#980](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/980)
15+
* Fix "Navigate to action" on controller with __invoke doesn't work [#986](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/986)
16+
* Create template for missing template is really weird [#795](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/795); replace custom dialog with more commonly JBPopupFactory
17+
* Provide better scope detection for Service Generator, add psr-0 class structure detection fixes: "Create Service" in project tree does nothing [#978](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/978)
18+
* Add lazy decorated service resolving to fix Argument 'decorated' of ServiceUtil.getLineMarkerForDecoratedServiceId must not be null [#982](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/982)
19+
* Add calls support for service usage indexer [#890](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/890)
20+
* Add support for Twig 2 hassers for the attribute operator [#964](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/964)
21+
* Add class completion for yaml service key to support Symfony 3.3 shortcut feature [#987](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/987)
22+
* Fix empty string indexing of Doctrine repository class; "THashSet contract violation - 25 reports & coming" [#985](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/985)
23+
* Use slash for controller subfolder which are PHP namespaces instead of filesystem style to fix autocompletion for controller names in routing files is broken for namespaced classes [#961](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/961)
24+
1225
## 0.14.148
1326
* Symfony 3.3 Fully support autowire in defaults of XML [#966](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/966)
1427
* Symfony 3.3 Arguments are not autocompleted when using the FQCN as id [#968](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/968) [#966](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/966)

META-INF/plugin.xml

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

77
<description><![CDATA[
@@ -109,6 +109,21 @@
109109
110110
<br/>
111111
112+
<h2>0.14.149</h2>
113+
<ul>
114+
<li>Detect Twig templates when using `__invoke` controllers <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/980">#980</a>; drop some redundant template annotation code</li>
115+
<li>Add @Template __invoke support for annotation template creation quickfix and in Twig template controller resolver <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/980">#980</a></li>
116+
<li>Fix "Navigate to action" on controller with __invoke doesn't work <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/986">#986</a></li>
117+
<li>Create template for missing template is really weird <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/795">#795</a>; replace custom dialog with more commonly JBPopupFactory</li>
118+
<li>Provide better scope detection for Service Generator, add psr-0 class structure detection fixes: "Create Service" in project tree does nothing <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/978">#978</a></li>
119+
<li>Add lazy decorated service resolving to fix Argument 'decorated' of ServiceUtil.getLineMarkerForDecoratedServiceId must not be null <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/982">#982</a></li>
120+
<li>Add calls support for service usage indexer <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/890">#890</a></li>
121+
<li>Add support for Twig 2 hassers for the attribute operator <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/964">#964</a></li>
122+
<li>Add class completion for yaml service key to support Symfony 3.3 shortcut feature <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/987">#987</a></li>
123+
<li>Fix empty string indexing of Doctrine repository class; "THashSet contract violation - 25 reports & coming" <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/985">#985</a></li>
124+
<li>Use slash for controller subfolder which are PHP namespaces instead of filesystem style to fix autocompletion for controller names in routing files is broken for namespaced classes <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/961">#961</a></li>
125+
</ul>
126+
112127
<h2>0.14.148</h2>
113128
<ul>
114129
<li>Symfony 3.3 Fully support autowire in defaults of XML <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/966">#966</a></li>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Install
1818
Version
1919
---------------------
2020

21-
* This plugins supports Symfony 2, 3, ... and hopefully all future ones
21+
* This plugin supports Symfony 2, 3, ... and hopefully all future ones
2222

2323
Documentation and tutorials
2424
---------------------

0 commit comments

Comments
 (0)
0