Skip to content

Commit 79de701

Browse files
committed
build 0.23.224
1 parent 6c71e59 commit 79de701

File tree

3 files changed

+24
-23
lines changed

3 files changed

+24
-23
lines changed

CHANGELOG.md

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

22+
## 0.23.224 / 2022.1.224
23+
* Prefix missing parameter inspection with "Symfony" (Daniel Espendiller)
24+
* Prevent duplicate complete for already known path / url twig lookup elements (Daniel Espendiller)
25+
* [#1890](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1890) pipe also the fake php file to completion proxying for php (Daniel Espendiller)
26+
* [#1893](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1893) workaround in wrongly implemented attributes handling; catch errors and check for direct attribute value via string (Daniel Espendiller)
27+
* Use central container parameter naming as its now highly optimized (Daniel Espendiller)
28+
2229
## 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)
30+
* Replaced timed cache for container to use its file modification counter (Daniel Espendiller)
31+
* Smarter detection for compiled translation files (Daniel Espendiller)
32+
* Update PhpStorm library: - https://github.com/King2500/symfony-phpstorm-meta - https://github.com/King2500/doctrine-phpstorm-meta (Daniel Espendiller)
33+
* Change static libraryRoots to dynamic LibraryRootProvider implementations (Thomas Schulz)
34+
* Try to guess the translations file even more (Daniel Espendiller)
35+
* Refactor compiled routing loading; to use internal cache implementation (Daniel Espendiller)
36+
* [#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)
37+
* Replace custom compiled translations caching result with CachedValue (Daniel Espendiller)
38+
* Support download of Symfony CLI for project creation (Daniel Espendiller)
39+
* [#1764](https://github.com/Haehnchen/idea-php-symfony2-plugin/issues/1764) support translations in php files (Daniel Espendiller)
40+
* [#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)
3441

3542
## 0.23.222 / 2022.1.222
3643
* Proxy Twig function parameter completion to PHP completion (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.223
8+
pluginVersion = 0.23.224
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: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
<html>
22
<ul>
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>
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>
148
</ul>
159
</html>

0 commit comments

Comments
 (0)