Skip to content

Commit 2499455

Browse files
committed
build 0.23.228
1 parent 7950048 commit 2499455

File tree

4 files changed

+42
-7
lines changed

4 files changed

+42
-7
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,27 @@ Changelog
1919
* 0.10.x: PhpStorm 7 (no support)
2020
* 0.9.x: PhpStorm 6 (no support)
2121

22+
## 0.23.228 / 2022.1.228
23+
* Provide linemarker for route annotations imports (Daniel Espendiller)
24+
* Inspection for deprecated "controller" targets on route (Daniel Espendiller)
25+
* Support conditional enviroment for yaml file to index resources (Daniel Espendiller)
26+
* Add global resolving of resources (Daniel Espendiller)
27+
* Add "resources" outside of routing to index (Daniel Espendiller)
28+
* Add more (getReference, getClassMetadata, getPartialReference) Doctrine entity class constant completion (Daniel Espendiller)
29+
* Prioritize class constant parameter completion for Doctrine repository and form types (Daniel Espendiller)
30+
* Try to detect yaml translation files also on language pattern (Daniel Espendiller)
31+
* Twig form linemarker should only be triggered on smallest (leaf) elements (Daniel Espendiller)
32+
* PhpLineMarkerProvider linemarker should only be triggered on smallest (leaf) elements (Daniel Espendiller)
33+
* Constraint message property linemarker should only be triggered on smallest (leaf) elements (Daniel Espendiller)
34+
* Remove annotation linemarker as its also catched by resources linemarker now (Daniel Espendiller)
35+
* Extend resources / import index with context options (Daniel Espendiller)
36+
* [#1940](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1940) add translation support for TranslatableMessage class (Daniel Espendiller)
37+
* "+intl-icu" remove suffix from compiled translation domains (Daniel Espendiller)
38+
* Prevent empty translation domains (Daniel Espendiller)
39+
* Provide "glob" pattern extraction for string to provide a file scanner (Daniel Espendiller)
40+
* Support file and directory resolving for resources (Daniel Espendiller)
41+
* Fixed bad links to jetbrains plugin marketplace (Adrian Rudnik)
42+
2243
## 0.23.227 / 2022.1.227
2344
* Provide service class linemarker for prototype resource of xml files (Daniel Espendiller)
2445
* Support resource namespace navigation for xml prototype (Daniel Espendiller)

gradle.properties

+1-1
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.227
8+
pluginVersion = 0.23.228
99

1010
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1111
# for insight into build numbers and IntelliJ Platform versions.
+19-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
11
<html>
22
<ul>
3-
<li>Provide service class linemarker for prototype resource of xml files (Daniel Espendiller)</li>
4-
<li>Support resource namespace navigation for xml prototype (Daniel Espendiller)</li>
5-
<li>Support latest command name extraction logic also in search everywhere (Daniel Espendiller)</li>
6-
<li>Provide navigation for "resource" and "exclude" of yaml files (Daniel Espendiller)</li>
7-
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1541">#1541</a> fix supporting "asCommand" name as default value (Daniel Espendiller)</li>
3+
<li>Provide linemarker for route annotations imports (Daniel Espendiller)</li>
4+
<li>Inspection for deprecated "controller" targets on route (Daniel Espendiller)</li>
5+
<li>Support conditional enviroment for yaml file to index resources (Daniel Espendiller)</li>
6+
<li>Add global resolving of resources (Daniel Espendiller)</li>
7+
<li>Add "resources" outside of routing to index (Daniel Espendiller)</li>
8+
<li>Add more (getReference, getClassMetadata, getPartialReference) Doctrine entity class constant completion (Daniel Espendiller)</li>
9+
<li>Prioritize class constant parameter completion for Doctrine repository and form types (Daniel Espendiller)</li>
10+
<li>Try to detect yaml translation files also on language pattern (Daniel Espendiller)</li>
11+
<li>Twig form linemarker should only be triggered on smallest (leaf) elements (Daniel Espendiller)</li>
12+
<li>PhpLineMarkerProvider linemarker should only be triggered on smallest (leaf) elements (Daniel Espendiller)</li>
13+
<li>Constraint message property linemarker should only be triggered on smallest (leaf) elements (Daniel Espendiller)</li>
14+
<li>Remove annotation linemarker as its also catched by resources linemarker now (Daniel Espendiller)</li>
15+
<li>Extend resources / import index with context options (Daniel Espendiller)</li>
16+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1940">#1940</a> add translation support for TranslatableMessage class (Daniel Espendiller)</li>
17+
<li>"+intl-icu" remove suffix from compiled translation domains (Daniel Espendiller)</li>
18+
<li>Prevent empty translation domains (Daniel Espendiller)</li>
19+
<li>Provide "glob" pattern extraction for string to provide a file scanner (Daniel Espendiller)</li>
20+
<li>Support file and directory resolving for resources (Daniel Espendiller)</li>
21+
<li>Fixed bad links to jetbrains plugin marketplace (Adrian Rudnik)</li>
822
</ul>
923
</html>

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

+1-1
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.227</version>
4+
<version>0.23.228</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)