Skip to content

Commit 49012bc

Browse files
committed
build 0.23.223
1 parent 58555a0 commit 49012bc

File tree

4 files changed

+26
-14
lines changed

4 files changed

+26
-14
lines changed

CHANGELOG.md

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

22+
## 0.23.223 / 2022.1.223
23+
* Replaced timed cache for container to use its file modification counter (Daniel Espendiller)
24+
* Smarter detection for compiled translation files (Daniel Espendiller)
25+
* Update PhpStorm library: - https://github.com/King2500/symfony-phpstorm-meta - https://github.com/King2500/doctrine-phpstorm-meta (Daniel Espendiller)
26+
* Change static libraryRoots to dynamic LibraryRootProvider implementations (Thomas Schulz)
27+
* Try to guess the translations file even more (Daniel Espendiller)
28+
* Refactor compiled routing loading; to use internal cache implementation (Daniel Espendiller)
29+
* [#1705](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1705) support constants for route name and path via first level self owning (Daniel Espendiller)
30+
* Replace custom compiled translations caching result with CachedValue (Daniel Espendiller)
31+
* Support download of Symfony CLI for project creation (Daniel Espendiller)
32+
* [#1764](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1764) support translations in php files (Daniel Espendiller)
33+
* [#774](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/774) [#1310](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1310) [#1334](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1334) fix "Symfony" project create feature with using Symfony CLI installer (Daniel Espendiller)
34+
2235
## 0.23.222 / 2022.1.222
2336
* Proxy Twig function parameter completion to PHP completion (Daniel Espendiller)
2437
* Support controller action linemarker for "__invoke" and all others resolving (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.222
8+
pluginVersion = 0.23.223
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: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
<html>
22
<ul>
3-
<li>Proxy Twig function parameter completion to PHP completion (Daniel Espendiller)</li>
4-
<li>Support controller action linemarker for "__invoke" and all others resolving (Daniel Espendiller)</li>
5-
<li>Support navigation for "Symfony 5.3: Configure Multiple Environments in a Single File" @see https://symfony.com/blog/new-in-symfony-5-3-configure-multiple-environments-in-a-single-file (Daniel Espendiller)</li>
6-
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1858">#1858</a> fix external phpindex "Stub ids not found for key in index" by replacing phpclass filter namespacing (Daniel Espendiller)</li>
7-
<li>Provide navigation and completion for Symfony http client options (Daniel Espendiller)</li>
8-
<li>Replace deprecated "com.intellij.util.containers.HashMap" (Daniel Espendiller)</li>
9-
<li>Replace deprecated "Deprecated fields usages" (Daniel Espendiller)</li>
10-
<li>Replace deprecated "com.intellij.util.containers.HashSet" (Daniel Espendiller)</li>
11-
<li>Provide fuzzy similar search for fix missing routes (Daniel Espendiller)</li>
12-
<li>Provide fuzzy similar search for fix missing translation domain (Daniel Espendiller)</li>
13-
<li>Provide fuzzy similar search for fix missing translation keys (Daniel Espendiller)</li>
14-
<li>Sync changelog (Daniel Espendiller)</li>
3+
<li>Replaced timed cache for container to use its file modification counter (Daniel Espendiller)</li>
4+
<li>Smarter detection for compiled translation files (Daniel Espendiller)</li>
5+
<li>Update PhpStorm library: - https://github.com/King2500/symfony-phpstorm-meta - https://github.com/King2500/doctrine-phpstorm-meta (Daniel Espendiller)</li>
6+
<li>Change static libraryRoots to dynamic LibraryRootProvider implementations (Thomas Schulz)</li>
7+
<li>Try to guess the translations file even more (Daniel Espendiller)</li>
8+
<li>Refactor compiled routing loading; to use internal cache implementation (Daniel Espendiller)</li>
9+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1705">#1705</a> support constants for route name and path via first level self owning (Daniel Espendiller)</li>
10+
<li>Replace custom compiled translations caching result with CachedValue (Daniel Espendiller)</li>
11+
<li>Support download of Symfony CLI for project creation (Daniel Espendiller)</li>
12+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1764">#1764</a> support translations in php files (Daniel Espendiller)</li>
13+
<li><a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/774">#774</a> <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1310">#1310</a> <a href="https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1334">#1334</a> fix "Symfony" project create feature with using Symfony CLI installer (Daniel Espendiller)</li>
1514
</ul>
1615
</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.222</version>
4+
<version>0.23.223</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)