Skip to content

Commit 8dee86c

Browse files
committed
build 0.23.225
1 parent 1f330f4 commit 8dee86c

File tree

4 files changed

+52
-7
lines changed

4 files changed

+52
-7
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,32 @@ Changelog
1919
* 0.10.x: PhpStorm 7 (no support)
2020
* 0.9.x: PhpStorm 6 (no support)
2121

22+
## 0.23.225 / 2022.1.225
23+
* [#567](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/567) support Twig blocks in search everywhere (Daniel Espendiller)
24+
* Underscore should be the preferred template creation quickfix (Daniel Espendiller)
25+
* Index usages of twig files inside "Template" php attribute (Daniel Espendiller)
26+
* Support global naming for twig method resolving (Daniel Espendiller)
27+
* [#1541](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1541) provide linemarker to run Symfony command via internal console terminal (Daniel Espendiller)
28+
* [#1285](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1285) migrate template file annotator to inspection and support php attributes (Daniel Espendiller)
29+
* [#1548](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1548) optimize inspection for notify missing extends/implements tags instances: support multiple tag classes, allow service id be a classes (Daniel Espendiller)
30+
* [#1536](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1536) [#1020](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1020) support manifest.json inside assets (Daniel Espendiller)
31+
* [#1233](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1233) provide plugin error submitter (Daniel Espendiller)
32+
* Replace direct method name for template recognition with a simple "contains" pattern. valid: "template" and "render" (Daniel Espendiller)
33+
* [#1509](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1509) catch xlf parser exception (Daniel Espendiller)
34+
* [#1684](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1684) description for compiled routes (Daniel Espendiller)
35+
* [#1736](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1736) change default for public files (Daniel Espendiller)
36+
* [#1736](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1736) change default for compiled translation class to catch more modern structures (Daniel Espendiller)
37+
* [#1366](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366) mark classed used if its tagged via "kernel.event_listener" server defintion (Daniel Espendiller)
38+
* [#1366](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366) mark Constraint classes used if validator class for it was found (Daniel Espendiller)
39+
* [#1366](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366) mark EntityRepository classes as used code, if any metadata exists with them (Daniel Espendiller)
40+
* [#1366](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366) mark TwigExtension classes as used code, if any implementation exists (Daniel Espendiller)
41+
* [#1366](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366) mark registered voter class as used code (Daniel Espendiller)
42+
* [#1366](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366) mark public method callbacks inside getSubscribedEvents as used code (Daniel Espendiller)
43+
* [#1366](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366) mark command class register as service as used code (Daniel Espendiller)
44+
* [#1366](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366) mark controller and its action as "used" code (Daniel Espendiller)
45+
* Fix support resolving controller methods ending with "Action" (Daniel Espendiller)
46+
* Routes can be cached based on index and compiled files (Daniel Espendiller)
47+
2248
## 0.23.224 / 2022.1.224
2349
* Prefix missing parameter inspection with "Symfony" (Daniel Espendiller)
2450
* Prevent duplicate complete for already known path / url twig lookup elements (Daniel Espendiller)

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pluginGroup = fr.adrienbrault.idea.symfony2plugin
55
pluginName = Symfony Plugin
66

77
# SemVer format -> https://semver.org
8-
pluginVersion = 0.23.224
8+
pluginVersion = 0.23.225
99

1010
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1111
# for insight into build numbers and IntelliJ Platform versions.
Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,28 @@
11
<html>
22
<ul>
3-
<li>Prefix missing parameter inspection with "Symfony" (Daniel Espendiller)</li>
4-
<li>Prevent duplicate complete for already known path / url twig lookup elements (Daniel Espendiller)</li>
5-
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1890">#1890</a> pipe also the fake php file to completion proxying for php (Daniel Espendiller)</li>
6-
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1893">#1893</a> workaround in wrongly implemented attributes handling; catch errors and check for direct attribute value via string (Daniel Espendiller)</li>
7-
<li>Use central container parameter naming as its now highly optimized (Daniel Espendiller)</li>
3+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/567">#567</a> support Twig blocks in search everywhere (Daniel Espendiller)</li>
4+
<li>Underscore should be the preferred template creation quickfix (Daniel Espendiller)</li>
5+
<li>Index usages of twig files inside "Template" php attribute (Daniel Espendiller)</li>
6+
<li>Support global naming for twig method resolving (Daniel Espendiller)</li>
7+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1541">#1541</a> provide linemarker to run Symfony command via internal console terminal (Daniel Espendiller)</li>
8+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1285">#1285</a> migrate template file annotator to inspection and support php attributes (Daniel Espendiller)</li>
9+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1548">#1548</a> optimize inspection for notify missing extends/implements tags instances: support multiple tag classes, allow service id be a classes (Daniel Espendiller)</li>
10+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1536">#1536</a> <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1020">#1020</a> support manifest.json inside assets (Daniel Espendiller)</li>
11+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1233">#1233</a> provide plugin error submitter (Daniel Espendiller)</li>
12+
<li>Replace direct method name for template recognition with a simple "contains" pattern. valid: "template" and "render" (Daniel Espendiller)</li>
13+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1509">#1509</a> catch xlf parser exception (Daniel Espendiller)</li>
14+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1684">#1684</a> description for compiled routes (Daniel Espendiller)</li>
15+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1736">#1736</a> change default for public files (Daniel Espendiller)</li>
16+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1736">#1736</a> change default for compiled translation class to catch more modern structures (Daniel Espendiller)</li>
17+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366">#1366</a> mark classed used if its tagged via "kernel.event_listener" server defintion (Daniel Espendiller)</li>
18+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366">#1366</a> mark Constraint classes used if validator class for it was found (Daniel Espendiller)</li>
19+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366">#1366</a> mark EntityRepository classes as used code, if any metadata exists with them (Daniel Espendiller)</li>
20+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366">#1366</a> mark TwigExtension classes as used code, if any implementation exists (Daniel Espendiller)</li>
21+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366">#1366</a> mark registered voter class as used code (Daniel Espendiller)</li>
22+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366">#1366</a> mark public method callbacks inside getSubscribedEvents as used code (Daniel Espendiller)</li>
23+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366">#1366</a> mark command class register as service as used code (Daniel Espendiller)</li>
24+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1366">#1366</a> mark controller and its action as "used" code (Daniel Espendiller)</li>
25+
<li>Fix support resolving controller methods ending with "Action" (Daniel Espendiller)</li>
26+
<li>Routes can be cached based on index and compiled files (Daniel Espendiller)</li>
827
</ul>
928
</html>

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 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 Support</name>
4-
<version>0.23.224</version>
4+
<version>0.23.225</version>
55
<vendor email="daniel@espendiller.net" url="http://espend.de?p=fr.adrienbrault.idea.symfony2plugin">espend_de</vendor>
66

77
<description><![CDATA[

0 commit comments

Comments
 (0)